/* ================================================
   OPENCLAW — Futuristic AI SaaS Sales Page
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --oc-bg-primary: #0f1526;
    --oc-bg-secondary: #16203a;
    --oc-bg-card: rgba(28, 36, 72, 0.6);
    --oc-bg-card-hover: rgba(36, 46, 88, 0.8);
    --oc-accent-blue: #4f8ef7;
    --oc-accent-cyan: #22d3ee;
    --oc-accent-purple: #a78bfa;
    --oc-accent-green: #34d399;
    --oc-accent-orange: #fb923c;
    --oc-gradient-primary: linear-gradient(135deg, #4f8ef7, #22d3ee);
    --oc-gradient-hero: linear-gradient(135deg, #fbbf24 0%, #f97316 35%, #ec4899 70%, #a78bfa 100%);
    --oc-gradient-cta: linear-gradient(135deg, #f97316, #ef4444, #dc2626);
    --oc-text-primary: #f1f5f9;
    --oc-text-secondary: #b0bcd4;
    --oc-text-muted: #6b7fa3;
    --oc-border-subtle: rgba(79, 142, 247, 0.1);
    --oc-border-glow: rgba(79, 142, 247, 0.25);
    --oc-glass-bg: rgba(22, 27, 58, 0.55);
    --oc-glass-border: rgba(79, 142, 247, 0.12);
    --oc-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --oc-font-display: 'Space Grotesk', 'Inter', sans-serif;
    --oc-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
    --oc-radius-sm: 8px;
    --oc-radius-md: 12px;
    --oc-radius-lg: 16px;
    --oc-radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ================================================
   ORDER PROGRESS BAR
   ================================================ */
.oc-order-bar {
    width: 100%;
    font-family: var(--oc-font-display);
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 999;
}

.oc-ob-message {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.oc-ob-sep {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

.oc-ob-warning {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}

.oc-ob-congrats {
    font-size: 0.95rem;
    color: #fff;
}

.oc-ob-congrats strong {
    color: #fbbf24;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.oc-ob-steps {
    background: #0d1535;
    border-bottom: 2px solid var(--oc-border-subtle);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.oc-ob-step {
    padding: 11px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--oc-text-muted);
}

.oc-ob-step--done {
    color: var(--oc-accent-green);
    text-align: center;
}

.oc-ob-step-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: var(--oc-accent-green);
    color: #000;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    margin-right: 6px;
}

.oc-ob-step--active {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    border-radius: 50px;
    padding: 11px 36px;
    font-size: 0.85rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(79,70,229,0.45);
    margin: 6px 0;
}

.oc-ob-step--next {
    color: var(--oc-text-muted);
    text-align: center;
}

@media (max-width: 600px) {
    /* Stack all 3 steps vertically */
    .oc-ob-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
    }
    .oc-ob-step--done {
        padding: 10px 20px;
        font-size: 0.75rem;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        white-space: nowrap;
    }
    .oc-ob-step--active {
        border-radius: 0 !important;
        padding: 12px 20px !important;
        font-size: 0.78rem !important;
        margin: 0 !important;
        box-shadow: none !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .oc-ob-step--next {
        padding: 10px 20px;
        font-size: 0.75rem;
        text-align: left;
        white-space: nowrap;
    }
    .oc-ob-step-check { width: 16px; height: 16px; font-size: 0.6rem; margin-right: 6px; }
}

body {
    font-family: var(--oc-font-primary);
    background-color: var(--oc-bg-primary);
    color: var(--oc-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection { background: rgba(79, 142, 247, 0.25); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--oc-bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(79, 142, 247, 0.25); border-radius: 3px; }

/* ================================================
   NAVBAR
   ================================================ */
.oc-navbar {
    background: rgba(11, 14, 26, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--oc-border-subtle);
    padding: 0.75rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.oc-navbar.scrolled {
    background: rgba(11, 14, 26, 0.96);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.oc-logo { height: 40px; width: auto; transition: opacity 0.3s ease; }
.oc-logo:hover { opacity: 0.85; }

.oc-navbar .nav-link {
    color: var(--oc-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.oc-navbar .nav-link:hover { color: var(--oc-text-primary); }

.oc-btn-primary {
    background: var(--oc-gradient-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--oc-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.oc-btn-primary:hover {
    color: #fff;
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.4);
    transform: translateY(-1px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.oc-hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
}

/* Background */
.oc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* top-left: box burgundy/wine glow */
        radial-gradient(ellipse 55% 45% at 0% 0%, rgba(120, 30, 60, 0.38) 0%, transparent 70%),
        /* top-right: deep maroon-purple from box lid */
        radial-gradient(ellipse 45% 40% at 100% 0%, rgba(90, 20, 80, 0.30) 0%, transparent 65%),
        /* bottom-left cyan */
        radial-gradient(ellipse 50% 35% at 0% 100%, rgba(34, 211, 238, 0.18) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 75%),
        /* bottom-right purple */
        radial-gradient(ellipse 50% 35% at 100% 100%, rgba(100, 80, 230, 0.22) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 75%),
        /* deep dark center */
        #07080f;
}

.oc-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(110, 130, 230, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 130, 230, 0.055) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Grid: strong at top, fades toward center, nearly gone at bottom center */
    mask-image:
        radial-gradient(ellipse 120% 55% at 50% 0%, black 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.2) 70%, transparent 100%),
        radial-gradient(ellipse 25% 80% at 0% 40%, rgba(0,0,0,0.5) 0%, transparent 65%),
        radial-gradient(ellipse 25% 80% at 100% 40%, rgba(0,0,0,0.5) 0%, transparent 65%);
    -webkit-mask-image:
        radial-gradient(ellipse 120% 55% at 50% 0%, black 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.2) 70%, transparent 100%),
        radial-gradient(ellipse 25% 80% at 0% 40%, rgba(0,0,0,0.5) 0%, transparent 65%),
        radial-gradient(ellipse 25% 80% at 100% 40%, rgba(0,0,0,0.5) 0%, transparent 65%);
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

.oc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.oc-glow-1 {
    /* very faint top-center */
    width: 600px; height: 300px;
    background: radial-gradient(circle, rgba(80, 100, 200, 0.06), transparent 70%);
    top: 0%; left: 50%; transform: translateX(-50%);
    animation: oc-pulse1 8s ease-in-out infinite;
}
.oc-glow-2 {
    /* bottom-left cyan */
    width: 700px; height: 450px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.32) 0%, rgba(59, 130, 246, 0.15) 45%, transparent 70%);
    bottom: -15%; left: -10%;
    animation: oc-pulse2 11s ease-in-out infinite 2s;
}
.oc-glow-3 {
    /* bottom-right blue/purple */
    width: 700px; height: 450px;
    background: radial-gradient(circle, rgba(100, 80, 230, 0.30) 0%, rgba(139, 92, 246, 0.14) 45%, transparent 70%);
    bottom: -15%; right: -10%;
    animation: oc-pulse2 9s ease-in-out infinite 4s;
}
.oc-glow-4 {
    /* top-left purple accent */
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(110, 60, 180, 0.14), transparent 70%);
    top: -5%; left: -5%;
    animation: oc-pulse2 12s ease-in-out infinite 1s;
}

@keyframes oc-pulse1 {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
@keyframes oc-pulse2 {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ================================================
   FLOATING AI ELEMENTS
   ================================================ */
.oc-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.oc-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(17, 21, 38, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(79, 142, 247, 0.15);
    border-radius: var(--oc-radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--oc-text-secondary);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 1px rgba(79, 142, 247, 0.2) inset;
    animation: oc-float 6s ease-in-out infinite;
}

.oc-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 6px;
    background: rgba(79, 142, 247, 0.12);
    color: var(--oc-accent-blue);
    flex-shrink: 0;
}

.oc-float-status {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(107, 127, 163, 0.15);
    color: var(--oc-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.oc-float-status.active {
    background: rgba(52, 211, 153, 0.12);
    color: var(--oc-accent-green);
}

.oc-float-badge {
    font-size: 0.7rem; padding: 2px 8px; border-radius: 20px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--oc-accent-green);
    font-weight: 700;
}

.oc-float-1 { top: 18%; left: 3%; animation-delay: 0s; animation-duration: 7s; }
.oc-float-2 { top: 30%; right: 2%; animation-delay: 1s; animation-duration: 8s; }
.oc-float-3 { top: 55%; left: 1%; animation-delay: 2s; animation-duration: 6s; }
.oc-float-4 { top: 12%; right: 5%; animation-delay: 0.5s; animation-duration: 7.5s; }
.oc-float-5 { bottom: 25%; right: 3%; animation-delay: 1.5s; animation-duration: 8.5s; }
.oc-float-6 { bottom: 15%; left: 4%; animation-delay: 3s; animation-duration: 7s; }

.oc-float-analytics {
    position: absolute;
    padding: 14px 18px;
    background: rgba(17, 21, 38, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(79, 142, 247, 0.15);
    border-radius: var(--oc-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    animation: oc-float 9s ease-in-out infinite 2s;
}

.oc-float-7 { top: 42%; right: 1%; }
.oc-float-8 { bottom: 32%; left: 2%; }

.oc-analytics-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.oc-analytics-header span:first-child { font-size: 0.68rem; color: var(--oc-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.oc-analytics-badge { font-size: 0.58rem; padding: 2px 6px; border-radius: 10px; background: rgba(52, 211, 153, 0.12); color: var(--oc-accent-green); font-weight: 600; }
.oc-analytics-value { font-family: var(--oc-font-display); font-size: 1.4rem; font-weight: 700; color: var(--oc-text-primary); line-height: 1.2; }
.oc-analytics-bar { width: 100%; height: 3px; background: rgba(79, 142, 247, 0.1); border-radius: 2px; margin: 8px 0 6px; overflow: hidden; }
.oc-analytics-fill { width: 72%; height: 100%; background: var(--oc-gradient-primary); border-radius: 2px; animation: oc-bar-fill 3s ease-out forwards; }
@keyframes oc-bar-fill { from { width: 0; } to { width: 72%; } }
.oc-analytics-change { font-size: 0.65rem; color: var(--oc-accent-green); font-weight: 500; }

.oc-float-dashboard {
    position: absolute;
    padding: 12px 16px;
    background: rgba(17, 21, 38, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(79, 142, 247, 0.15);
    border-radius: var(--oc-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    animation: oc-float 8s ease-in-out infinite 1s;
}

.oc-dash-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.oc-dash-row + .oc-dash-row { border-top: 1px solid rgba(79, 142, 247, 0.07); }
.oc-dash-label { font-size: 0.675rem; color: var(--oc-text-muted); font-weight: 500; }
.oc-dash-value { font-size: 0.75rem; color: var(--oc-text-primary); font-weight: 700; font-family: var(--oc-font-display); }
.oc-dash-active { color: var(--oc-accent-green); }

@keyframes oc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- Colourful background floating icons ---- */
.oc-bg-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: oc-float 7s ease-in-out infinite;
    opacity: 0.28;
    pointer-events: none;
}

.oc-bg-icon svg { display: block; }

/* Colour variants */
.oc-bi-purple { background: rgba(139, 92, 246, 0.18); border-color: rgba(139, 92, 246, 0.35); color: #a78bfa; box-shadow: 0 0 18px rgba(139,92,246,0.2); }
.oc-bi-cyan   { background: rgba(34, 211, 238, 0.15); border-color: rgba(34, 211, 238, 0.35); color: #22d3ee; box-shadow: 0 0 18px rgba(34,211,238,0.18); }
.oc-bi-orange { background: rgba(251, 146, 60, 0.15); border-color: rgba(251, 146, 60, 0.35); color: #fb923c; box-shadow: 0 0 18px rgba(251,146,60,0.18); }
.oc-bi-green  { background: rgba(52, 211, 153, 0.15); border-color: rgba(52, 211, 153, 0.35); color: #34d399; box-shadow: 0 0 18px rgba(52,211,153,0.18); }
.oc-bi-pink   { background: rgba(236, 72, 153, 0.15); border-color: rgba(236, 72, 153, 0.35); color: #ec4899; box-shadow: 0 0 18px rgba(236,72,153,0.18); }
.oc-bi-blue   { background: rgba(79, 142, 247, 0.15); border-color: rgba(79, 142, 247, 0.35); color: #4f8ef7; box-shadow: 0 0 18px rgba(79,142,247,0.18); }

/* Positions — spread across all empty background areas */
/* Left column — max 8% from left edge */
.oc-bi-1  { width: 44px; height: 44px; top: 10%;    left: 3%;  animation-delay: 0s;    animation-duration: 8s; }
.oc-bi-3  { width: 44px; height: 44px; top: 32%;    left: 6%;  animation-delay: 0.6s;  animation-duration: 9s; }
.oc-bi-5  { width: 40px; height: 40px; top: 54%;    left: 2%;  animation-delay: 1.5s;  animation-duration: 8.5s; }
.oc-bi-7  { width: 40px; height: 40px; bottom: 22%; left: 5%;  animation-delay: 3s;    animation-duration: 8s; }
.oc-bi-9  { width: 36px; height: 36px; bottom: 6%;  left: 7%;  animation-delay: 1s;    animation-duration: 9s; }
/* Right column — max 8% from right edge */
.oc-bi-2  { width: 40px; height: 40px; top: 8%;     right: 2%; animation-delay: 1.2s;  animation-duration: 7s; }
.oc-bi-4  { width: 44px; height: 44px; top: 28%;    right: 5%; animation-delay: 2s;    animation-duration: 7.5s; }
.oc-bi-6  { width: 44px; height: 44px; top: 52%;    right: 3%; animation-delay: 0.8s;  animation-duration: 6.5s; }
.oc-bi-8  { width: 40px; height: 40px; bottom: 20%; right: 6%; animation-delay: 2.5s;  animation-duration: 7s; }
.oc-bi-10 { width: 36px; height: 36px; bottom: 5%;  right: 4%; animation-delay: 1.8s;  animation-duration: 7.5s; }

/* ================================================
   HERO CONTENT
   ================================================ */
.oc-hero .container { z-index: 2; position: relative; }

.oc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px 10px 20px;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.35);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f472b6;
    margin-bottom: 1.75rem;
}

.oc-badge-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--oc-accent-green);
    box-shadow: 0 0 10px var(--oc-accent-green);
    animation: oc-badge-blink 2s ease-in-out infinite;
}

@keyframes oc-badge-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--oc-accent-green); }
    50% { opacity: 0.4; box-shadow: 0 0 4px var(--oc-accent-green); }
}

.oc-hero-headline {
    font-family: var(--oc-font-display);
    font-size: clamp(3rem, 6.75vw, 5.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--oc-text-primary);
    margin-bottom: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.oc-gradient-text {
    background: var(--oc-gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--oc-text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.oc-hero-subheadline strong { color: var(--oc-text-primary); font-weight: 700; }

/* ================================================
   FEATURE CAPSULES
   ================================================ */
.oc-capsules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.25rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.oc-capsule {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(22, 27, 58, 0.7);
    border: 1px solid rgba(79, 142, 247, 0.14);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--oc-text-secondary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.oc-capsule:hover {
    border-color: rgba(79, 142, 247, 0.35);
    color: var(--oc-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 142, 247, 0.1);
}

.oc-capsule-accent {
    background: rgba(79, 142, 247, 0.08);
    border-color: rgba(79, 142, 247, 0.25);
    color: var(--oc-accent-cyan);
}

.oc-capsule-icon {
    display: flex;
    align-items: center;
    color: var(--oc-accent-blue);
    flex-shrink: 0;
}

.oc-capsule-accent .oc-capsule-icon { color: var(--oc-accent-cyan); }

/* ================================================
   STATS BAR
   ================================================ */
.oc-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(17, 21, 38, 0.6);
    border: 1px solid rgba(79, 142, 247, 0.1);
    border-radius: var(--oc-radius-lg);
    padding: 18px 32px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.oc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 16px;
}

.oc-stat-num {
    font-family: var(--oc-font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--oc-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.oc-stat-label {
    font-size: 0.7rem;
    color: var(--oc-text-muted);
    font-weight: 500;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.oc-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(79, 142, 247, 0.1);
    flex-shrink: 0;
}

/* ================================================
   VIDEO — AI FUTURISTIC BORDER
   ================================================ */
.oc-video-wrapper {
    position: relative;
    max-width: 840px;
    margin: 0 auto 2.5rem;
}

.oc-video-glow {
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: var(--oc-gradient-primary);
    opacity: 0.15;
    filter: blur(28px);
    z-index: 0;
    animation: oc-vsl-glow 4s ease-in-out infinite;
}

@keyframes oc-vsl-glow {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.25; }
}

/* VSL Frame */
.oc-vsl-frame {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(79, 142, 247, 0.5) 0%,
        rgba(167, 139, 250, 0.3) 30%,
        rgba(34, 211, 238, 0.4) 60%,
        rgba(79, 142, 247, 0.5) 100%);
    background-size: 300% 300%;
    animation: oc-border-flow 4s linear infinite;
    box-shadow:
        0 0 0 1px rgba(79, 142, 247, 0.1),
        0 0 40px rgba(79, 142, 247, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes oc-border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Corner brackets */
.oc-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.oc-corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--oc-accent-cyan); border-left: 2px solid var(--oc-accent-cyan); border-radius: 22px 0 0 0; }
.oc-corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--oc-accent-cyan); border-right: 2px solid var(--oc-accent-cyan); border-radius: 0 22px 0 0; }
.oc-corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--oc-accent-cyan); border-left: 2px solid var(--oc-accent-cyan); border-radius: 0 0 0 22px; }
.oc-corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--oc-accent-cyan); border-right: 2px solid var(--oc-accent-cyan); border-radius: 0 0 22px 0; }

/* HUD bar */
.oc-vsl-hud {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(11, 14, 26, 0.9);
    border-radius: 20px 20px 0 0;
}

.oc-vsl-hud-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--oc-accent-green);
    box-shadow: 0 0 8px var(--oc-accent-green);
    animation: oc-badge-blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.oc-vsl-hud-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--oc-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.oc-vsl-hud-tag {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(79, 142, 247, 0.12);
    border: 1px solid rgba(79, 142, 247, 0.2);
    color: var(--oc-accent-blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.oc-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    background: #000;
}

.oc-video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ================================================
   CTA SECTION
   ================================================ */
.oc-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* CTA heading block */
.oc-cta-eyebrow {
    font-family: var(--oc-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--oc-text-muted);
    text-transform: uppercase;
    margin: 0;
}

.oc-cta-headline {
    font-family: var(--oc-font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--oc-text-primary);
    line-height: 1.15;
    margin: 0;
}

.oc-cta-sub {
    font-family: var(--oc-font-display);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--oc-text-secondary);
    text-transform: uppercase;
    margin: 0;
}

/* Urgency bar */
.oc-urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fbbf24;
}

.oc-urgency-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fb923c;
    box-shadow: 0 0 8px #fb923c;
    animation: oc-badge-blink 1s ease-in-out infinite;
}

.oc-urgency-timer {
    font-family: var(--oc-font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: #f97316;
    padding: 2px 10px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    letter-spacing: 0.05em;
}

/* CTA Button */
.oc-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    background: var(--oc-gradient-cta);
    color: #fff;
    font-family: var(--oc-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    border-radius: var(--oc-radius-md);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    box-shadow:
        0 0 40px rgba(239, 68, 68, 0.3),
        0 0 80px rgba(239, 68, 68, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

.oc-btn-hero:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 60px rgba(239, 68, 68, 0.45),
        0 0 100px rgba(239, 68, 68, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.4);
}

.oc-btn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.6s ease;
}

.oc-btn-hero:hover::before { left: 100%; }

.oc-btn-hero svg { flex-shrink: 0; transition: transform 0.3s ease; }
.oc-btn-hero:hover svg:last-child { transform: translateX(4px); }

/* Social Proof */
.oc-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oc-avatars {
    display: flex;
    margin-right: 4px;
}

.oc-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--oc-bg-primary);
    object-fit: cover;
    margin-left: -8px;
    display: block;
}

.oc-avatar:first-child { margin-left: 0; }

.oc-social-text {
    font-size: 0.8rem;
    color: var(--oc-text-muted);
}

.oc-social-text strong { color: var(--oc-text-secondary); }

/* Trust Row */
.oc-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.oc-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(17, 21, 38, 0.5);
    border: 1px solid rgba(79, 142, 247, 0.1);
    border-radius: var(--oc-radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.oc-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.08);
    color: var(--oc-accent-green);
    flex-shrink: 0;
}

.oc-trust-text { display: flex; flex-direction: column; }
.oc-trust-title { font-size: 0.78rem; font-weight: 600; color: var(--oc-text-primary); }
.oc-trust-sub { font-size: 0.68rem; color: var(--oc-text-muted); }

/* ---- CTA on light background ---- */
.oc-hero-cta--light .oc-urgency-bar {
    background: rgba(251, 146, 60, 0.10);
    border-color: rgba(251, 146, 60, 0.35);
    color: #c2410c;
}
.oc-hero-cta--light .oc-urgency-timer {
    color: #ea580c;
    background: rgba(249, 115, 22, 0.12);
}
.oc-hero-cta--light .oc-social-text {
    color: #475569;
}
.oc-hero-cta--light .oc-social-text strong {
    color: #1e293b;
}
.oc-hero-cta--light .oc-avatar {
    border-color: #f1f5f9;
}
.oc-hero-cta--light .oc-trust-badge {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.oc-hero-cta--light .oc-trust-title {
    color: #1e293b;
}
.oc-hero-cta--light .oc-trust-sub {
    color: #64748b;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-ready [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1199px) {
    .oc-float-card, .oc-float-analytics, .oc-float-dashboard { display: none; }
}

@media (max-width: 991px) {
    .oc-hero { padding: 115px 0 70px; }

    .oc-navbar .navbar-collapse {
        background: rgba(11, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--oc-radius-md);
        padding: 1rem;
        margin-top: 0.75rem;
        border: 1px solid var(--oc-border-subtle);
    }

    .oc-stats-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px 20px;
    }

    .oc-stat-divider { display: none; }
    .oc-stat-item { flex: 0 0 calc(50% - 12px); padding: 0 8px; }
}

@media (max-width: 767px) {
    .oc-hero { padding: 105px 0 55px; }
    .oc-hero-headline { font-size: clamp(2.4rem, 9vw, 3.3rem); }
    .oc-hero-subheadline { font-size: 1rem; }
    .oc-btn-hero { padding: 16px 24px; font-size: 1rem; }
    .oc-capsule { font-size: 0.75rem; padding: 7px 13px; }
    .oc-trust-row { gap: 8px; }
    .oc-trust-badge { padding: 8px 14px; }
}

@media (max-width: 480px) {
    .oc-hero-headline { font-size: 2.25rem; }
    .oc-btn-hero { font-size: 0.95rem; padding: 15px 20px; gap: 8px; }
    .oc-stat-item { flex: 0 0 calc(50% - 6px); }
    .oc-trust-row { flex-direction: column; }
}

/* ================================================
   SECTION 2 — PROOF / AI IN ACTION — LIGHT THEME
   ================================================ */

/* Light theme CSS variables (scoped to section) */
.oc-proof-section {
    --lt-bg: #eef2ff;
    --lt-bg2: #e8eeff;
    --lt-surface: #ffffff;
    --lt-surface2: #f5f7ff;
    --lt-border: rgba(79, 142, 247, 0.14);
    --lt-border-strong: rgba(79, 142, 247, 0.28);
    --lt-text-heading: #0f172a;
    --lt-text-body: #334155;
    --lt-text-muted: #64748b;
    --lt-accent: #3b82f6;
    --lt-accent2: #6366f1;
    --lt-green: #059669;
    --lt-shadow: 0 4px 24px rgba(59, 130, 246, 0.08), 0 1px 4px rgba(0,0,0,0.06);
    --lt-shadow-hover: 0 16px 48px rgba(59, 130, 246, 0.16), 0 4px 12px rgba(0,0,0,0.08);

    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
    background: var(--lt-bg);
}

/* Dot-grid background pattern */
.oc-proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.22) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* Light radial glows */
.oc-proof-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 35% at 15% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 85% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 25% at 50% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Floating UI decorations */
.oc-proof-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Floating Icon Cards */
.oc-pf-icon-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid var(--lt-border);
    border-radius: var(--oc-radius-md);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    white-space: nowrap;
    animation: oc-float 8s ease-in-out infinite;
}

.oc-pf-icon-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-pf-icon-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.oc-pf-icon-card-title {
    font-family: var(--oc-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lt-text-heading);
    line-height: 1.2;
}

.oc-pf-icon-card-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--lt-text-muted);
}

.oc-pf-icon-card--left  { top: 28%; left: 2%; animation-delay: 0s; animation-duration: 8s; }
.oc-pf-icon-card--right { top: 22%; right: 2%; animation-delay: 1.5s; animation-duration: 9s; }
.oc-pf-icon-card--bottom { bottom: 28%; left: 2%; animation-delay: 3s; animation-duration: 7.5s; }

/* Quote Carousel */
.oc-quote-carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.oc-quote-track {
    display: flex;
    width: 300%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.oc-quote-slide {
    width: 33.3333%;
    flex-shrink: 0;
    padding: 52px 0;
}
.oc-quote-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
}
.oc-qd {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.oc-qd--active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Quote Banner — Quote Carousel Banner */
.oc-quote-banner {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #4f46e5 100%);
    padding: 0;
    margin-bottom: 80px;
    overflow: hidden;
}

.oc-quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.oc-quote-banner::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.oc-quote-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.oc-quote-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.oc-jensen-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

.oc-jensen-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.oc-jensen-name {
    font-family: var(--oc-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.oc-jensen-title {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    white-space: nowrap;
}

.oc-quote-content {
    flex: 1;
    position: relative;
}

.oc-quote-mark {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.4;
    color: rgba(255,255,255,0.15);
    position: absolute;
    top: 0;
    left: -8px;
    pointer-events: none;
    user-select: none;
}

.oc-quote-text {
    font-family: var(--oc-font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    font-style: italic;
    margin: 0;
    padding-left: 28px;
    border: none;
}

/* Section container needs z-index above bg patterns */
.oc-proof-section > .container {
    position: relative;
    z-index: 2;
}

/* Section Eyebrow / Headline */
.oc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.oc-eyebrow-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: oc-badge-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

.oc-section-headline {
    font-family: var(--oc-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--lt-text-heading);
    margin-bottom: 1rem;
}

.oc-section-subtext {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--lt-text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

.oc-section-subtext strong { color: var(--lt-text-heading); }

/* Steps Grid */
.oc-steps-row { margin-top: 56px; }

.oc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Per-step accent colours */
.oc-steps-grid .oc-step-card:nth-child(1) { --sc: #8b5cf6; --sc-rgb: 139,92,246; }
.oc-steps-grid .oc-step-card:nth-child(2) { --sc: #3b82f6; --sc-rgb: 59,130,246; }
.oc-steps-grid .oc-step-card:nth-child(3) { --sc: #22d3ee; --sc-rgb: 34,211,238; }
.oc-steps-grid .oc-step-card:nth-child(4) { --sc: #ec4899; --sc-rgb: 236,72,153; }
.oc-steps-grid .oc-step-card:nth-child(5) { --sc: #10b981; --sc-rgb: 16,185,129; }
.oc-steps-grid .oc-step-card:nth-child(6) { --sc: #f97316; --sc-rgb: 249,115,22; }

.oc-step-card {
    position: relative;
    padding: 26px 22px 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--oc-radius-lg);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Coloured top bar */
.oc-step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sc, #4f8ef7);
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

/* Watermark removed */
.oc-step-card::after { content: none; }

/* Large ghost icon — top-right corner of each card */
.oc-step-bg-icon {
    position: absolute;
    top: -8px; right: -8px;
    width: 88px; height: 88px;
    color: var(--sc, #4f8ef7);
    opacity: 0.09;
    pointer-events: none;
    user-select: none;
}
.oc-step-bg-icon svg { width: 100%; height: 100%; }

.oc-step-card:hover {
    border-color: rgba(var(--sc-rgb, 79,142,247), 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(var(--sc-rgb, 79,142,247), 0.12);
}

.oc-step-card:hover::before { opacity: 1; }
.oc-step-card:hover::after  { opacity: 0.10; }

/* Accent card — step 07 */
.oc-step-card--accent {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border-color: rgba(251,191,36,0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(251,191,36,0.1);
    --sc: #fbbf24; --sc-rgb: 251,191,36;
}

.oc-step-card--accent::before { opacity: 1; height: 2px; }
.oc-step-card--accent .oc-step-title { font-size: 1.15rem; color: var(--lt-text-heading); }
.oc-step-card--accent .oc-step-icon {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
    border-color: rgba(251,191,36,0.25);
    flex-shrink: 0;
    width: 56px; height: 56px;
}

/* Step number */
.oc-step-num {
    font-family: var(--oc-font-display);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--sc, #4f8ef7);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    opacity: 0.7;
}

.oc-step-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(var(--sc-rgb, 79,142,247), 0.12);
    color: var(--sc, #4f8ef7);
    border: 1px solid rgba(var(--sc-rgb, 79,142,247), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(var(--sc-rgb, 79,142,247), 0.12);
}

.oc-step-card:hover .oc-step-icon {
    box-shadow: 0 0 22px rgba(var(--sc-rgb, 79,142,247), 0.28);
    background: rgba(var(--sc-rgb, 79,142,247), 0.18);
}

.oc-step-title {
    font-family: var(--oc-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lt-text-heading);
    margin-bottom: 12px;
    line-height: 1.35;
}

.oc-step-desc {
    font-size: 0.82rem;
    color: var(--oc-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Status pill */
.oc-step-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.25);
    font-size: 0.65rem;
    font-weight: 700;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.oc-step-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
}

.oc-step-dot.active {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: oc-badge-blink 2s ease-in-out infinite;
}

/* Accent card layout overrides */
.oc-step-card--accent .oc-step-num { margin-bottom: 0; }
.oc-step-card--accent .oc-step-content { flex: 1; }

/* Proof Closer */
.oc-proof-closer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #4f46e5 100%);
    border-radius: var(--oc-radius-xl);
    box-shadow: 0 16px 48px rgba(29, 78, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.oc-proof-closer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.oc-proof-closer-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.oc-proof-closer-text {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
    text-align: center;
    position: relative;
}

.oc-proof-closer-text strong { color: #ffffff; }

/* Responsive — Section 2 */
@media (max-width: 1199px) {
    .oc-pf-icon-card { display: none; }
}

@media (max-width: 991px) {
    .oc-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .oc-step-card--accent { grid-column: 1 / -1; }
    .oc-quote-inner { gap: 32px; }
}

@media (max-width: 767px) {
    .oc-proof-section { padding-bottom: 70px; }
    .oc-quote-banner { padding: 0; margin-bottom: 60px; }
    .oc-quote-slide  { padding: 32px 0 8px; }
    .oc-quote-inner { flex-direction: column; gap: 24px; text-align: center; }
    .oc-quote-mark { display: none; }
    .oc-quote-text { padding-left: 0; font-size: 1.1rem; }
    .oc-jensen-img { width: 84px; height: 84px; }
    .oc-steps-grid { grid-template-columns: 1fr; }
    .oc-step-card--accent { flex-direction: column; }
    .oc-proof-closer { padding: 32px 24px; }
    .oc-steps-row { margin-top: 40px; }
}


/* ================================================
   SECTION 3 — PACINO
   ================================================ */
.oc-pacino-section {
    position: relative;
    padding: 110px 0 100px;
    background: #0a1020;
    overflow: hidden;
}

.oc-pacino-section > .container { position: relative; z-index: 2; }

/* Background layer */
.oc-pacino-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.oc-pacino-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(251, 146, 60, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 146, 60, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 72%);
}

.oc-pacino-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.oc-pacino-glow-1 {
    width: 700px; height: 450px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.12), transparent 70%);
    top: -8%; left: 50%; transform: translateX(-50%);
    animation: oc-pulse1 9s ease-in-out infinite;
}
.oc-pacino-glow-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.09), transparent 70%);
    bottom: 5%; left: -5%;
    animation: oc-pulse2 13s ease-in-out infinite 2s;
}
.oc-pacino-glow-3 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.07), transparent 70%);
    top: 30%; right: -4%;
    animation: oc-pulse2 10s ease-in-out infinite 4s;
}

/* Eyebrow — amber variant */
.oc-eyebrow-amber {
    background: rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.22);
    color: #fb923c;
}
.oc-eyebrow-pulse-amber {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 8px #f97316;
    animation: oc-badge-blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* Headline */
.oc-pacino-headline {
    font-family: var(--oc-font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--oc-text-primary);
    margin-bottom: 1.5rem;
}

.oc-pacino-name {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 55%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.oc-pacino-actor {
    display: block;
    font-size: 0.46em;
    font-weight: 500;
    color: var(--oc-text-muted);
    letter-spacing: 0.01em;
    margin-top: 0.35rem;
    -webkit-text-fill-color: var(--oc-text-muted);
}

/* Subtext */
.oc-pacino-subtext {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--oc-text-secondary);
    line-height: 1.75;
    margin-bottom: 3rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.oc-pacino-collage { text-align: center; }
.oc-collage-img {
    width: 100%;
    max-width: 620px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.oc-pacino-headline--sm {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.25;
}

.oc-pacino-subtext--bright {
    color: var(--oc-text-primary);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.oc-pacino-kicker {
    display: block;
    margin-top: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
}

/* VSL wrapper — amber glow variant */
.oc-pacino-vsl .oc-video-glow--amber {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse 80% 60% at 50% 50%,
        rgba(251, 146, 60, 0.1) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 28px;
}

.oc-vsl-frame--amber {
    border: 1px solid rgba(251, 146, 60, 0.18);
    background: linear-gradient(
        135deg,
        rgba(251, 146, 60, 0.06) 0%,
        rgba(17, 21, 38, 0.9) 50%,
        rgba(167, 139, 250, 0.04) 100%
    );
    background-size: 300% 300%;
    animation: oc-border-flow 6s linear infinite;
    box-shadow:
        0 0 0 1px rgba(251, 146, 60, 0.08),
        0 0 50px rgba(251, 146, 60, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.5);
}

/* Amber HUD bar */
.oc-vsl-hud--amber { background: rgba(11, 14, 26, 0.95); }
.oc-vsl-hud-dot--amber {
    background: #f97316;
    box-shadow: 0 0 8px #f97316;
}

/* Responsive */
@media (max-width: 767px) {
    .oc-pacino-section { padding: 80px 0 70px; }
    .oc-pacino-headline { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .oc-pacino-actor { font-size: 0.5em; }
}

/* ================================================
   SECTION 3 PACINO — Layout & Float Updates
   ================================================ */

/* Left-right row */
.oc-pacino-row { min-height: 480px; }
@media (max-width: 767px) {
    .oc-pacino-row { min-height: 0 !important; gap: 20px !important; --bs-gutter-y: 0; }
    .oc-pacino-subtext { margin-bottom: 0 !important; }
}
.oc-pacino-copy { padding-right: 1rem; }

/* Reset text-align to left for copy column */
.oc-pacino-copy .oc-section-eyebrow { display: inline-flex; }
.oc-pacino-copy .oc-pacino-subtext {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* Floating cards container */
.oc-pacino-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Reuse .oc-pf-icon-card base (already defined in section 2) but override for dark bg */
.oc-pacino-floats .oc-pf-icon-card {
    background: rgba(17, 21, 38, 0.82);
    border-color: rgba(79, 142, 247, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.oc-pacino-floats .oc-pf-icon-card-title { color: var(--oc-text-primary); }
.oc-pacino-floats .oc-pf-icon-card-sub   { color: var(--oc-text-muted); }

/* Positions */
.oc-pac-float--tl { top: 12%;  left: 1.5%; animation-delay: 0s;   animation-duration: 8s; }
.oc-pac-float--tr { top: 8%;   right: 1.5%; animation-delay: 2s;  animation-duration: 9s; }
.oc-pac-float--br { bottom: 14%; right: 1.5%; animation-delay: 1s; animation-duration: 7.5s; }

@media (max-width: 1199px) {
    .oc-pac-float--tl,
    .oc-pac-float--tr,
    .oc-pac-float--br { display: none; }
}

@media (max-width: 991px) {
    .oc-pacino-copy { padding-right: 0; text-align: center; }
    .oc-pacino-copy .oc-section-eyebrow { margin-left: auto; margin-right: auto; }
    .oc-pacino-copy .oc-pacino-subtext { margin-left: auto; margin-right: auto; max-width: 580px; }
    .oc-pacino-row { gap: 2rem !important; }
}

/* ================================================
   SCATTERED BACKGROUND ICONS (all sections)
   ================================================ */
.oc-bg-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.oc-bgi {
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    opacity: 0.07;
    color: #ffffff;
    animation: oc-float 10s ease-in-out infinite;
}

/* On light sections, icons use colourful ink */
.oc-proof-section .oc-bgi { opacity: 0.10; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(1) { color: #8b5cf6; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(2) { color: #3b82f6; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(3) { color: #22d3ee; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(4) { color: #ec4899; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(5) { color: #f97316; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(6) { color: #10b981; }
.oc-proof-section .oc-bg-icons .oc-bgi:nth-child(7) { color: #fbbf24; }

/* Stagger float animation so icons don't all move together */
.oc-bgi:nth-child(1) { animation-duration: 9s;  animation-delay: 0s; }
.oc-bgi:nth-child(2) { animation-duration: 11s; animation-delay: 1.5s; }
.oc-bgi:nth-child(3) { animation-duration: 8s;  animation-delay: 3s; }
.oc-bgi:nth-child(4) { animation-duration: 12s; animation-delay: 0.8s; }
.oc-bgi:nth-child(5) { animation-duration: 10s; animation-delay: 2.2s; }
.oc-bgi:nth-child(6) { animation-duration: 9.5s;animation-delay: 4s; }
.oc-bgi:nth-child(7) { animation-duration: 13s; animation-delay: 1s; }

.oc-bgi svg { width: 100%; height: 100%; display: block; }

/* Banner icons — white on dark blue */
.oc-bg-icons--banner { z-index: 0; }
.oc-bg-icons--banner .oc-bgi { color: #ffffff; opacity: 0.1; }

/* ==============================================
   SECTION 4: 10 BUSINESS IDEAS
   ============================================== */

/* Section wrapper */
.oc-ideas-section {
    position: relative;
    padding: 120px 0 100px;
    background: #f0f4ff;
    overflow: hidden;
}

/* Section header */
.oc-ideas-header {
    margin-bottom: 80px;
}
.oc-ideas-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin: 18px 0 20px;
    letter-spacing: -0.02em;
}
.oc-ideas-hl {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 55%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-ideas-subhead {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
}

/* Ideas grid */
.oc-ideas-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Individual idea card */
.oc-idea-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.07);
    background: #ffffff;
    color: #0f172a;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.oc-idea-card:hover {
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.oc-idea-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Accent left border per card */
.oc-idea-card::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    background: var(--idea-clr, #6366f1);
    border-radius: 0 2px 2px 0;
    opacity: 0.7;
}
.oc-idea-card--flip::after {
    left: auto;
    right: 0;
    border-radius: 2px 0 0 2px;
}

/* Copy column */
.oc-idea-copy-col {
    padding: 48px 40px 48px 48px;
}
.oc-idea-card--flip .oc-idea-copy-col {
    padding: 48px 48px 48px 40px;
}
.oc-idea-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--idea-clr, #6366f1);
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 18px;
}
/* ── 3-step cards ── */
.oc-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.oc-steps-cta {
    margin-top: 64px;
    background: linear-gradient(160deg, #0a0f1e 0%, #0d1535 50%, #0a0f1e 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.oc-step-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f472b6;
    margin-bottom: 10px;
}

.oc-step-img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    padding: 24px;
}

.oc-step-list {
    list-style: disc;
    padding-left: 20px;
    margin: 12px 0 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
}

.oc-step-list li {
    margin-bottom: 10px;
}

.oc-step-list strong {
    color: #f472b6;
}

.oc-idea-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.oc-idea-desc {
    font-size: 0.95rem;
    line-height: 1.72;
    color: #475569;
    margin: 0 0 24px;
}
.oc-idea-why {
    border-left: 2px solid var(--idea-clr, #6366f1);
    padding-left: 16px;
}
.oc-idea-why-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--idea-clr, #6366f1);
    margin-bottom: 6px;
}
.oc-idea-why p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Dashboard column */
.oc-idea-dash-col {
    padding: 32px;
    border-left: 1px solid rgba(0,0,0,0.06);
}
.oc-idea-card--flip .oc-idea-dash-col {
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0.06);
}
.oc-idea-dash {
    position: relative;
}

/* ---- Shared Dashboard Window Shell ---- */
.oc-dash-window {
    background: #080f24;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.oc-dash-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.oc-dt-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.oc-dt-dot--r { background: #ef4444; }
.oc-dt-dot--y { background: #f59e0b; }
.oc-dt-dot--g { background: #22c55e; }
.oc-dt-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-left: 6px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.oc-dash-body {
    padding: 20px;
    min-height: 220px;
}
.oc-dash-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.025);
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.oc-df-stat {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}
.oc-df-stat strong {
    color: rgba(255,255,255,0.8);
}
.oc-df-badge {
    margin-left: auto;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--idea-clr, #6366f1);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3px 10px;
}

/* ==============================================
   DASHBOARD 1: KANBAN
   ============================================== */
.oc-kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
}
.oc-kanban-col-hd {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.oc-kc-badge {
    font-size: 0.6rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 1px 6px;
}
.oc-kc-badge--act { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.oc-kc-badge--done { background: rgba(34,197,94,0.15); color: #86efac; }
.oc-kanban-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}
.oc-kanban-card.oc-kc--active {
    border-color: rgba(99,102,241,0.25);
    background: rgba(99,102,241,0.08);
}
.oc-kanban-card.oc-kc--done {
    opacity: 0.55;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.2);
}
.oc-kc-price {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--idea-clr, #6366f1);
    text-decoration: none;
    flex-shrink: 0;
}
.oc-kc--done .oc-kc-price { text-decoration: line-through; }

/* ==============================================
   DASHBOARD 2: FBA
   ============================================== */
/* ── FBA Arbitrage Flip Dashboard ─────────────────────────── */
.oc-fba-board { padding: 14px 16px; }

/* Side-by-side flip row */
.oc-fba-flip-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 12px;
}
.oc-fba-side {
    flex: 1;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.oc-fba-side--buy  { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); }
.oc-fba-side--sell { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); }
.oc-fba-side-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.oc-fba-badge--walmart { background: rgba(59,130,246,0.15); color: #60a5fa; }
.oc-fba-badge--amazon  { background: rgba(249,115,22,0.15); color: #fb923c; }
.oc-fba-side-img {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    color: rgba(255,255,255,0.3);
}
.oc-fba-side-img svg { width: 30px; height: 30px; }
.oc-fba-side-name {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}
.oc-fba-side-tag {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
}
.oc-fba-tag--clearance { background: #fef3c7; color: #92400e; }
.oc-fba-tag--fba       { background: #dcfce7; color: #166534; }
.oc-fba-side-was {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}
.oc-fba-side-stars {
    font-size: 0.6rem;
    color: #f59e0b;
}
.oc-fba-side-stars span { color: rgba(255,255,255,0.4); }
.oc-fba-side-price {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}
.oc-fba-price--buy  { color: #60a5fa; }
.oc-fba-price--sell { color: #4ade80; }

/* Centre arrow */
.oc-fba-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    gap: 2px;
}
.oc-fba-arrow-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}
.oc-fba-arrow-icon {
    font-size: 1.4rem;
    color: #f97316;
    line-height: 1;
}
.oc-fba-arrow-profit {
    font-size: 0.62rem;
    font-weight: 800;
    color: #4ade80;
    white-space: nowrap;
}

/* Profit breakdown */
.oc-fba-breakdown {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.oc-fba-bk-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
}
.oc-fba-bk-total {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 4px;
    margin-top: 2px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}
.oc-fba-bk-red   { color: #f87171; font-weight: 600; }
.oc-fba-bk-green { color: #4ade80; font-weight: 700; }

/* Light-theme overrides for FBA */
.oc-fba-board { padding: 16px; }
.oc-fba-product {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.oc-fba-img {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
}
.oc-fba-img svg { width: 36px; height: 36px; }
.oc-fba-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
    line-height: 1.35;
}
.oc-fba-stars {
    font-size: 0.72rem;
    color: #f59e0b;
    margin-bottom: 6px;
}
.oc-fba-stars span { color: rgba(255,255,255,0.35); font-size: 0.68rem; }
.oc-fba-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
}
.oc-fba-buy { color: rgba(255,255,255,0.45); }
.oc-fba-arr { color: rgba(255,255,255,0.2); }
.oc-fba-sell { color: #22c55e; }
.oc-fba-meter { margin-bottom: 16px; }
.oc-fba-meter-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}
.oc-fba-meter-label strong { color: var(--idea-clr, #f97316); }
.oc-fba-meter-bar {
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
}
.oc-fba-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--idea-clr, #f97316), #fbbf24);
    border-radius: 4px;
    transition: width 1s ease;
}
.oc-fba-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}
.oc-fba-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.oc-fba-sv {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--idea-clr, #f97316);
    line-height: 1;
    margin-bottom: 4px;
}
.oc-fba-sl {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

/* ==============================================
   DASHBOARD 3: LOCAL LEAD GEN
   ============================================== */
.oc-leadgen-board { padding: 16px; }
.oc-lg-map {
    position: relative;
    height: 160px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}
.oc-lg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}
.oc-lg-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.oc-lg-pin-dot {
    display: block;
    width: 10px; height: 10px;
    background: var(--idea-clr, #10b981);
    border-radius: 50%;
    margin: 0 auto 4px;
    box-shadow: 0 0 8px var(--idea-clr, #10b981);
    animation: oc-pulse 2s ease-in-out infinite;
}
.oc-lg-pin--new .oc-lg-pin-dot {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}
.oc-lg-pin-label {
    display: block;
    font-size: 0.6rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.65);
    background: rgba(13,22,40,0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 3px 6px;
    white-space: nowrap;
    text-align: center;
}
.oc-lg-pin-label strong { color: var(--idea-clr, #10b981); display: block; }
.oc-lg-pin--new .oc-lg-pin-label strong { color: #f59e0b; }
.oc-lg-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}
.oc-lg-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.oc-lg-sv {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--idea-clr, #10b981);
    line-height: 1;
    margin-bottom: 4px;
}
.oc-lg-sl {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
}

@keyframes oc-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==============================================
   DASHBOARD 4: PRINT-ON-DEMAND
   ============================================== */
.oc-pod-board { padding: 16px; }
.oc-pod-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.oc-pod-tshirt {
    position: relative;
    flex-shrink: 0;
    width: 100px;
}
.oc-pod-tshirt svg { width: 100%; height: auto; display: block; }
.oc-pod-badge {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    background: var(--idea-clr, #ec4899);
    border-radius: 10px;
    padding: 2px 8px;
    white-space: nowrap;
}
.oc-pod-orders { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.oc-pod-order {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 7px;
    padding: 7px 10px;
    font-size: 0.7rem;
}
.oc-pod-name { flex: 1; color: rgba(255,255,255,0.7); }
.oc-pod-rev { font-weight: 700; color: var(--idea-clr, #ec4899); }
.oc-pod-status {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 10px;
    padding: 2px 7px;
}
.oc-pod-s--ship { background: rgba(34,197,94,0.15); color: #86efac; }
.oc-pod-s--proc { background: rgba(245,158,11,0.15); color: #fcd34d; }
.oc-pod-s--new { background: rgba(236,72,153,0.15); color: #f9a8d4; }

/* ==============================================
   DASHBOARD 5: YOUTUBE
   ============================================== */
.oc-yt-board { padding: 16px; }
.oc-yt-chart { margin-bottom: 16px; }
.oc-yt-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    padding: 0 4px;
}
.oc-yt-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    height: 100%;
    justify-content: flex-end;
}
.oc-yt-bar::before {
    content: '';
    display: block;
    width: 100%;
    height: var(--bh, 50%);
    background: rgba(239,68,68,0.25);
    border-radius: 4px 4px 0 0;
    border: 1px solid rgba(239,68,68,0.3);
    border-bottom: none;
    transition: height 0.8s ease;
}
.oc-yt-bar--cur::before {
    background: rgba(239,68,68,0.5);
    border-color: rgba(239,68,68,0.7);
    box-shadow: 0 0 12px rgba(239,68,68,0.3);
}
.oc-yt-bar span {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}
.oc-yt-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}
.oc-yt-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.oc-yt-sv {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--idea-clr, #ef4444);
    line-height: 1;
    margin-bottom: 4px;
}
.oc-yt-sl {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
}

/* ==============================================
   DASHBOARD 6: DIGITAL PRODUCTS
   ============================================== */
.oc-dp-board { padding: 16px; }
.oc-dp-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.oc-dp-feed { display: flex; flex-direction: column; gap: 7px; }
.oc-dp-sale {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 7px;
    padding: 8px 12px;
}
.oc-dp-ico { font-size: 0.85rem; }
.oc-dp-sale strong { color: rgba(255,255,255,0.8); }
.oc-dp-amt { font-weight: 700; color: var(--idea-clr, #8b5cf6); margin-left: auto; }
.oc-dp-platform { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.oc-dp-etsy { background: #f16521; color: #fff; }

/* ==============================================
   DASHBOARD 7: CONTENT CALENDAR
   ============================================== */
.oc-cal-board { padding: 10px 14px 14px; }
.oc-cal-header {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 4px;
    margin-bottom: 4px;
}
.oc-cal-header span {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.oc-cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 4px;
    margin-bottom: 10px;
}
.oc-cal-day {
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 5px 5px;
    gap: 4px;
    border: 1px solid rgba(0,0,0,0.06);
    min-height: 58px;
}
.oc-cal-day--empty {
    background: rgba(255,255,255,0.5);
}
.oc-cal-day--today {
    background: #fff;
    border-color: #06b6d4;
    box-shadow: 0 0 0 1.5px rgba(6,182,212,0.35);
}
.oc-cal-dnum {
    font-size: 0.62rem;
    font-weight: 700;
    color: #334155;
    line-height: 1;
}
.oc-cal-day--today .oc-cal-dnum { color: #0891b2; }
.oc-cal-post {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
/* Platform icon circles */
.oc-cp-icons {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.oc-cpi {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.oc-cpi--ig { background: linear-gradient(135deg, #f9a8d4, #ec4899, #a855f7); }
.oc-cpi--fb { background: #3b82f6; }
.oc-cpi--tw { background: #38bdf8; }
.oc-cpi--yt { background: #ef4444; }
.oc-cpi--tk { background: #0f172a; }
.oc-cpi--pt { background: #ef4444; }

/* Colorful content type pills */
.oc-cp-pills {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.oc-cpp {
    font-size: 0.48rem;
    font-weight: 700;
    color: #1e293b;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.4;
}
/* Legend */
.oc-cal-legend {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.oc-cl-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.45);
}
.oc-cl-item .oc-cpi { width: 8px; height: 8px; }
/* Legacy dot — keep for safety */
.oc-cal-dot { display: none; }

/* ==============================================
   DASHBOARD 8: CLEANING SERVICE
   ============================================== */
.oc-clean-board { padding: 16px; }
.oc-clean-day-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.oc-clean-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 6px;
    font-size: 0.72rem;
    transition: border-color 0.2s;
}
.oc-clean-slot.oc-cs--active {
    border-color: rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.06);
}
.oc-clean-slot.oc-cs--done { opacity: 0.5; }
.oc-cs-time {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    width: 58px;
    flex-shrink: 0;
}
.oc-cs-client { flex: 1; color: rgba(255,255,255,0.7); }
.oc-cs-price { font-weight: 700; color: var(--idea-clr, #22c55e); flex-shrink: 0; }
.oc-cs-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 10px;
    padding: 2px 8px;
    flex-shrink: 0;
}
.oc-cs-t--done { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); }
.oc-cs-t--live { background: rgba(34,197,94,0.2); color: #86efac; }
.oc-cs-t--sched { background: rgba(245,158,11,0.15); color: #fcd34d; }

/* ==============================================
   DASHBOARD 9: NOTION TEMPLATES
   ============================================== */
.oc-notion-board { padding: 16px; }
.oc-notion-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}
.oc-notion-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.oc-notion-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); }
.oc-nc--new { border-color: rgba(245,158,11,0.25); }
.oc-nc-preview {
    height: 52px;
    position: relative;
    overflow: hidden;
}
.oc-nc-p1 { background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.2)); }
.oc-nc-p2 { background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(251,146,60,0.15)); }
.oc-nc-p3 { background: linear-gradient(135deg, rgba(6,182,212,0.25), rgba(59,130,246,0.15)); }
.oc-nc-p4 { background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(16,185,129,0.15)); }
.oc-nc-p5 { background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(236,72,153,0.15)); }
.oc-nc-p6 { background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(251,191,36,0.15)); }
.oc-nc-preview::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
}
.oc-nc-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    padding: 5px 8px 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.oc-nc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 6px;
}
.oc-nc-price {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--idea-clr, #f59e0b);
}
.oc-nc-dl {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}
.oc-nc-new-badge {
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--idea-clr, #f59e0b);
    letter-spacing: 0.06em;
}

/* ==============================================
   DASHBOARD 10: COACHING
   ============================================== */
.oc-coach-board { padding: 16px; }
.oc-coach-session {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}
.oc-coach-session:hover { border-color: rgba(59,130,246,0.25); }
.oc-coach-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.oc-ca--b { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.oc-ca--g { background: linear-gradient(135deg, #22c55e, #10b981); }
.oc-coach-info {
    flex: 1;
    min-width: 0;
}
.oc-coach-info strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}
.oc-coach-info span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.oc-coach-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}
.oc-coach-prog {
    width: 70px;
    height: 5px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    overflow: hidden;
}
.oc-coach-bar {
    height: 100%;
    width: var(--cp, 50%);
    background: linear-gradient(90deg, var(--idea-clr, #3b82f6), #a5b4fc);
    border-radius: 3px;
}
.oc-coach-time {
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--idea-clr, #3b82f6);
    white-space: nowrap;
}

/* ==============================================
   RESPONSIVE: IDEAS SECTION
   ============================================== */
@media (max-width: 991px) {
    .oc-idea-copy-col,
    .oc-idea-card--flip .oc-idea-copy-col {
        padding: 36px 28px 24px;
    }
    .oc-idea-dash-col,
    .oc-idea-card--flip .oc-idea-dash-col {
        padding: 0 28px 36px;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    /* Even cards: copy always first on mobile, dashboard second */
    .oc-idea-card--flip .oc-idea-copy-col { order: -1 !important; }
    .oc-idea-card--flip .oc-idea-dash-col { order: 0 !important; }

    /* Shrink dashboard UI creatives on mobile */
    .oc-idea-dash { transform: none; margin-bottom: 0; }
    .oc-idea-card::after { top: 0; bottom: auto; height: 3px; width: 20%; right: auto; left: 0; }
    .oc-idea-card--flip::after { right: auto; left: 0; border-radius: 0 0 2px 0; }
    /* Remove dark bg from column on mobile — apply to .oc-idea-dash instead */
    .oc-idea-dash-col,
    .oc-idea-card--flip .oc-idea-dash-col {
        padding: 16px 16px 16px !important;
        background: none !important;
    }
    .oc-idea-dash-col::after,
    .oc-idea-dash-col::before,
    .oc-idea-dash::before,
    .oc-idea-dash::after {
        display: none !important;
    }
    .oc-idea-dash {
        background:
            radial-gradient(ellipse 70% 60% at 80% 15%, color-mix(in srgb, var(--idea-clr) 25%, transparent) 0%, transparent 55%),
            radial-gradient(ellipse 55% 55% at 15% 85%, color-mix(in srgb, var(--idea-clr) 15%, transparent) 0%, transparent 55%),
            linear-gradient(145deg,
                color-mix(in srgb, var(--idea-clr) 12%, #0a0a14) 0%,
                color-mix(in srgb, var(--idea-clr) 18%, #0e0e1c) 40%,
                color-mix(in srgb, var(--idea-clr) 10%, #0a0a14) 100%);
        border-radius: 16px;
        padding: 4px;
    }
    /* Pills row on mobile — keep horizontal, compact */
    .oc-pb-row { margin-top: 12px; gap: 6px; flex-wrap: nowrap; justify-content: center; overflow-x: auto; }
    .oc-pb { padding: 5px 10px 5px 5px !important; flex-shrink: 0; }
    .oc-pb-svg { width: 14px; height: 14px; }
    .oc-pb-img { width: 16px !important; height: 16px !important; max-width: 16px !important; max-height: 16px !important; }
    .oc-pb-icon-wrap { width: 24px !important; height: 24px !important; }
    .oc-pb-platform { font-size: 0.62rem !important; }
    .oc-pb-stat { font-size: 0.5rem !important; }
    .oc-pod-top { flex-direction: column; align-items: center; }
    .oc-pod-tshirt { width: 80px; }
}
@media (max-width: 575px) {
    .oc-ideas-section { padding: 80px 0 60px; }
    .oc-ideas-header { margin-bottom: 48px; }
    .oc-kanban-board { grid-template-columns: 1fr; gap: 16px; }
    .oc-fba-stats, .oc-lg-stats, .oc-yt-stats { grid-template-columns: repeat(3,1fr); }
    .oc-notion-grid { grid-template-columns: repeat(2,1fr); }
}

/* Light theme overrides for ideas section background icons */
.oc-ideas-section .oc-bgi {
    color: #1e3a8a;
    opacity: 0.05;
}

/* ================================================
   IDEAS SECTION OVERHAUL
   ================================================ */

/* Grid pattern overlay */
.oc-ideas-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.07) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
    z-index: 0;
}
.oc-ideas-section .container { position: relative; z-index: 2; }
.oc-ideas-section .oc-bg-icons { z-index: 1; }

/* Eyebrow visible on light bg */
.oc-ideas-section .oc-eyebrow-amber {
    background: rgba(234,102,0,0.1);
    color: #c85a00;
    border: 1px solid rgba(234,102,0,0.28);
    font-size: 0.74rem;
    font-weight: 800;
    padding: 7px 18px;
    letter-spacing: 0.1em;
}

/* Post-headline "Start Making Money Fast" — big & bold */
.oc-ideas-subhead {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    letter-spacing: -0.01em;
}

/* Colorful big section icons */
.oc-ideas-section .oc-bgi { opacity: 0.18 !important; }

/* ---- Floating header stat cards ---- */
.oc-ideas-floats {
    position: relative;
    height: 0;
    pointer-events: none;
    z-index: 3;
}
.oc-if-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: oc-float 8s ease-in-out infinite;
    white-space: nowrap;
}
.oc-if-card--1 { top: -240px; left: -50px;  animation-duration: 9s; animation-delay: 0s; }
.oc-if-card--2 { top: -290px; right: -50px; animation-duration: 8s; animation-delay: 2s; }
.oc-if-card--3 { top: -80px;  left: -50px;  animation-duration: 7s; animation-delay: 4s; }
.oc-if-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.oc-if-val { font-size: 1rem; font-weight: 800; color: #0f172a; line-height: 1.1; display: block; }
.oc-if-lbl { font-size: 0.63rem; font-weight: 500; color: #64748b; display: block; margin-top: 2px; }

@media (max-width: 991px) {
    .oc-if-card--1, .oc-if-card--2, .oc-if-card--3 { display: none; }
}

/* ================================================
   DASHBOARD WINDOW REDESIGN — Light + Sidebar
   ================================================ */
.oc-dash-window {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.oc-dash-titlebar {
    background: #1c2030;
    border-bottom: none;
}
.oc-dt-title { color: rgba(255,255,255,0.45); }
.oc-dash-inner {
    display: flex;
    min-height: 220px;
}
.oc-dash-sidebar {
    width: 46px;
    background: #1c2030;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.oc-ds-btn {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
}
.oc-ds-btn--active {
    background: var(--idea-clr, #6366f1);
    color: #fff;
}
.oc-ds-btn svg { width: 14px; height: 14px; display: block; }
.oc-dash-body {
    flex: 1;
    padding: 14px 16px;
    background: #f5f7ff;
    min-height: 0;
    overflow: hidden;
}
.oc-dash-footer {
    background: #f9fafc;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.oc-df-stat { color: #64748b; }
.oc-df-stat strong { color: #1e293b; }
.oc-df-badge {
    color: var(--idea-clr);
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
}

/* Kanban — light body fixes */
.oc-kanban-board { background: transparent; }
.oc-kanban-col-hd { color: #64748b; }
.oc-kanban-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    color: #334155;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.oc-kanban-card.oc-kc--active {
    border-color: rgba(99,102,241,0.3);
    background: rgba(99,102,241,0.07);
    color: #3730a3;
}
.oc-kc-badge { background: rgba(0,0,0,0.06); color: #64748b; }

/* FBA — light fixes */
.oc-fba-board { background: transparent; }
.oc-fba-side--buy  { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.18); }
.oc-fba-side--sell { background: rgba(249,115,22,0.06); border-color: rgba(249,115,22,0.18); }
.oc-fba-side-name  { color: #334155; }
.oc-fba-side-price.oc-fba-price--buy  { color: #2563eb; }
.oc-fba-side-price.oc-fba-price--sell { color: #16a34a; }
.oc-fba-arrow-icon  { color: #f97316; }
.oc-fba-arrow-profit { color: #16a34a; }
.oc-fba-breakdown { background: #f8fafc; border-color: rgba(0,0,0,0.07); }
.oc-fba-bk-item   { color: #64748b; }
.oc-fba-bk-total  { color: #1e293b; border-color: rgba(0,0,0,0.08); }
.oc-fba-bk-red    { color: #ef4444; }
.oc-fba-bk-green  { color: #16a34a; }
.oc-fba-stat { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-fba-sl { color: #64748b; }

/* Lead Gen — light fixes */
.oc-leadgen-board { background: transparent; }
.oc-lg-map { background: #edfbf4; border-color: rgba(0,0,0,0.06); }
.oc-lg-pin-label { background: #fff; border-color: rgba(0,0,0,0.1); color: #475569; }
.oc-lg-stat { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-lg-sl { color: #64748b; }

/* Print-on-Demand — light fixes */
.oc-pod-board { background: transparent; }
.oc-pod-order { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-pod-name { color: #334155; }

/* YouTube — light fixes */
.oc-yt-board { background: transparent; }
.oc-yt-bar span { color: #94a3b8; }
.oc-yt-stat { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-yt-sl { color: #64748b; }

/* Digital Products — light fixes */
.oc-dp-board { background: transparent; }
.oc-dp-chart { background: #f3f0ff; border-color: rgba(0,0,0,0.06); }
.oc-dp-sale { background: #fff; border-color: rgba(0,0,0,0.07); color: #475569; }
.oc-dp-sale strong { color: #1e293b; }

/* Calendar — light fixes */
.oc-cal-board { background: transparent; }
.oc-cal-header span { color: #94a3b8; }
.oc-cl-item { color: #64748b; }

/* Cleaning — light fixes */
.oc-clean-board { background: transparent; }
.oc-clean-day-label { color: #94a3b8; }
.oc-clean-slot { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-cs-time { color: #94a3b8; }
.oc-cs-client { color: #334155; }
.oc-clean-slot.oc-cs--active { background: rgba(34,197,94,0.07); border-color: rgba(34,197,94,0.3); }

/* Notion — light fixes */
.oc-notion-board { background: transparent; }
.oc-notion-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.oc-nc-name { color: #334155; }
.oc-nc-dl { color: #94a3b8; }

/* Coaching — light fixes */
.oc-coach-board { background: transparent; }
.oc-coach-session { background: #fff; border-color: rgba(0,0,0,0.07); }
.oc-coach-info strong { color: #1e293b; }
.oc-coach-info span { color: #94a3b8; }
.oc-coach-prog { background: rgba(0,0,0,0.07); }

/* ================================================
   SECTION 5 · Rankings / Pick Your Path
   ================================================ */

.oc-rank-section {
    position: relative;
    background: #070e1c;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Grid pattern overlay */
.oc-rank-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* Background icons — dark section */
.oc-bg-icons--rank .oc-bgi {
    opacity: 0.13 !important;
}

/* ---- Section Header ---- */
.oc-rank-header {
    margin-bottom: 64px;
}

.oc-eyebrow-rank {
    background: rgba(139,92,246,0.12);
    color: #a78bfa;
    border: 1px solid rgba(139,92,246,0.28);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 20px;
    text-transform: uppercase;
}

.oc-rank-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 20px 0 16px;
}

.oc-rank-hl {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-rank-subhead {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Niche Cards ───────────────────────────────────────────────── */
.oc-niche-grid {
    margin-top: 16px;
}
.oc-niche-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.oc-niche-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 12px 40px rgba(139,92,246,0.15);
}
.oc-niche-icon {
    color: #ec4899;
    margin-bottom: 20px;
    display: block;
}
.oc-niche-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 12px;
    line-height: 1.3;
}
.oc-niche-body {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

/* ---- Rank Cards ---- */
.oc-rank-grid {
    margin-bottom: 56px;
}

.oc-rank-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 32px 28px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.oc-rank-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rc-clr, #6366f1);
    border-radius: 24px 24px 0 0;
}

.oc-rank-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Card header */
.oc-rc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.oc-rc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--rc-clr-soft, rgba(99,102,241,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.06);
}

.oc-rc-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.oc-rc-eyebrow {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--rc-clr, #6366f1);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.oc-rc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.2;
}

.oc-rc-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

/* Ranked list items */
.oc-rc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oc-rc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.oc-rc-item:hover {
    background: var(--rc-clr-soft);
    border-color: rgba(255,255,255,0.08);
}

.oc-rc-rank {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--rc-clr-soft, rgba(99,102,241,0.12));
    border: 1px solid var(--rc-clr, #6366f1);
    color: var(--rc-clr, #6366f1);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-rc-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

/* Speed tags */
.oc-rc-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.07);
}

.oc-rc-tag--hot {
    background: rgba(245,158,11,0.15);
    color: #fbbf24;
    border-color: rgba(245,158,11,0.25);
}

/* Ease/Growth desc */
.oc-rc-desc {
    font-size: 0.7rem;
    color: #64748b;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- Pacino CTA ---- */
.oc-pacino-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.oc-pc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 80% 50%, rgba(245,158,11,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.oc-pc-inner {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.oc-pc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.oc-pc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}

.oc-pc-name-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.oc-pc-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e2e8f0;
}

.oc-pc-badge {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 2px 7px;
    border-radius: 100px;
}

.oc-pc-body {
    flex: 1;
}

.oc-pc-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

.oc-pc-right {
    flex-shrink: 0;
}

.oc-pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.oc-pc-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99,102,241,0.45);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .oc-pc-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }
    .oc-pc-left {
        flex-direction: row;
        align-items: center;
    }
    .oc-pc-right { width: 100%; }
    .oc-pc-btn { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
    .oc-rank-section { padding: 80px 0 70px; }
    .oc-rank-header { margin-bottom: 40px; }
    .oc-rc-desc { display: none; }
}

/* ================================================
   SECTION 6 · The Shift Has Happened
   ================================================ */

.oc-shift-section {
    position: relative;
    background: #0c0818;
    padding: 130px 0 120px;
    overflow: hidden;
}

/* ── 18 Months Section ─────────────────────────────────────────── */
.oc-18m-row {
    align-items: center;
}
.oc-18m-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.oc-18m-body p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 14px;
}
.oc-18m-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.oc-18m-list li {
    font-size: 0.97rem;
    color: #cbd5e1;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.oc-18m-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-size: 1.2em;
    line-height: 1.4;
}
.oc-18m-list li strong {
    color: #f1f5f9;
    font-weight: 700;
}
.oc-18m-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
}
@media (max-width: 991px) {
    .oc-18m-img { max-width: 100%; }
}

/* Dot-grid pattern — distinct from previous sections' line grids */
.oc-shift-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(167,139,250,0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Shift section icons */
.oc-bg-icons--shift .oc-bgi {
    opacity: 0.15 !important;
}

/* Atmospheric glows */
.oc-shift-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.oc-shift-glow--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
    top: -200px; left: -200px;
}
.oc-shift-glow--2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    bottom: -150px; right: -150px;
}

/* ---- Eyebrow + Headline ---- */
.oc-shift-intro {
    margin-bottom: 64px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.oc-eyebrow-shift {
    background: rgba(99,102,241,0.12);
    color: #818cf8;
    border: 1px solid rgba(99,102,241,0.28);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 7px 20px;
    text-transform: uppercase;
}

.oc-shift-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-top: 24px;
    margin-bottom: 0;
}

.oc-shift-hl {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 55%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Punchy build lines ---- */
.oc-shift-build {
    margin-bottom: 56px;
}

.oc-sb-line--intro {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 18px;
}

.oc-sb-word {
    color: #f1f5f9;
    font-weight: 700;
}

.oc-sb-trio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

.oc-sb-trio-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #94a3b8;
}

.oc-sb-trio-item--dim {
    color: #475569;
    font-style: italic;
}

.oc-sb-trio-sep {
    color: #1e293b;
    font-size: 1.4rem;
}

.oc-sb-line--act {
    margin: 0;
}

.oc-sb-gradient {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: inline-block;
}

/* ---- Quote block ---- */
.oc-shift-quote {
    max-width: 720px;
    margin: 0 auto 72px;
}

.oc-sq-inner {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #6366f1;
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.oc-sq-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.oc-sq-avatar {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.oc-sq-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.3);
    animation: oc-pulse 2.5s ease-in-out infinite;
}

@keyframes oc-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.12); }
}

.oc-sq-body {
    flex: 1;
}

.oc-sq-qmark {
    color: rgba(99,102,241,0.4);
    display: block;
    margin-bottom: 10px;
}

.oc-sq-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 12px;
}

.oc-sq-attr {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.oc-sq-attr strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e2e8f0;
}

.oc-sq-attr span {
    font-size: 0.78rem;
    color: #475569;
}

/* ---- AI Capabilities ---- */
.oc-shift-caps {
    margin-bottom: 64px;
}

.oc-sc-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 24px;
}

.oc-cap-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid var(--cap-clr, #6366f1);
    border-radius: 18px;
    padding: 28px 20px 24px;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.oc-cap-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.oc-cap-glow {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 100px;
    background: radial-gradient(circle, var(--cap-clr, #6366f1), transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.oc-cap-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.oc-cap-part {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cap-clr, #6366f1);
    margin-bottom: 4px;
}

.oc-cap-dash {
    color: rgba(255,255,255,0.15);
    font-size: 1rem;
    margin-bottom: 6px;
}

.oc-cap-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
}

/* ---- Action stream ---- */
.oc-shift-actions {
    margin-bottom: 80px;
}

.oc-sa-stream {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.oc-sa-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.oc-sa-item svg {
    color: #6366f1;
    flex-shrink: 0;
}

.oc-sa-item:hover {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.25);
    color: #e2e8f0;
}

/* ---- Punchline ---- */
.oc-shift-punch {
    padding-top: 16px;
}

.oc-punch-line1 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.oc-punch-line2 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #f1f5f9;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}

.oc-punch-labor {
    font-style: normal;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 767px) {
    .oc-shift-section { padding: 80px 0 80px; }
    .oc-sq-inner { flex-direction: column; gap: 14px; }
    .oc-sb-trio { flex-direction: column; gap: 6px; }
    .oc-sb-trio-sep { display: none; }
    .oc-cap-card { padding: 22px 16px 18px; }
}

/* ---- Shift Section: Floating UI cards ---- */
.oc-shift-floats {
    position: relative;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.oc-sf-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: oc-float 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.oc-sf-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.oc-sf-dot--green  { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.6); }
.oc-sf-dot--blue   { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,0.6); }
.oc-sf-dot--amber  { background: #fbbf24; box-shadow: 0 0 6px rgba(251,191,36,0.6); }

.oc-sf-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

.oc-sf-sub {
    font-size: 0.68rem;
    color: #64748b;
    display: block;
    margin-top: 1px;
}

.oc-sf-card--1 { top: -280px; left: -80px;  animation-duration: 9s; animation-delay: 0s; }
.oc-sf-card--2 { top: -240px; right: -80px; animation-duration: 8s; animation-delay: 2.5s; }
.oc-sf-card--3 { top: -100px; left: -80px;  animation-duration: 7s; animation-delay: 1.5s; }

@media (max-width: 1199px) {
    .oc-sf-card--1 { left: -20px; }
    .oc-sf-card--2 { right: -20px; }
}
@media (max-width: 1024px) {
    .oc-sf-card--1, .oc-sf-card--2, .oc-sf-card--3 { display: none; }
}

/* ================================================
   SECTION 7 · The Hidden Danger
   ================================================ */

.oc-danger-section {
    position: relative;
    background: #0e0b06; /* warm dark amber-black — distinct from blue/purple dark sections */
    padding: 120px 0 100px;
    overflow: hidden;
}

/* ── Here's How This Works section ────────────────────────────── */
.oc-hw-header {
    max-width: 860px;
    margin: 0 auto 64px;
}
.oc-hw-eyebrow {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.oc-hw-headline {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.oc-hw-example {
    font-style: italic;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-hw-col {
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    padding: 44px 32px 40px;
    height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.oc-hw-col:hover {
    border-color: rgba(168,85,247,0.5);
    box-shadow: 0 12px 40px rgba(99,102,241,0.18);
    transform: translateY(-4px);
}
.oc-hw-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99,102,241,0.18) 0%, rgba(168,85,247,0.18) 100%);
    border: 1.5px solid rgba(168,85,247,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.oc-hw-icon-wrap i {
    font-size: 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-hw-step {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 10px;
}
.oc-hw-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 14px;
}
.oc-hw-body {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.75;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Custom pointer cursor ─────────────────────────────────────── */
*, *::before, *::after {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23a855f7' stroke='%23fff' stroke-width='1' d='M5 3l14 9-7 1-4 7z'/%3E%3C/svg%3E") 5 3, auto;
}
a, button, [role='button'], label, select, input[type='submit'], input[type='button'], input[type='checkbox'], input[type='radio'] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%23ec4899' stroke='%23fff' stroke-width='1' d='M5 3l14 9-7 1-4 7z'/%3E%3C/svg%3E") 5 3, pointer;
}

/* Diagonal stripe pattern — distinct from previous sections */
.oc-danger-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        rgba(255,255,255,0.018) 0px,
        rgba(255,255,255,0.018) 1px,
        transparent 1px,
        transparent 44px
    );
    pointer-events: none;
    z-index: 0;
}

/* Background icons */
.oc-bg-icons--danger .oc-bgi {
    opacity: 0.14 !important;
}

/* ---- Floating UI cards ---- */
.oc-danger-floats {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
}

.oc-dfl-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: oc-float 8s ease-in-out infinite;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.oc-dfl-card--spend { top: 100px; left: 30px; animation-duration: 9s; }
.oc-dfl-card--ai    { top: 80px; right: 30px; animation-duration: 8s; animation-delay: 2s; }
.oc-dfl-card--save  { top: 220px; right: 140px; animation-duration: 10s; animation-delay: 4s; }

.oc-dfl-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-dfl-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.oc-dfl-lbl {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1px;
}

/* ---- Section header ---- */
.oc-danger-header {
    margin-bottom: 72px;
}

.oc-eyebrow-danger {
    background: rgba(239,68,68,0.1);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 20px;
    text-transform: uppercase;
}

.oc-danger-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 20px 0 0;
}

.oc-danger-hl {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Comparison cards ---- */
.oc-danger-compare {
    position: relative;
    margin-bottom: 80px;
    align-items: stretch;
}

.oc-model-card {
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Header row — icon + badge + title */
.oc-mc-header-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.oc-mc-header-row .oc-mc-badge { margin-bottom: 6px; }
.oc-mc-header-row .oc-mc-title { margin-bottom: 0; }

.oc-mc-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.oc-mc-icon--old {
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.2);
}
.oc-mc-icon--new {
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.2);
    animation: oc-icon-pulse 2s ease-in-out infinite;
}
@keyframes oc-icon-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
    50%      { box-shadow: 0 0 20px 4px rgba(16,185,129,0.15); }
}

/* Illustration area */
.oc-mc-illustration {
    text-align: center;
    margin-bottom: 24px;
    padding: 0;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.oc-mc-illust-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

/* Old model — warm red danger feel */
.oc-model-card--old {
    background: linear-gradient(160deg, rgba(239,68,68,0.06) 0%, rgba(0,0,0,0.3) 100%);
    border: 1px solid rgba(239,68,68,0.18);
    border-radius: 24px;
}

.oc-model-card--old::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    border-radius: 24px 24px 0 0;
}

/* Diagonal stripes overlay */
.oc-model-card--old::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 20px,
        rgba(239,68,68,0.02) 20px,
        rgba(239,68,68,0.02) 21px
    );
    pointer-events: none;
    border-radius: 24px;
}

/* New model — indigo/green energy */
.oc-model-card--new {
    background: linear-gradient(160deg, rgba(16,185,129,0.08) 0%, rgba(99,102,241,0.06) 100%);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 24px;
}

.oc-model-card--new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #6366f1, #8b5cf6);
    border-radius: 24px 24px 0 0;
}

/* Glow effect on new card */
.oc-model-card--new::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Model badge */
.oc-mc-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.oc-mc-badge--old {
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.25);
}

.oc-mc-badge--new {
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.25);
}

.oc-mc-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* ---- Cost receipt ---- */
.oc-cost-receipt {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(239,68,68,0.12);
    border-radius: 16px;
    padding: 20px 20px 4px;
    margin-bottom: 20px;
}

.oc-cr-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.oc-cr-emoji {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.oc-cr-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
}

.oc-cr-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    margin: 0 8px;
    align-self: center;
}

.oc-cr-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f87171;
    white-space: nowrap;
}

.oc-cr-amount em {
    font-style: normal;
    font-size: 0.72rem;
    color: #64748b;
    margin-left: 2px;
}

.oc-cr-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 8px;
    border-top: 1px solid rgba(239,68,68,0.15);
}

.oc-cr-total span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.oc-cr-total-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ef4444;
}

/* Per year — escalation row */
.oc-cr-year {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 16px;
}
.oc-cr-year span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.oc-cr-year-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239,68,68,0.4);
}

/* Consequences */
.oc-mc-cons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.oc-mcc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.oc-mcc-x {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Verdict line */
.oc-mc-verdict {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.oc-mc-verdict--old {
    background: rgba(239,68,68,0.08);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.15);
}
.oc-mc-verdict--new {
    background: rgba(16,185,129,0.08);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.15);
}
.oc-mcv-emoji { font-size: 1.1rem; }

/* AI benefits list */
.oc-ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.oc-aib-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(16,185,129,0.04);
    border: 1px solid rgba(16,185,129,0.08);
    transition: all 0.25s ease;
}

.oc-aib-item:hover {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.2);
    transform: translateX(4px);
}

.oc-aib-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.oc-aib-check {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 800;
    color: #10b981;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-aib-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(16,185,129,0.6);
}

/* VS Divider */
.oc-vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
}

.oc-vs-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.oc-vs-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #6366f1 50%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    box-shadow: 0 0 30px rgba(99,102,241,0.3);
    position: relative;
}

.oc-vs-badge::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
    animation: oc-vs-ring 2s ease-in-out infinite;
}

@keyframes oc-vs-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

/* Mobile VS — horizontal layout */
@media (max-width: 991px) {
    .oc-vs-divider {
        flex-direction: row;
        padding: 16px 0;
    }
    .oc-vs-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }
    .oc-vs-badge {
        width: 48px;
        height: 48px;
        font-size: 0.75rem;
        margin: 0 12px;
    }
    .oc-model-card--old,
    .oc-model-card--new { border-radius: 24px; }
}

/* ---- Punchline ---- */
.oc-danger-punch {
    margin-top: 20px;
}

.oc-dp-line1 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.oc-dp-line2 {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #f1f5f9;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
}

.oc-dp-leverage {
    background: linear-gradient(135deg, #10b981 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 991px) {
    .oc-model-card--old { border-radius: 24px 24px 0 0; }
    .oc-model-card--new { border-radius: 0 0 24px 24px; border-left: 1px solid rgba(16,185,129,0.15); border-top: none; }
    .oc-model-card--new::before { border-radius: 0; }
    .oc-dfl-card--save { display: none; }
}

@media (max-width: 767px) {
    .oc-danger-section { padding: 80px 0 60px; }
    .oc-danger-header { margin-bottom: 40px; }
    .oc-model-card { padding: 28px 22px; }
    .oc-dfl-card--spend,
    .oc-dfl-card--ai { display: none; }
}

/* ================================================
   SECTION 8 · Execution Edge
   ================================================ */

.oc-exec-section {
    position: relative;
    background: #030e09; /* deep emerald-black — distinct from warm amber & blue-purple darks */
    padding: 120px 0 110px;
    overflow: hidden;
}

/* ── Rebrand section ───────────────────────────────────────────── */
.oc-rebrand-header {
    max-width: 820px;
    margin: 0 auto 56px;
}
.oc-rebrand-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.oc-rebrand-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99,102,241,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oc-rebrand-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.25);
}
.oc-rebrand-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Horizontal lines pattern — distinct from all previous section patterns */
.oc-exec-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(16,185,129,0.04) 0px,
        rgba(16,185,129,0.04) 1px,
        transparent 1px,
        transparent 56px
    );
    pointer-events: none;
    z-index: 0;
}

/* Background icons */
.oc-bg-icons--exec .oc-bgi {
    opacity: 0.13 !important;
}

/* ---- Floating UI cards ---- */
.oc-exec-floats {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
}

.oc-ef-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: oc-float 8s ease-in-out infinite;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.oc-ef-card--1 { top: 100px; left: 28px; animation-duration: 9s; }
.oc-ef-card--2 { top: 90px; right: 28px; animation-duration: 8s; animation-delay: 2.5s; }
.oc-ef-card--3 { top: 230px; right: 160px; animation-duration: 10s; animation-delay: 5s; }

.oc-ef-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-ef-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.oc-ef-lbl {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 1px;
}

/* ---- Section header ---- */
.oc-exec-header {
    margin-bottom: 56px;
}

.oc-eyebrow-exec {
    background: rgba(16,185,129,0.1);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 20px;
    text-transform: uppercase;
}

.oc-exec-headline {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 20px 0 0;
}

.oc-exec-hl {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- 18-month timer banner ---- */
.oc-exec-timer {
    position: relative;
    background: rgba(16,185,129,0.05);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: 20px;
    padding: 28px 36px;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oc-exec-timer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.oc-et-pulse {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
    animation: oc-pulse 2s ease-in-out infinite;
}

@keyframes oc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.oc-et-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.oc-et-pre, .oc-et-suffix {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.oc-et-num {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    letter-spacing: -0.04em;
}

.oc-et-unit {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.02em;
}

/* ---- Speed cards ---- */
.oc-exec-speeds {
    margin-bottom: 72px;
}

.oc-speed-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.oc-speed-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sp-clr, #10b981);
    border-radius: 0 0 20px 20px;
    opacity: 0.7;
}

.oc-speed-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.oc-sc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sp-soft, rgba(16,185,129,0.1));
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--sp-clr, #10b981);
}

.oc-sc-verb {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f1f5f9;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.oc-sc-faster {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sp-clr, #10b981);
    margin: 0;
}

/* ---- Quote + punchline ---- */
.oc-exec-close {
    max-width: 760px;
    margin: 0 auto;
}

.oc-ec-quote {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 56px;
}

.oc-ec-q1 {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 12px;
    font-style: normal;
}

.oc-ec-q1 em {
    font-style: italic;
    color: #94a3b8;
}

.oc-ec-q2 {
    font-size: 1.35rem;
    color: #e2e8f0;
    font-weight: 600;
    margin: 0;
}

.oc-ec-q2 strong {
    color: #10b981;
    font-weight: 800;
}

.oc-ec-punch {}

.oc-ep-pre {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.oc-ep-big {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #f1f5f9;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0;
}

.oc-ep-hl {
    background: linear-gradient(135deg, #10b981 0%, #6366f1 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
    .oc-ef-card--1, .oc-ef-card--2, .oc-ef-card--3 { display: none; }
}

@media (max-width: 767px) {
    .oc-exec-section { padding: 80px 0 60px; }
    .oc-exec-header  { margin-bottom: 36px; }
    .oc-exec-timer   { padding: 20px 24px; margin-bottom: 36px; }
    .oc-ec-quote     { padding: 24px; }
    .oc-ef-card--1,
    .oc-ef-card--2   { display: none; }
}

/* ================================================
   SECTION 9 · Mindset Shift (Light transition)
   ================================================ */

.oc-shift2-section {
    position: relative;
    /* Warm cream — clearly different from cool-blue #f0f4ff ideas section */
    background: #fdf8f0;
    padding: 130px 0 0;
    overflow: hidden;
}

/* Scattered large radial blobs — warm ambient glow pattern, unlike any grid/line/dot used before */
.oc-shift2-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 40% at 15% 25%, rgba(245,158,11,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 85% 70%, rgba(99,102,241,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 35% at 50% 10%, rgba(16,185,129,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Background icons on light bg — more vivid, slightly higher opacity */
.oc-bg-icons--shift2 .oc-bgi {
    opacity: 0.11 !important;
}

/* ---- Floating UI cards ---- */
.oc-s2-floats {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
}

.oc-s2f-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: oc-float 8s ease-in-out infinite;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.oc-s2f-card--1 { top: 110px; left: 28px; animation-duration: 9s; }
.oc-s2f-card--2 { top: 95px; right: 28px; animation-duration: 8s; animation-delay: 2s; }
.oc-s2f-card--3 { top: 250px; left: 50%; transform: translateX(-50%); animation-duration: 10s; animation-delay: 4s; }

.oc-s2f-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-s2f-val {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.oc-s2f-lbl {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 1px;
}

/* ---- Section header ---- */
.oc-s2-header {
    margin-bottom: 64px;
}

.oc-eyebrow-s2 {
    background: rgba(245,158,11,0.1);
    color: #b45309;
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 20px;
    text-transform: uppercase;
}

.oc-s2-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 20px 0 0;
}

.oc-s2-hl {
    background: linear-gradient(135deg, #f59e0b 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Story block ---- */
.oc-s2-story {
    max-width: 680px;
    margin: 0 auto 72px;
}

.oc-story-inner {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 28px;
    padding: 44px 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    position: relative;
}

.oc-story-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 40px; right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #6366f1, #10b981);
    border-radius: 0 0 4px 4px;
}

.oc-story-lead {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.oc-story-body {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Not / Yes list */
.oc-story-notlist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 20px 22px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.oc-snl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
}

.oc-snl-item--yes {
    color: #0f172a;
}

.oc-snl-x {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(239,68,68,0.08);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}

.oc-snl-chk {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(16,185,129,0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.oc-story-bridge {
    font-size: 1rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Before → After shift */
.oc-story-shift {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(239,68,68,0.04) 0%, rgba(99,102,241,0.04) 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px 24px;
}

.oc-ss-from, .oc-ss-to {
    flex: 1;
    text-align: center;
}

.oc-ss-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
}

.oc-ss-text {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.oc-ss-from .oc-ss-text strong { color: #ef4444; }
.oc-ss-to   .oc-ss-text strong { color: #10b981; }

.oc-ss-arrow {
    color: #6366f1;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ---- Big quote ---- */
.oc-s2-quote {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    padding: 0 48px;
}

.oc-s2q-mark {
    font-size: 6rem;
    line-height: 0.6;
    font-family: Georgia, serif;
    color: #f59e0b;
    opacity: 0.4;
    display: block;
    margin-bottom: 12px;
    user-select: none;
}

.oc-s2q-mark--close {
    margin-bottom: 0;
    margin-top: 12px;
    line-height: 0.4;
}

.oc-s2q-text {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.025em;
    font-style: normal;
    margin: 0;
}

/* ---- Closing line ---- */
.oc-s2-close {
    text-align: center;
}

.oc-s2c-text {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #475569;
    margin: 0;
}

.oc-s2c-hl {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
    .oc-s2f-card--3 { display: none; }
    .oc-s2-quote { padding: 0 20px; }
}

@media (max-width: 767px) {
    .oc-shift2-section { padding: 80px 0 70px; }
    .oc-s2-header { margin-bottom: 40px; }
    .oc-s2-story { margin-bottom: 48px; }
    .oc-story-inner { padding: 32px 24px; }
    .oc-story-shift { flex-direction: column; gap: 10px; }
    .oc-ss-arrow { transform: rotate(90deg); }
    .oc-s2f-card--1,
    .oc-s2f-card--2 { display: none; }
}

/* ================================================
   SECTION 9 · overrides / fixes
   ================================================ */

/* Dot-grid background pattern (warm amber, subtle) */
.oc-shift2-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245,158,11,0.09) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Fix floating card positions — moved below headline, into story-block zone */
.oc-s2f-card--1 { top: 340px !important; left: 20px !important; animation-duration: 9s; }
.oc-s2f-card--2 { top: 360px !important; right: 20px !important; animation-duration: 8s; animation-delay: 2s; }
.oc-s2f-card--3 { top: 510px !important; left: 20px !important; animation-duration: 10s; animation-delay: 4s; transform: none !important; }

/* ── Proof Section (But Does It Work) ─────────────────────────── */
.oc-proof-header {
    max-width: 860px;
    margin: 0 auto 60px;
}
.oc-proof-header .oc-hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 20px;
    /* Light bg — force dark text */
    color: #0d1117 !important;
    -webkit-text-fill-color: #0d1117 !important;
}
/* Restore gradient only on the span */
.oc-proof-header .oc-hero-headline .oc-gradient-text {
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.oc-proof-sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.55;
}
.oc-proof-red {
    color: #e53e3e;
    font-style: italic;
    font-weight: 700;
}
.oc-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* Full width — no max-width cap */
    width: 100%;
    margin: 0 auto;
}
.oc-proof-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oc-proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.oc-proof-item img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 767px) {
    .oc-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .oc-proof-grid { grid-template-columns: 1fr; }
}

/* Single 50%-width proof image (proof7) */
.oc-proof-single {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.oc-proof-single img {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
@media (max-width: 767px) {
    .oc-proof-single img { width: 90%; }
}

/* ── Proof stats strip ─────────────────────────────────────────── */
.oc-proof-stats {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 48px 5%;
    /* Warm amber → orange gradient */
    background: linear-gradient(135deg, #f5a623 0%, #f97316 50%, #ea580c 100%);
    border-top: none;
}
.oc-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.oc-ps-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    line-height: 1;
    letter-spacing: -0.02em;
}
.oc-ps-lbl {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
@media (max-width: 600px) {
    .oc-proof-stats { flex-wrap: wrap; gap: 32px; padding: 36px 8%; }
    .oc-proof-stat  { width: 45%; }
}

/* Widen the story block */
.oc-s2-story {
    max-width: 920px !important;
    margin: 0 auto 72px !important;
}

/* Two-column layout inside card */
.oc-story-col-copy {
    padding: 0 28px 0 0;
}

.oc-story-col-visual {
    padding: 0 0 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oc-story-vdiv {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08), transparent);
}

/* Visual col heading */
.oc-sv-heading {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Enhanced before/after shift — vertical layout in right col */
.oc-story-shift {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.oc-ss-from,
.oc-ss-to {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.oc-ss-from {
    border-left: 3px solid #ef4444;
}

.oc-ss-to {
    border-left: 3px solid #10b981;
}

/* Icon wrap */
.oc-ss-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.oc-ss-icon-wrap--before {
    background: rgba(239,68,68,0.08);
    color: #ef4444;
}

.oc-ss-icon-wrap--after {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

/* Label override */
.oc-ss-label {
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #94a3b8 !important;
    display: block;
    margin-bottom: 2px;
}

.oc-ss-text {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.3;
}

.oc-ss-from .oc-ss-text strong { color: #ef4444 !important; }
.oc-ss-to   .oc-ss-text strong { color: #10b981 !important; }

/* Sub description */
.oc-ss-sub {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 2px 0 0;
}

/* Arrow between cards */
.oc-ss-arrow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 10px 0 !important;
    color: #6366f1 !important;
    opacity: 0.6 !important;
    transform: none !important;
}

.oc-ss-arrow-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
}

/* Responsive fixes for 2-col story */
@media (max-width: 991px) {
    .oc-story-col-copy { padding: 0 0 24px 0; }
    .oc-story-col-visual { padding: 24px 0 0 0; }
    .oc-s2f-card--1,
    .oc-s2f-card--2,
    .oc-s2f-card--3 { display: none !important; }
}

/* Reposition s2 floats into the header padding zone — not over story card */
.oc-s2f-card--1 { top: 36px !important; left: 24px !important; }
.oc-s2f-card--2 { top: 36px !important; right: 24px !important; }
.oc-s2f-card--3 { top: 104px !important; right: 24px !important; left: auto !important; }

/* ================================================
   SECTION 9 · FULL REDESIGN — v3
   ================================================ */

/* Float positions: card1 top-left, card2 top-right, card3 lower-right (well separated) */
.oc-s2f-card--1 { top: 50px  !important; left:  22px !important; right: auto !important; transform: none !important; animation-duration: 9s; }
.oc-s2f-card--2 { top: 50px  !important; right: 22px !important; left:  auto !important; transform: none !important; animation-duration: 8s; animation-delay: 2s; }
.oc-s2f-card--3 { top: 580px !important; right: 22px !important; left:  auto !important; transform: none !important; animation-duration: 10s; animation-delay: 4s; }

/* --- Open narrative prose --- */
.oc-s2-narrative {
    max-width: 660px;
    margin: 0 auto 64px;
}

.oc-s2n-lead {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.oc-s2n-body {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 28px;
}

.oc-s2n-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.oc-s2n-tag {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
}

.oc-s2n-tag--no {
    background: rgba(239,68,68,0.07);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.18);
}

.oc-s2n-tag--yes {
    background: rgba(16,185,129,0.08);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.22);
}

.oc-s2n-bridge {
    font-size: 1.05rem;
    font-style: italic;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* --- Wide Before/After cards --- */
.oc-s2-compare {
    margin-bottom: 72px;
}

.oc-s2c-card {
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.oc-s2c-card--before {
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.15);
}

.oc-s2c-card--before::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 24px 24px 0 0;
}

.oc-s2c-card--after {
    background: rgba(16,185,129,0.04);
    border: 1px solid rgba(16,185,129,0.15);
}

.oc-s2c-card--after::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #6366f1);
    border-radius: 24px 24px 0 0;
}

.oc-s2c-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.oc-s2c-icon-wrap--before {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.oc-s2c-icon-wrap--after {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.oc-s2c-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.oc-s2c-badge--before {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.2);
}

.oc-s2c-badge--after {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}

.oc-s2c-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.oc-s2c-card--before .oc-s2c-title span { color: #ef4444; }
.oc-s2c-card--after  .oc-s2c-title span { color: #10b981; }

.oc-s2c-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oc-s2c-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
}

.oc-s2cx, .oc-s2ck {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    flex-shrink: 0;
}

.oc-s2cx {
    background: rgba(239,68,68,0.08);
    color: #ef4444;
}

.oc-s2ck {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

/* Centre arrow */
.oc-s2c-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    opacity: 0.55;
}

.oc-s2c-mid span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
}

/* Responsive */
@media (max-width: 991px) {
    .oc-s2f-card--3 { display: none !important; }
    .oc-s2c-card { border-radius: 20px; padding: 28px 24px; }
}

@media (max-width: 767px) {
    .oc-s2-narrative { margin-bottom: 40px; }
    .oc-s2-compare   { margin-bottom: 48px; }
    .oc-s2f-card--1,
    .oc-s2f-card--2 { display: none !important; }
}

/* ================================================
   SECTION 9 · v4 — reference layout, light theme
   ================================================ */

/* Float card positions: left, right, separated lower */
.oc-s2f-card--1 { top: 44px  !important; left:  22px !important; right: auto !important; transform: none !important; }
.oc-s2f-card--2 { top: 44px  !important; right: 22px !important; left:  auto !important; transform: none !important; }
.oc-s2f-card--3 { top: 600px !important; right: 22px !important; left:  auto !important; transform: none !important; }

/* ---- Left: 30-days stat card ---- */
.oc-s2-stat-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oc-s2-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #6366f1, #10b981);
}

.oc-s2sc-eyebrow {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 16px;
}

.oc-s2sc-num {
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.oc-s2sc-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.oc-s2sc-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oc-s2sc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.oc-s2sc-item--no {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(0,0,0,0.25);
}

.oc-s2sc-item--yes {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.2);
    color: #4f46e5;
}

/* ---- Right: narrative column ---- */
.oc-s2-narrative-col {
    padding: 8px 0 8px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.oc-s2nc-body {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.oc-s2nc-who {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.oc-s2nc-who p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid rgba(0,0,0,0.08);
}

.oc-s2nc-who-yes {
    color: #0f172a !important;
    border-left-color: #6366f1 !important;
    font-weight: 800 !important;
}

.oc-s2nc-bridge {
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.oc-s2nc-shift {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oc-s2nc-before {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #cbd5e1;
    margin: 0;
    font-weight: 500;
}

.oc-s2nc-after {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.oc-s2nc-after span {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Full-width quote card ---- */
.oc-s2-quote-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 24px;
    padding: 40px 48px;
    margin: 56px 0 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oc-s2-quote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #f59e0b);
}

.oc-s2qc-text {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin: 0;
    font-style: normal;
}

.oc-s2qc-text span {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 991px) {
    .oc-s2-narrative-col { padding: 24px 0 0; }
    .oc-s2-quote-card { padding: 28px 24px; }
    .oc-s2f-card--3 { display: none !important; }
}

@media (max-width: 767px) {
    .oc-s2f-card--1,
    .oc-s2f-card--2 { display: none !important; }
    .oc-s2-quote-card { margin-top: 36px; }
}

/* Section 9 · float position + header spacing fix */
.oc-shift2-section { padding-top: 70px !important; }
.oc-s2-header { margin-bottom: 48px !important; }
.oc-s2f-card--1 { top: 130px !important; left: 22px !important; right: auto !important; }
.oc-s2f-card--2 { top: 130px !important; right: 22px !important; left: auto !important; }

/* ---- Section 9: float card fixes ----
   Card-2 updated to Tasks→Outcomes; card-3 removed.
   Hide both cards on tablets & below to prevent headline overlap */
@media (max-width: 1199px) {
    .oc-s2f-card--1,
    .oc-s2f-card--2 { display: none !important; }
}

/* ---- Section 9: hide float cards when viewport too narrow for side gutters ---- */
@media (max-width: 1399px) {
    .oc-s2f-card--1,
    .oc-s2f-card--2 { display: none !important; }
}
/* On wide screens, position cards in the side gutter below headline */
@media (min-width: 1400px) {
    .oc-s2f-card--1 { top: 200px !important; left: 16px !important; right: auto !important; }
    .oc-s2f-card--2 { top: 200px !important; right: 16px !important; left: auto !important; }
}

/* ============================================================
   SECTION 10 · THE OFFER — $47
   ============================================================ */

.oc-offer-section {
    position: relative;
    background: #08071a;
    padding: 120px 0 110px;
    overflow: hidden;
}

/* Deep indigo radial glow from center */
.oc-offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(99,102,241,0.09) 0%, transparent 70%),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 48px
        );
    pointer-events: none;
}

/* ---- Floating cards ---- */
.oc-of-floats {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    pointer-events: none;
}
.oc-of-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: oc-float 9s ease-in-out infinite;
    white-space: nowrap;
}
.oc-of-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.oc-of-val {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}
.oc-of-lbl {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.2;
}
.oc-of-card--1 { top: 140px; left: 24px; animation-duration: 9s; }
.oc-of-card--2 { top: 140px; right: 24px; animation-duration: 8s; animation-delay: 2.5s; }

/* ---- Header ---- */
.oc-offer-header { margin-bottom: 52px; }

.oc-offer-eyebrow {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.35);
    color: #a5b4fc;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.oc-offer-headline {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1.2;
    margin: 0;
}
.oc-offer-headline--accent {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- NOT/NOT/IS contrast block ---- */
.oc-offer-contrast {
    max-width: 680px;
    margin: 0 auto 44px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.oc-ofc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 12px;
}
.oc-ofc-row--no {
    background: rgba(239,68,68,0.07);
    border: 1px solid rgba(239,68,68,0.18);
}
.oc-ofc-row--yes {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
}
.oc-ofc-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.oc-ofc-tag--no {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}
.oc-ofc-tag--yes {
    background: rgba(16,185,129,0.15);
    color: #34d399;
}
.oc-ofc-text {
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.oc-ofc-row--yes .oc-ofc-text {
    color: #f8fafc;
    font-weight: 600;
}

/* ---- Benefit pills ---- */
.oc-offer-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
}
.oc-op-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.28);
    color: #c7d2fe;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 100px;
    transition: all 0.25s ease;
}
.oc-op-pill:hover {
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.5);
    color: #fff;
    transform: translateY(-2px);
}
.oc-op-pill .bi {
    font-size: 0.9rem;
    color: #818cf8;
}

/* ---- Price card ---- */
.oc-price-card {
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
    border: 1px solid rgba(99,102,241,0.35);
    border-radius: 24px;
    padding: 44px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.oc-price-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.oc-pc-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.oc-pc-price {
    font-size: clamp(5rem, 14vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.oc-pc-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}
.oc-pc-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 24px rgba(99,102,241,0.4);
}
.oc-pc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.55);
    color: #fff;
}

/* ---- Without block ---- */
.oc-without-block {
    padding: 0 0 0 32px;
}
.oc-wb-intro {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    line-height: 1.6;
}
.oc-without-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.oc-wl-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
}
.oc-wl-x {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.oc-wb-reason {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    margin: 0;
}
.oc-wb-reason span {
    color: #f8fafc;
    font-weight: 800;
    font-style: italic;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .oc-of-card--1,
    .oc-of-card--2 { display: none; }
}
@media (max-width: 991px) {
    .oc-without-block { padding: 32px 0 0; }
}
@media (max-width: 767px) {
    .oc-offer-section { padding: 80px 0 70px; }
    .oc-price-card { padding: 36px 28px; }
}

/* ---- Offer section: boost bg icon visibility ---- */
.oc-bg-icons--offer { z-index: 2; }
.oc-bg-icons--offer .oc-bgi {
    opacity: 0.18 !important;
    animation: oc-float 10s ease-in-out infinite;
}

/* ---- Offer section: icons visible on dark bg (override previous) ---- */
.oc-bg-icons--offer { z-index: 2 !important; }
.oc-bg-icons--offer .oc-bgi {
    opacity: 0.28 !important;
    animation: oc-float 10s ease-in-out infinite !important;
}

/* ---- Offer section: correct icon opacity (was set to 0.28/full for debug) ---- */
.oc-bg-icons--offer .oc-bgi { opacity: 0.15 !important; }

/* ============================================================
   SECTION 11 · THE ONLY QUESTION LEFT (Closing CTA)
   ============================================================ */

.oc-closing-section {
    position: relative;
    background: #04040f;
    padding: 120px 0 110px;
    overflow: hidden;
}

/* Spotlight glow from center-bottom */
.oc-closing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99,102,241,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 20% 50%,  rgba(16,185,129,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 80% 50%,  rgba(139,92,246,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Background icons */
.oc-bg-icons--closing { z-index: 1; }
.oc-bg-icons--closing .oc-bgi { opacity: 0.14 !important; }

/* ---- Header ---- */
.oc-closing-header { margin-bottom: 56px; }

.oc-closing-eyebrow {
    display: inline-block;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    color: #a5b4fc;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.oc-closing-headline {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #f8fafc;
    line-height: 1.2;
    margin: 0;
}
.oc-closing-headline--accent {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Choice cards ---- */
.oc-choice-row { margin-bottom: 56px; }

.oc-choice-card {
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.oc-cc-img-banner {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.oc-cc-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.oc-choice-card--new .oc-cc-img {
    object-position: center 20%;
}
.oc-choice-card--old .oc-cc-img-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #0e0a06 100%);
}
.oc-choice-card--new .oc-cc-img-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #06091a 100%);
}
.oc-cc-img-banner + .oc-cc-badge { margin-top: 24px; }
/* inner padding for content below image */
.oc-choice-card > *:not(.oc-cc-img-banner) {
    padding-left: 32px;
    padding-right: 32px;
}
.oc-choice-card > .oc-cc-footer {
    padding-bottom: 28px;
    margin-top: auto;
}
.oc-choice-card--old {
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.2);
}
.oc-choice-card--new {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.28);
    box-shadow: 0 0 40px rgba(16,185,129,0.06);
}

.oc-cc-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 16px;
}
.oc-cc-badge--old { background: rgba(239,68,68,0.15); color: #f87171; }
.oc-cc-badge--new { background: rgba(16,185,129,0.15); color: #34d399; }

.oc-cc-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 24px;
}
.oc-choice-card--old .oc-cc-title { color: rgba(248,250,252,0.55); }

.oc-cc-list { display: flex; flex-direction: column; gap: 14px; }

.oc-cc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.oc-choice-card--old .oc-cc-item { color: rgba(255,255,255,0.38); }

.oc-cc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.oc-cc-dot--old { background: #f87171; }
.oc-cc-dot--new { background: #34d399; }

/* ---- 18 months urgency ---- */
.oc-closing-urgency {
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 52px;
}
.oc-cu-line {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #f8fafc;
    text-align: center;
    margin-bottom: 28px;
}
.oc-cu-line span {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-cu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.oc-cu-act, .oc-cu-wait {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
    padding: 16px 20px;
    border-radius: 12px;
}
.oc-cu-act {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    color: rgba(255,255,255,0.8);
}
.oc-cu-act .bi { color: #34d399; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.oc-cu-wait {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.15);
    color: rgba(255,255,255,0.45);
}
.oc-cu-wait .bi { color: #f87171; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Philosophy ---- */
.oc-closing-philosophy {
    margin-bottom: 52px;
}
.oc-closing-philosophy p {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin: 0 0 6px;
    line-height: 1.5;
}
.oc-cp-dim {
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.25);
}
.oc-cp-bold {
    color: #f8fafc;
    font-weight: 900;
}

/* ---- Final question + CTA ---- */
.oc-closing-final { position: relative; }

.oc-cf-q {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.oc-cf-old {
    color: rgba(248,113,113,0.7);
    font-style: italic;
}
.oc-cf-or {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.oc-cf-deploy {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 40%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-cf-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 40px rgba(99,102,241,0.45);
    margin-bottom: 16px;
}
.oc-cf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(99,102,241,0.6);
    color: #fff;
}
.oc-cf-fine {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .oc-closing-section { padding: 80px 0 70px; }
    .oc-cu-split { grid-template-columns: 1fr; }
    .oc-closing-urgency { padding: 28px 24px; }
    .oc-cf-btn { padding: 16px 32px; font-size: 1rem; }
}

/* ---- Closing section: icon boxes for list items ---- */
.oc-cc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.oc-cc-icon--old {
    background: rgba(239,68,68,0.15);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.25);
}
.oc-cc-icon--new {
    background: rgba(16,185,129,0.15);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.25);
}

/* ---- Closing section: fixes ---- */

/* 1. Better pointer/icon alignment in choice cards */
.oc-cc-item {
    align-items: center !important;
    gap: 14px !important;
}
.oc-cc-item > span:last-child {
    line-height: 1.45;
}

/* 2. Bigger icon boxes in urgency (act/wait) block */
.oc-cu-act,
.oc-cu-wait {
    align-items: center !important;
    gap: 18px !important;
}
.oc-cu-iconbox {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}
.oc-cu-iconbox--act {
    background: rgba(16,185,129,0.18);
    border: 1px solid rgba(16,185,129,0.3);
    color: #34d399;
}
.oc-cu-iconbox--wait {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.25);
    color: #f87171;
}
/* Remove old inline icon styles */
.oc-cu-act > i, .oc-cu-wait > i { display: none; }

/* 3. Diagonal line background pattern */
.oc-closing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.022) 0px,
        rgba(255,255,255,0.022) 1px,
        transparent 1px,
        transparent 32px
    );
    pointer-events: none;
    z-index: 0;
}
.oc-closing-section > * { position: relative; z-index: 1; }

/* ---- Closing section: fix z-index stacking for diagonal pattern ---- */
/* Section creates its own stacking context via isolation */
.oc-closing-section { isolation: isolate !important; }

/* Pattern goes behind ALL content */
.oc-closing-section::after { z-index: -1 !important; }

/* Undo the bad > * rule — was hiding icons & causing overlap */
.oc-closing-section > * { position: static !important; z-index: auto !important; }

/* Re-apply absolute positioning explicitly to bg-icons & floats */
.oc-bg-icons--closing { position: absolute !important; inset: 0 !important; z-index: 1 !important; }

/* Container stays in flow above pattern */
.oc-closing-section .container { position: relative !important; z-index: 2 !important; }

/* ---- Closing section: emotional choice card redesign ---- */

/* Choice A — The Hard Way (amber/charcoal — heavy, exhausted, trapped) */
.oc-choice-card--old {
    background: #0e0a06 !important;
    border: 1px solid rgba(180,83,9,0.3) !important;
    border-left: 4px solid rgba(180,83,9,0.55) !important;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.5) !important;
    position: relative;
    overflow: hidden;
}
.oc-choice-card--old::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent,
        transparent 22px,
        rgba(180,83,9,0.025) 22px,
        rgba(180,83,9,0.025) 24px
    );
    pointer-events: none;
}
.oc-cc-badge--old {
    background: rgba(180,83,9,0.18) !important;
    color: #fb923c !important;
    border: 1px solid rgba(180,83,9,0.3) !important;
}
.oc-choice-card--old .oc-cc-title {
    color: rgba(248,250,252,0.5) !important;
}
.oc-cc-icon--old {
    background: rgba(180,83,9,0.15) !important;
    color: #fb923c !important;
    border: 1px solid rgba(180,83,9,0.25) !important;
}
.oc-choice-card--old .oc-cc-item { color: rgba(255,255,255,0.35) !important; }

/* Choice B — The Smart Move (indigo-cyan — electric, alive, forward) */
.oc-choice-card--new {
    background: #06091a !important;
    border: 1px solid rgba(99,102,241,0.3) !important;
    box-shadow: 0 0 60px rgba(99,102,241,0.1), 0 0 0 0 transparent !important;
    position: relative;
    overflow: hidden;
}
.oc-choice-card--new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    border-radius: 0;
}
.oc-choice-card--new::after {
    content: 'What top operators do';
    position: absolute;
    top: 20px; right: 18px;
    background: rgba(99,102,241,0.12);
    color: #818cf8;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.25);
}
.oc-cc-badge--new {
    background: rgba(99,102,241,0.15) !important;
    color: #a5b4fc !important;
    border: 1px solid rgba(99,102,241,0.3) !important;
}
.oc-cc-icon--new {
    background: rgba(99,102,241,0.15) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99,102,241,0.25) !important;
}

/* Shared sub-headline */
.oc-cc-sub {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 22px;
    margin-top: -10px;
}
.oc-choice-card--old .oc-cc-sub { color: rgba(255,255,255,0.28); }
.oc-choice-card--new .oc-cc-sub { color: rgba(165,180,252,0.6); }

/* Footer punchline */
.oc-cc-footer {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 7px;
}
.oc-cc-footer--old {
    border-top: 1px solid rgba(180,83,9,0.2);
    color: rgba(251,146,60,0.55);
}
.oc-cc-footer--new {
    border-top: 1px solid rgba(99,102,241,0.2);
    color: rgba(129,140,248,0.75);
}
.oc-closing-urgency {
    background: #090b18 !important;
}
/* Image split layout for act/wait cards */
.oc-cu-act,
.oc-cu-wait {
    padding: 0 !important;
    overflow: hidden !important;
    align-items: stretch !important;
    gap: 0 !important;
    min-height: 130px;
}
.oc-cu-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
}
.oc-cu-img-wrap {
    width: 170px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.oc-cu-img-wrap::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 60%;
    z-index: 1;
    pointer-events: none;
}
.oc-cu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Act side — vivid team image */
.oc-cu-act { background: #081410 !important; }
.oc-cu-img-wrap--act::before { background: linear-gradient(90deg, #081410, transparent); }
.oc-cu-act .oc-cu-img { opacity: 0.82; }

/* Wait side — desaturated lonely image */
.oc-cu-wait { background: #130a0a !important; }
.oc-cu-img-wrap--wait::before { background: linear-gradient(90deg, #130a0a, transparent); }
.oc-cu-wait .oc-cu-img { opacity: 0.45; filter: saturate(0.3) brightness(0.85); }

@media (max-width: 767px) {
    .oc-cu-img-wrap { width: 100px; }
}

/* ---- Fix "deploy?" descender clipping ---- */
.oc-cf-deploy {
    line-height: 1.15 !important;
    padding-bottom: 0.12em !important;
}

/* ================================================
   SECTION 11: PRICING TABLE  (light theme)
   ================================================ */

.oc-pricing-section {
    background: #f5f4f2;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background */
.oc-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Warm radial glow centre */
.oc-pricing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(99,102,241,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.oc-pricing-header {
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.oc-pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    padding: 7px 20px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.oc-pricing-headline {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.oc-pricing-headline--accent {
    background: linear-gradient(135deg, #6366f1 20%, #8b5cf6 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-pricing-sub {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 460px;
    margin: 0 auto;
}

/* ── 3-column layout ── */
.oc-pricing-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

/* ── Testimonial side columns ── */
.oc-testi-col {
    flex: 0 0 270px;
    height: 860px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.oc-testi-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.oc-testi-track--up {
    animation: oc-scroll-up 40s linear infinite;
}

.oc-testi-track--down {
    animation: oc-scroll-down 44s linear infinite;
}

@keyframes oc-scroll-up {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes oc-scroll-down {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.oc-testi-img-wrap {
    background: #1e1e2a;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.06);
}

.oc-testi-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Center card wrapper ── */
.oc-pricing-card-wrap {
    flex: 1;
    min-width: 0;
}

.oc-pricing-card {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(160deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%) border-box;
    border: 2px solid transparent;
    border-radius: 28px;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 32px rgba(99,102,241,0.14),
        0 28px 72px rgba(0,0,0,0.09);
    overflow: hidden;
    position: relative;
}

.oc-pricing-card::before { display: none; }

/* ── Top badge ── */
.oc-pc-top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(139,92,246,0.05));
    padding: 11px 24px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #6366f1;
    border-bottom: 1px solid rgba(99,102,241,0.09);
}

.oc-pc-tb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8b5cf6;
    display: inline-block;
}

/* ── Groups ── */
.oc-pc-group {
    position: relative;
    padding: 20px 24px 20px 24px;
    margin: 8px 20px;
    border-radius: 14px;
    border-left: 4px solid transparent;
}

/* Color variants */
.oc-pc-group--indigo  { background: rgba(99,102,241,0.06);  border-left-color: #6366f1; }
.oc-pc-group--emerald { background: rgba(16,185,129,0.07);  border-left-color: #10b981; }
.oc-pc-group--amber   { background: rgba(245,158,11,0.07);  border-left-color: #f59e0b; }
.oc-pc-group--violet  { background: rgba(168,85,247,0.07);  border-left-color: #a855f7; }

/* Large value badge — top right of card */
.oc-pcg-vbadge {
    position: absolute;
    top: 14px;
    right: 20px;
    text-align: right;
    line-height: 1;
}
.oc-pcg-vbadge-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.25);
    margin-bottom: 2px;
}
.oc-pcg-vbadge-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.oc-pc-group--indigo  .oc-pcg-vbadge-num { color: #6366f1; }
.oc-pc-group--emerald .oc-pcg-vbadge-num { color: #10b981; }
.oc-pc-group--amber   .oc-pcg-vbadge-num { color: #d97706; }
.oc-pc-group--violet  .oc-pcg-vbadge-num { color: #a855f7; }

.oc-pcg-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding-right: 110px; /* keep text away from value badge */
}

.oc-pcg-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.oc-pcg-icon-wrap--indigo  { background: rgba(99,102,241,0.10);  color: #6366f1; }
.oc-pcg-icon-wrap--emerald { background: rgba(16,185,129,0.10);  color: #10b981; }
.oc-pcg-icon-wrap--amber   { background: rgba(245,158,11,0.10);   color: #d97706; }
.oc-pcg-icon-wrap--violet  { background: rgba(168,85,247,0.10);   color: #a855f7; }

.oc-pcg-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0 0 4px;
}

.oc-pcg-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px;
    line-height: 1.3;
}

/* .oc-pcg-value replaced by .oc-pcg-vbadge */

.oc-pcg-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

.oc-pcg-inside {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    margin: 10px 0 8px;
}

.oc-pcg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 20px;
}

.oc-pcg-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.45;
}

.oc-pcg-list li .bi-check-circle-fill {
    color: #10b981;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── PLUS divider ── */
.oc-pc-plus {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 20px;
    margin: 2px 20px;
}

.oc-pc-plus-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.25), transparent);
}

.oc-pc-plus span {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #8b5cf6;
    background: rgba(99,102,241,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.18);
    color: #8b5cf6;
    background: rgba(99,102,241,0.07);
    padding: 4px 14px;
    border-radius: 99px;
    flex-shrink: 0;
}

/* ── Price block ── */
.oc-pc-price-block {
    background: linear-gradient(160deg, #0c0e24 0%, #1a1040 50%, #080f1e 100%);
    padding: 32px 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oc-pc-price-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.28) 0%, transparent 70%);
    pointer-events: none;
}

.oc-pcpb-retail {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
    position: relative;
}

.oc-pcpb-retail s { color: rgba(255,255,255,0.28); }

.oc-pcpb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 8px;
    position: relative;
}

.oc-pcpb-today {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
    min-width: 48px;
}

.oc-pcpb-price {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.oc-pcpb-was {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255,255,255,0.28);
    text-decoration: line-through;
    align-self: flex-end;
    margin-bottom: 10px;
    margin-right: 8px;
}

.oc-pcpb-dollar {
    font-size: 2rem;
    font-weight: 800;
    color: #a5b4fc;
    padding-top: 10px;
}

.oc-pcpb-num {
    font-size: 5.8rem;
    font-weight: 900;
    background: linear-gradient(160deg, #ffffff 0%, #c4b5fd 60%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding-bottom: 0.08em;
}

.oc-pcpb-type {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    text-align: left;
    align-self: flex-end;
    margin-bottom: 12px;
    line-height: 1.5;
    min-width: 48px;
}

.oc-pcpb-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 22px;
    position: relative;
}

/* CTA button */
.oc-pc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, #5b5ef5 0%, #7c3aed 50%, #6d28d9 100%);
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none !important;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 28px rgba(99,102,241,0.5);
    margin-bottom: 20px;
    animation: oc-btn-pulse 2.8s ease-in-out infinite;
    z-index: 1;
}

.oc-pc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.oc-pc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(99,102,241,0.6);
    animation: none;
}

@keyframes oc-btn-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(99,102,241,0.5), 0 0 0 0 rgba(99,102,241,0.4); }
    50%       { box-shadow: 0 8px 28px rgba(99,102,241,0.5), 0 0 0 14px rgba(99,102,241,0); }
}

/* Guarantee block */
.oc-pc-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    background:
        linear-gradient(rgba(15,20,40,0.9), rgba(15,20,40,0.9)) padding-box,
        linear-gradient(135deg, #10b981, #06b6d4) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.oc-pc-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.07) 0%, rgba(6,182,212,0.05) 100%);
    pointer-events: none;
}

/* Shield icon column */
.oc-pc-guarantee-shield {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
}
.oc-pc-guarantee-shield-icon {
    font-size: 2.6rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(16,185,129,0.5));
}
.oc-pc-guarantee-pct {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #10b981;
    text-transform: uppercase;
    line-height: 1;
}

/* Text */
.oc-pc-guarantee-text {
    position: relative;
}
.oc-pc-guarantee-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.oc-pc-guarantee-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.55;
}
.oc-pc-guarantee-text em {
    font-style: normal;
    color: #ffffff;
    font-weight: 700;
}
.oc-pc-guarantee-highlight {
    color: #34d399;
    font-weight: 700;
}
.oc-pc-guarantee-line1 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.4;
}
.oc-pc-guarantee-line2 {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 8px;
}

/* JvZoo button spacing */
/*.jv-button { margin-bottom: 28px; }*/
.jv-button img{
    width: 100%;
}

/* Security strip */
.oc-pc-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
}

.oc-pc-security span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    display: flex;
    align-items: center;
    gap: 5px;
}

.oc-pc-security .bi {
    color: rgba(165,180,252,0.65);
    font-size: 0.78rem;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .oc-testi-col { flex: 0 0 220px; }
}

@media (max-width: 991px) {
    .oc-testi-col { display: none; }
    .oc-pricing-layout { justify-content: center; }
}

@media (max-width: 575px) {
    .oc-pc-group { padding: 22px 20px 18px; }
    .oc-pcg-list { grid-template-columns: 1fr; }
    .oc-pc-price-block { padding: 28px 20px 24px; }
    .oc-pcpb-num { font-size: 4.5rem; }
    .oc-pc-plus { padding: 4px 20px; }
}

/* ================================================
   PRICING SECTION — v2 overrides & new styles
   ================================================ */

/* Richer gradient background */
.oc-pricing-section {
    background: linear-gradient(160deg,
        #f7f5ff 0%,
        #eef2ff 22%,
        #fdf4ff 50%,
        #ecfdf5 78%,
        #f7f5ff 100%) !important;
}

/* ── Logo in header ── */
.oc-pricing-logo-img {
    height: 52px;
    width: auto;
    display: block;
    margin: 0 auto 18px;
    filter: drop-shadow(0 2px 8px rgba(99,102,241,0.15));
}

/* ── Float cards (light theme — white with shadow) ── */
.oc-pf-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid rgba(99,102,241,0.10);
    min-width: 180px;
    z-index: 10;
}

.oc-pf-card--1 {
    top: 200px;
    left: 24px;
}

.oc-pf-card--2 {
    top: 200px;
    right: 24px;
}

.oc-pf-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-pf-card__title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.oc-pf-card__sub {
    font-size: 0.71rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* ── Background icons (light bg = use dark-tinted colors) ── */
.oc-bg-icons--pricing .oc-bgi {
    opacity: 0.09 !important;
}

/* ── New 2-col layout (card + testimonials right) ── */
.oc-pricing-layout {
    align-items: flex-start !important;
    gap: 28px !important;
}

.oc-pricing-card-wrap {
    flex: 1 1 0 !important;
    max-width: 620px !important;
}

/* ── Dual right testimonial area ── */
.oc-testi-right-area {
    display: flex;
    gap: 12px;
    flex: 0 0 420px;
    height: 880px; /* overridden by JS sync */
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.oc-testi-right-area .oc-testi-col {
    flex: 1;
    height: auto !important;
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* ── Testimonial cards: keep dark screenshot look ── */
.oc-testi-img-wrap {
    position: relative;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.oc-testi-img-wrap img {
    border-radius: 0 !important;
}

/* ── Animated emoji overlays ── */
.oc-testi-has-emoji { overflow: visible !important; }

.oc-testi-emoji {
    position: absolute;
    top: -14px;
    right: -6px;
    font-size: 1.7rem;
    line-height: 1;
    z-index: 5;
    animation: oc-emoji-bounce 2.2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    pointer-events: none;
}

@keyframes oc-emoji-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40%       { transform: translateY(-9px) scale(1.18); }
    60%       { transform: translateY(-5px) scale(1.08); }
}

/* ── Font sizes throughout pricing card ── */
.oc-pcg-title    { font-size: 1.18rem !important; }
.oc-pcg-desc     { font-size: 0.92rem !important; }
.oc-pcg-list li  { font-size: 0.97rem !important; }
.oc-pc-plus span { font-size: 0.65rem !important; }
.oc-pc-top-badge { font-size: 0.72rem !important; letter-spacing: 0.2em !important; }
.oc-pcpb-retail  { font-size: 2.5rem !important; color: rgba(255,255,255,0.7) !important; font-weight: 700 !important; }
.oc-pcpb-type    { font-size: 1.44rem !important; white-space: nowrap !important; line-height: 1.2 !important; color: rgba(255,255,255,0.7) !important; }
.oc-pcpb-note    { font-size: 0.88rem !important; }
.oc-pc-cta-btn   { font-size: 1.18rem !important; padding: 22px 28px !important; }
.oc-pc-security span { font-size: 0.78rem !important; }
.oc-pcg-icon-wrap { width: 52px !important; height: 52px !important; font-size: 1.4rem !important; }

/* Value badge responsive */
@media (max-width: 480px) {
    .oc-pcg-vbadge-num { font-size: 1.6rem !important; }
    .oc-pcg-head { padding-right: 80px !important; }
    .oc-pc-group { margin: 6px 12px !important; }
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .oc-testi-right-area { flex: 0 0 340px; }
}

@media (max-width: 991px) {
    .oc-testi-right-area { display: none; }
    .oc-pricing-card-wrap { max-width: 100% !important; }
    .oc-pf-card--1, .oc-pf-card--2 { display: none; }
}

/* ── Single testimonial column override ── */
.oc-testi-right-area {
    flex-direction: column !important;
    flex: 0 0 360px !important;
    overflow: hidden !important;
    height: 880px; /* overridden by JS sync */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
}

.oc-testi-right-area .oc-testi-col {
    display: none !important; /* remove inner col wrappers — track is direct child now */
}

.oc-testi-right-area > .oc-testi-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 1199px) {
    .oc-testi-right-area { flex: 0 0 300px !important; }
}

/* ================================================
   PRICING SECTION — fixes: alignment, spacing,
   emoji clip, logo position, hover pause
   ================================================ */

/* ── Logo bar inside card ── */
.oc-pc-logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px 0;
}

.oc-pc-logo-img {
    height: 46px;
    width: auto;
}

/* Remove logo from section header (no longer used) */
.oc-pricing-logo-img { display: none !important; }

/* ── Layout alignment ── */
.oc-pricing-layout {
    align-items: flex-start !important;
    justify-content: center !important;
    max-width: 1180px !important;
}

/* ── Testimonial column: fix overlap + emoji clip ── */
.oc-testi-right-area {
    flex: 0 0 380px !important;
    /* overflow visible so emojis don't get clipped */
    overflow: visible !important;
    position: relative;
    height: 880px; /* overridden by JS sync */
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Fade top/bottom using pseudo-elements instead of mask
   so overflow:visible works for emojis */
.oc-testi-right-area::before,
.oc-testi-right-area::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 4;
}

.oc-testi-right-area::before {
    top: 0;
    background: linear-gradient(to bottom,
        #f0f4ff 0%,
        rgba(240,244,255,0) 100%);
}

.oc-testi-right-area::after {
    bottom: 0;
    background: linear-gradient(to top,
        #f0f4ff 0%,
        rgba(240,244,255,0) 100%);
}

/* Clip only the scrolling inner track, not the emojis */
.oc-testi-right-area > .oc-testi-track {
    overflow: visible !important;
    gap: 20px !important;
}

/* Each image card: no overflow clip (emojis need to show) */
.oc-testi-img-wrap {
    overflow: visible !important;
    border-radius: 14px !important;
}

/* Clip images themselves so card edges look clean */
.oc-testi-img-wrap img {
    border-radius: 14px !important;
    display: block;
    width: 100%;
}

/* ── Emoji: stay inside card bounds, no clipping ── */
.oc-testi-emoji {
    top: -16px !important;
    right: 10px !important;
    font-size: 1.9rem !important;
    z-index: 10 !important;
}

/* ── Pause scroll on hover ── */
.oc-testi-right-area:hover > .oc-testi-track {
    animation-play-state: paused !important;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .oc-testi-right-area { flex: 0 0 300px !important; }
}

@media (max-width: 991px) {
    .oc-testi-right-area { display: none !important; }
}

/* ── Pricing testimonial: final overflow fix ── */
/* Contain scroll but add padding so emojis aren't clipped */
.oc-testi-right-area {
    overflow: hidden !important;
    padding-top: 20px !important;
    padding-right: 14px !important;
    /* restore mask for fade effect */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%) !important;
}

/* Remove the pseudo-element fades (replaced by mask above) */
.oc-testi-right-area::before,
.oc-testi-right-area::after {
    display: none !important;
}

/* Emojis inside card bounds — won't get clipped */
.oc-testi-emoji {
    top: 8px !important;
    right: 10px !important;
    font-size: 1.8rem !important;
}

/* Make sure track images don't overflow their card */
.oc-testi-img-wrap {
    overflow: hidden !important;
}

/* Align layout to top */
.oc-pricing-layout {
    align-items: flex-start !important;
}

/* ================================================
   PRICING v3 — dark header, glow, wider testi,
   trust cards, bigger logo, icon opacity
   ================================================ */

/* 1. Wider testimonial column (+20%) */
.oc-testi-right-area { flex: 0 0 456px !important; }
@media (max-width: 1199px) { .oc-testi-right-area { flex: 0 0 340px !important; } }

/* 2. Cover image card header */
.oc-pc-logo-bar {
    background: linear-gradient(160deg, #0c0e24 0%, #1a1040 55%, #0b0f1e 100%) !important;
    padding: 28px 32px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px 20px 0 0 !important;
}

.oc-pc-logo-img {
    width: 72% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
    object-fit: contain !important;
}

.oc-pc-top-badge {
    background: linear-gradient(160deg, #0e1128 0%, #1c1248 100%) !important;
    color: #a5b4fc !important;
    border-bottom: 1px solid rgba(99,102,241,0.22) !important;
    padding: 12px 24px 14px !important;
}

.oc-pc-tb-dot { background: #a5b4fc !important; }

/* Pricing card feature checklist */
.oc-pc-features {
    list-style: none;
    margin: 0;
    padding: 0 24px 8px;
    border-bottom: 1px solid rgba(99,102,241,0.12);
}
.oc-pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(99,102,241,0.08);
}
.oc-pc-features li:last-child { border-bottom: none; }
.oc-pc-feat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}
.oc-pc-features li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.oc-pc-features li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Space Grotesk', sans-serif;
}
.oc-pc-features li span {
    font-size: 0.85rem;
    color: #64748b;
}

/* 4. Full gradient border via background-clip technique */
.oc-pricing-card {
    border: 2px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #a78bfa 60%, #06b6d4 100%) border-box !important;
    box-shadow:
        0 0 40px rgba(99,102,241,0.22),
        0 0 90px rgba(139,92,246,0.12),
        0 8px 40px rgba(0,0,0,0.1) !important;
}

/* 5. Bump up bg icon opacity */
.oc-bg-icons--pricing .oc-bgi { opacity: 0.16 !important; }

/* 6. Trust cards row inside price block */
.oc-pc-trust-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    position: relative;
}

.oc-pc-trust-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(6px);
}

.oc-pc-trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.oc-pc-trust-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.oc-pc-trust-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .oc-pc-trust-row { flex-direction: column; }
}

/* ── Cover image — full width, auto height ── */

/* ── Bottom trust floats (section background, near CTA) ── */
.oc-trust-floats {
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 3;
    pointer-events: none;
    padding: 0 16px;
}

.oc-trust-float-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    min-width: 190px;
    pointer-events: auto;
}

.oc-tfc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-tfc-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.oc-tfc-sub {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Give the section enough bottom padding so floats don't overlap content */
.oc-pricing-section { padding-bottom: 160px !important; }

@media (max-width: 767px) {
    .oc-trust-floats { flex-direction: column; align-items: center; bottom: 28px; }
    .oc-pricing-section { padding-bottom: 280px !important; }
}

/* ── Trust floats: repositioned to bottom corners ── */
.oc-trust-floats {
    position: absolute !important;
    bottom: 52px !important;
    left: 0 !important;
    right: 0 !important;
    display: block !important;   /* override flex */
    padding: 0 !important;
}

/* 1 card bottom-left */
.oc-tfc--1 {
    position: absolute !important;
    bottom: 0 !important;
    left: 32px !important;
    right: auto !important;
}

/* 2 cards bottom-right, stacked vertically */
.oc-tfc--2 {
    position: absolute !important;
    bottom: 64px !important;
    right: 32px !important;
    left: auto !important;
}

.oc-tfc--3 {
    position: absolute !important;
    bottom: 0 !important;
    right: 32px !important;
    left: auto !important;
}

@media (max-width: 767px) {
    .oc-tfc--1, .oc-tfc--2, .oc-tfc--3 {
        position: static !important;
        margin: 0 auto 10px !important;
    }
    .oc-trust-floats {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: absolute !important;
        bottom: 20px !important;
    }
}

/* ── Remove extra bottom padding causing empty space ── */
.oc-pricing-section { padding-bottom: 100px !important; }

/* ── Trust floats: sit inside section bottom padding, no extra space ── */
.oc-trust-floats {
    position: absolute !important;
    bottom: 18px !important;
    left: 0 !important;
    right: 0 !important;
    pointer-events: none !important;
}

.oc-tfc--1 {
    position: absolute !important;
    bottom: 0 !important;
    left: 40px !important;
    right: auto !important;
    pointer-events: auto !important;
}

.oc-tfc--2 {
    position: absolute !important;
    bottom: 70px !important;
    right: 40px !important;
    left: auto !important;
    pointer-events: auto !important;
}

.oc-tfc--3 {
    position: absolute !important;
    bottom: 0 !important;
    right: 40px !important;
    left: auto !important;
    pointer-events: auto !important;
}

/* ── Trust floats: exact positions per reference screenshot ── */
.oc-trust-floats {
    position: absolute !important;
    inset: 0 !important;
    bottom: auto !important;
    pointer-events: none !important;
    display: block !important;
}

/* Left side — mid-level (beside the price block) */
.oc-tfc--1 {
    position: absolute !important;
    bottom: 180px !important;
    left: 28px !important;
    right: auto !important;
    pointer-events: auto !important;
}

/* Right side — higher up */
.oc-tfc--2 {
    position: absolute !important;
    bottom: 320px !important;
    right: 28px !important;
    left: auto !important;
    pointer-events: auto !important;
}

/* Right side — lower */
.oc-tfc--3 {
    position: absolute !important;
    bottom: 120px !important;
    right: 28px !important;
    left: auto !important;
    pointer-events: auto !important;
}

/* ── Trust floats: fill entire section so bottom-anchored cards work ── */
.oc-trust-floats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    pointer-events: none !important;
    z-index: 5 !important;
    display: block !important;
}

.oc-tfc--1 {
    position: absolute !important;
    bottom: 180px !important;
    left: 28px !important;
    right: auto !important;
    top: auto !important;
    pointer-events: auto !important;
}

.oc-tfc--2 {
    position: absolute !important;
    bottom: 340px !important;
    right: 28px !important;
    left: auto !important;
    top: auto !important;
    pointer-events: auto !important;
}

.oc-tfc--3 {
    position: absolute !important;
    bottom: 140px !important;
    right: 28px !important;
    left: auto !important;
    top: auto !important;
    pointer-events: auto !important;
}

/* ── Trust card 3: move to bottom-left, below card 1 ── */
.oc-tfc--3 {
    bottom: 28px !important;
    left: 28px !important;
    right: auto !important;
}

/* ── Hide trust cards on screens below 1200px to prevent overlap ── */
@media (max-width: 1199px) {
    .oc-tfc--1, .oc-tfc--2, .oc-tfc--3 {
        display: none !important;
    }
}

/* ── Bottom trust icons — absolute within section ── */
.oc-bgi--trust {
    position: absolute !important;
    opacity: 0.13 !important;
    animation: oc-float 5s ease-in-out infinite !important;
    z-index: 1;
}

.oc-bgi--trust:nth-child(1) { animation-delay: 0s !important; }
.oc-bgi--trust:nth-child(2) { animation-delay: 0.8s !important; }
.oc-bgi--trust:nth-child(3) { animation-delay: 1.6s !important; }

/* ============================================================
   SECTION · EASY INSTALL
   ============================================================ */

.oc-install-section {
    padding: 100px 0 110px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(99,102,241,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139,92,246,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(16,185,129,0.04) 0%, transparent 60%),
        #f0f4ff;
    position: relative;
    overflow: hidden;
}

/* cross-hatch light pattern */
.oc-install-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* extra glow orb top-right */
.oc-install-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.oc-install-header { position: relative; margin-bottom: 60px; }

/* eyebrow — reuses .oc-section-eyebrow + .oc-eyebrow-indigo (added below) */
.oc-eyebrow-indigo {
    background: rgba(99,102,241,0.1);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,0.2);
}

.oc-install-headline {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 18px 0 20px;
}

.oc-install-hl {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-install-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 28px;
}

.oc-install-sub--pink {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #f472b6;
    max-width: 720px;
}

.oc-install-glow-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #6366f1 25%, #a855f7 50%, #ec4899 75%, transparent 100%);
    box-shadow: 0 0 20px 4px rgba(168, 85, 247, 0.5), 0 0 40px 8px rgba(99, 102, 241, 0.3);
}

/* Stat pills row */
.oc-install-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.oc-install-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 100px;
    letter-spacing: 0.01em;
}
.oc-install-pill--green  { background: rgba(16,185,129,0.1);  color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.oc-install-pill--indigo { background: rgba(99,102,241,0.1);  color: #6366f1; border: 1px solid rgba(99,102,241,0.2); }
.oc-install-pill--orange { background: rgba(249,115,22,0.1);  color: #ea580c; border: 1px solid rgba(249,115,22,0.2); }

/* ── Base card ── */
.oc-install-card {
    border-radius: 24px;
    padding: 40px 38px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   PAIN CARD — Neobrutalist offset style
   ═══════════════════════════════════════ */
.oc-install-card--pain {
    background: #fff8f8;
    border: 2px solid rgba(220,38,38,0.25);
    box-shadow: 8px 8px 0px rgba(220,38,38,0.18);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.oc-install-card--pain:hover {
    box-shadow: 12px 12px 0px rgba(220,38,38,0.22);
    transform: translate(-2px, -2px);
}

/* Red stripe top */
.oc-install-card--pain::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #f97316, #dc2626);
    background-size: 200% 100%;
    animation: oc-pain-stripe 3s linear infinite;
}
@keyframes oc-pain-stripe {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Ghost BEFORE watermark */
.oc-pain-watermark {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(220,38,38,0.06);
    letter-spacing: 0.06em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* Ghost warning icon top-right */
.oc-pain-ghost-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(220,38,38,0.1);
    pointer-events: none;
}

/* Dashed receipt divider */
.oc-pain-divider {
    border: none;
    border-top: 1px dashed rgba(220,38,38,0.25);
    margin: 18px 0;
}

/* ═══════════════════════════════════════
   FIX CARD — Gradient ring + spotlight
   ═══════════════════════════════════════ */
.oc-install-card--fix {
    background: linear-gradient(145deg, #f5f3ff 0%, #f0fdf4 100%);
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 1.5px rgba(99,102,241,0.2), 0 8px 40px rgba(99,102,241,0.12), 0 24px 60px rgba(16,185,129,0.07);
    transition: box-shadow 0.3s ease;
}
.oc-install-card--fix:hover {
    box-shadow: 0 0 0 2px rgba(99,102,241,0.35), 0 16px 60px rgba(99,102,241,0.18), 0 32px 80px rgba(16,185,129,0.1);
}

/* Animated gradient border ring */
.oc-fix-border-ring {
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(var(--fix-angle, 0deg), #6366f1, #8b5cf6, #10b981, #06b6d4, #6366f1);
    z-index: -1;
    animation: oc-fix-ring-spin 5s linear infinite;
    opacity: 0.5;
}
@keyframes oc-fix-ring-spin {
    to { --fix-angle: 360deg; }
}

/* Spotlight radial behind the badge */
.oc-fix-spotlight {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Shared badge */
.oc-install-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.oc-install-card-badge--red {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
    border: 1px solid rgba(220,38,38,0.2);
}
.oc-install-card-badge--green {
    background: rgba(99,102,241,0.08);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,0.2);
    box-shadow: 0 0 20px rgba(99,102,241,0.1);
}

/* Leads */
.oc-ip-lead {
    font-size: 1.1rem;
    font-weight: 800;
    color: #7f1d1d;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.oc-ip-lead--fix {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
}
.oc-ip-lead--fix strong { color: #059669; }

.oc-ip-body {
    font-size: 0.9rem;
    color: #7f1d1d;
    opacity: 0.7;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Pain list — receipt style */
.oc-ip-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}
.oc-ip-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7f1d1d;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(220,38,38,0.15);
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
}
.oc-ip-list li:last-child { border-bottom: none; }

.oc-ip-x {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(220,38,38,0.12);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: inherit;
}

/* Conclusion */
.oc-ip-conclusion {
    font-size: 0.85rem;
    color: #dc2626;
    background: rgba(220,38,38,0.06);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid #dc2626;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.oc-ip-conclusion strong { color: #991b1b; }

/* Fix card checklist */
.oc-install-fix-lines {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}
.oc-ifl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.6;
    padding: 14px 0;
    border-bottom: 1px solid rgba(99,102,241,0.08);
    position: relative;
    z-index: 1;
}
.oc-ifl-item:last-child { border-bottom: none; }
.oc-ifl-item strong { color: #0f172a; }

.oc-ifl-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(99,102,241,0.3);
    margin-top: 2px;
    animation: oc-check-pulse 2.5s ease-in-out infinite;
}
@keyframes oc-check-pulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(99,102,241,0.3); }
    50%       { box-shadow: 0 3px 20px rgba(99,102,241,0.55); }
}

/* Fix card footer timer */
.oc-fix-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(99,102,241,0.1);
    position: relative;
    z-index: 1;
}
.oc-fix-timer {
    font-size: 0.82rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.oc-fix-timer strong {
    color: #059669;
    font-weight: 800;
}

/* Video */
.oc-install-video {
    max-width: 860px;
    margin: 0 auto;
}

/* Big highlighted video title */
.oc-install-video-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    text-align: center;
}
.oc-ivt-hl {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-ivl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 0 12px rgba(99,102,241,0.6);
    animation: oc-ivl-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes oc-ivl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* AI smart border — animated gradient ring */
.oc-install-video-border {
    position: relative;
    border-radius: 22px;
    padding: 3px;
    background: linear-gradient(var(--ai-border-angle, 0deg),
        #6366f1, #8b5cf6, #10b981, #06b6d4, #6366f1);
    animation: oc-ai-border-spin 4s linear infinite;
    box-shadow: 0 0 40px rgba(99,102,241,0.2), 0 20px 60px rgba(0,0,0,0.1);
}
@property --ai-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes oc-ai-border-spin {
    to { --ai-border-angle: 360deg; }
}

.oc-install-video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}

.oc-install-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Enlarged after-video note */
.oc-install-video-note {
    text-align: center;
    margin-top: 24px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   SECTION · MAGICAL ONBOARDING
   ============================================================ */

.oc-onboard-section {
    padding: 100px 0 110px;
    background:
        radial-gradient(ellipse 70% 55% at 80% 10%, rgba(139,92,246,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 15% 90%, rgba(99,102,241,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(236,72,153,0.04) 0%, transparent 60%),
        #e8ecf8;
    position: relative;
    overflow: hidden;
}

/* diagonal line pattern — slightly darker than install section */
.oc-onboard-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(99,102,241,0.05) 0px,
            rgba(99,102,241,0.05) 1px,
            transparent 1px,
            transparent 32px
        );
    pointer-events: none;
}

/* top glow band */
.oc-onboard-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1, #ec4899, #8b5cf6);
    background-size: 300% 100%;
    animation: oc-ob-topband 5s linear infinite;
}
@keyframes oc-ob-topband {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* Header */
.oc-onboard-header { position: relative; margin-bottom: 60px; }

.oc-eyebrow-violet {
    background: rgba(139,92,246,0.1);
    color: #7c3aed;
    border: 1px solid rgba(139,92,246,0.22);
}

.oc-onboard-headline {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 18px 0 20px;
}

.oc-onboard-hl {
    background: linear-gradient(90deg, #7c3aed, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-onboard-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* ── Base onboard card ── */
.oc-onboard-card {
    border-radius: 24px;
    padding: 40px 38px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   WONDER CARD — amber/orange confusion
   ═══════════════════════════════════════ */
.oc-onboard-card--wonder {
    background: #fffbeb;
    border: 2px solid rgba(217,119,6,0.22);
    box-shadow: 8px 8px 0px rgba(217,119,6,0.15);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.oc-onboard-card--wonder:hover {
    box-shadow: 12px 12px 0px rgba(217,119,6,0.2);
    transform: translate(-2px, -2px);
}
.oc-onboard-card--wonder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d97706, #f59e0b, #ea580c, #d97706);
    background-size: 300% 100%;
    animation: oc-wonder-stripe 4s linear infinite;
}
@keyframes oc-wonder-stripe {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.oc-ob-watermark {
    position: absolute;
    bottom: 10px;
    right: 24px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(217,119,6,0.07);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.oc-ob-ghost-icon {
    position: absolute;
    top: 20px; right: 20px;
    color: rgba(217,119,6,0.12);
    pointer-events: none;
}
.oc-ob-divider {
    border: none;
    border-top: 1px dashed rgba(217,119,6,0.25);
    margin: 16px 0;
}
.oc-ob-wonder-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.oc-ob-wonder-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(217,119,6,0.15);
    font-family: 'SF Mono','Fira Code','Fira Mono',monospace;
}
.oc-ob-wonder-list li:last-child { border-bottom: none; }

.oc-ob-q {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(217,119,6,0.12);
    color: #d97706;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 900;
    flex-shrink: 0;
}
.oc-ob-conclusion {
    font-size: 0.85rem;
    color: #92400e;
    background: rgba(217,119,6,0.06);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid #d97706;
    line-height: 1.6;
}
.oc-ob-conclusion strong { color: #78350f; }

/* ═══════════════════════════════════════
   GUIDED CARD — violet/indigo premium
   ═══════════════════════════════════════ */
.oc-onboard-card--guided {
    background: linear-gradient(145deg, #faf5ff 0%, #eff6ff 100%);
    border: 1.5px solid transparent;
    box-shadow: 0 0 0 1.5px rgba(139,92,246,0.2), 0 8px 40px rgba(139,92,246,0.13), 0 24px 60px rgba(99,102,241,0.07);
    transition: box-shadow 0.3s ease;
}
.oc-onboard-card--guided:hover {
    box-shadow: 0 0 0 2px rgba(139,92,246,0.35), 0 16px 60px rgba(139,92,246,0.2), 0 32px 80px rgba(99,102,241,0.1);
}

.oc-ob-border-ring {
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(var(--ob-angle, 0deg), #8b5cf6, #6366f1, #ec4899, #f59e0b, #8b5cf6);
    z-index: -1;
    opacity: 0.45;
    animation: oc-ob-ring-spin 6s linear infinite;
}
@keyframes oc-ob-ring-spin {
    to { --ob-angle: 360deg; }
}

.oc-ob-spotlight {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 340px; height: 220px;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.14) 0%, transparent 70%);
    pointer-events: none;
}

/* Shared badges */
.oc-ob-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.oc-ob-badge--wonder {
    background: rgba(217,119,6,0.08);
    color: #d97706;
    border: 1px solid rgba(217,119,6,0.2);
}
.oc-ob-badge--guided {
    background: rgba(139,92,246,0.08);
    color: #7c3aed;
    border: 1px solid rgba(139,92,246,0.2);
    box-shadow: 0 0 20px rgba(139,92,246,0.1);
}

.oc-ob-lead {
    font-size: 1.05rem;
    font-weight: 800;
    color: #78350f;
    margin-bottom: 10px;
    position: relative; z-index: 1;
    line-height: 1.5;
}
.oc-ob-lead--guided {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
}
.oc-ob-lead--guided strong { color: #7c3aed; }

.oc-ob-body {
    font-size: 0.9rem;
    color: #92400e;
    opacity: 0.75;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative; z-index: 1;
}
.oc-ob-subtext {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative; z-index: 1;
}
.oc-ob-subtext strong { color: #7c3aed; }

.oc-ob-benefits {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative; z-index: 1;
}
.oc-ob-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139,92,246,0.08);
}
.oc-ob-benefit:last-child { border-bottom: none; }
.oc-ob-benefit strong { color: #0f172a; }

.oc-ob-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    font-size: 0.72rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(139,92,246,0.3);
    margin-top: 2px;
    animation: oc-ob-check-pulse 2.5s ease-in-out infinite;
}
@keyframes oc-ob-check-pulse {
    0%, 100% { box-shadow: 0 3px 12px rgba(139,92,246,0.3); }
    50%       { box-shadow: 0 3px 22px rgba(139,92,246,0.55); }
}

.oc-ob-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(139,92,246,0.1);
    position: relative; z-index: 1;
}
.oc-ob-unique {
    font-size: 0.82rem;
    color: #7c3aed;
    font-weight: 700;
}

/* Video */
.oc-onboard-video { max-width: 860px; margin: 0 auto; }

.oc-onboard-video-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    text-align: center;
}
.oc-ob-vt-hl {
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-ob-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 12px rgba(139,92,246,0.6);
    animation: oc-ivl-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.oc-onboard-video-border {
    position: relative;
    border-radius: 22px;
    padding: 3px;
    background: linear-gradient(var(--ob-vid-angle, 0deg), #8b5cf6, #6366f1, #ec4899, #f59e0b, #8b5cf6);
    animation: oc-ob-vid-spin 5s linear infinite;
    box-shadow: 0 0 50px rgba(139,92,246,0.2), 0 20px 60px rgba(0,0,0,0.08);
}
@keyframes oc-ob-vid-spin {
    to { --ob-vid-angle: 360deg; }
}

.oc-onboard-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
}
.oc-onboard-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.oc-onboard-video-note {
    text-align: center;
    margin-top: 24px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.oc-onboard-video-note strong { color: #0f172a; }

/* Onboarding CTA group */
.oc-ob-cta-wrapper {
    margin-top: 72px;
    position: relative;
    align-items: center;
}
.oc-ob-urgency-bar {
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(99,102,241,0.08));
    border: 1px solid rgba(139,92,246,0.2);
    color: #5b21b6;
}
.oc-ob-float-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(139,92,246,0.18);
    box-shadow:
        0 4px 24px rgba(139,92,246,0.14),
        0 1px 4px rgba(0,0,0,0.06);
}

/* ============================================================
   SECTION 12 · 14-DAY GUARANTEE
   ============================================================ */

.oc-guarantee-section {
    position: relative;
    padding: 120px 0 130px;
    background: linear-gradient(160deg, #06071a 0%, #0e0b28 35%, #070d1e 65%, #0a0618 100%) !important;
    overflow: hidden;
}

/* Radial glow behind card */
.oc-guarantee-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.18) 0%, rgba(139,92,246,0.08) 45%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* BG icons container */
.oc-bg-icons--guarantee {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* ---- Eyebrow ---- */
.oc-guar-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #10b981;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.25);
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ---- Main card ---- */
.oc-guar-card {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(18,14,48,0.95) 0%, rgba(10,12,36,0.98) 100%);
    border: 1.5px solid rgba(99,102,241,0.28);
    border-radius: 24px;
    padding: 56px 52px 48px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(139,92,246,0.15),
        0 0 40px rgba(99,102,241,0.20),
        0 0 100px rgba(139,92,246,0.10),
        0 24px 60px rgba(0,0,0,0.5);
    position: relative;
}

/* ---- Seal ---- */
.oc-guar-seal {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 32px;
}

.oc-guar-seal__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: oc-seal-pulse 3.2s ease-in-out infinite;
}
.oc-guar-seal__ring--outer {
    border: 2px solid rgba(16,185,129,0.25);
    animation-delay: 0s;
}
.oc-guar-seal__ring--inner {
    inset: 14px;
    border: 1.5px solid rgba(16,185,129,0.40);
    animation-delay: 0.6s;
}

@keyframes oc-seal-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.04); }
}

.oc-guar-seal__body {
    position: absolute;
    inset: 20px;
    background: radial-gradient(135deg, #0f2c22 0%, #071a14 100%);
    border: 2px solid rgba(16,185,129,0.45);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(16,185,129,0.25), inset 0 0 20px rgba(16,185,129,0.05);
}

.oc-guar-seal__icon {
    font-size: 1.1rem;
    color: #34d399;
    line-height: 1;
    margin-bottom: 2px;
}
.oc-guar-seal__days {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ecfdf5;
    line-height: 1;
}
.oc-guar-seal__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #34d399;
    line-height: 1;
}

/* ---- Headline ---- */
.oc-guar-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 10px;
    line-height: 1.2;
}

.oc-guar-sub {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 0;
    font-style: italic;
}

/* ---- Divider ---- */
.oc-guar-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
    margin: 28px 0;
}

/* ---- Steps ---- */
.oc-guar-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    margin-bottom: 0;
}

.oc-guar-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.oc-guar-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oc-guar-step__text {
    font-size: 1.0rem;
    font-weight: 500;
    color: #cbd5e1;
}

/* ---- Condition block ---- */
.oc-guar-condition {
    background: rgba(99,102,241,0.07);
    border: 1px solid rgba(99,102,241,0.18);
    border-radius: 14px;
    padding: 22px 24px 18px;
    text-align: left;
}

.oc-guar-condition__if {
    font-size: 0.93rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 6px;
    padding-left: 2px;
}
.oc-guar-condition__if:first-child::before,
.oc-guar-condition__if:nth-child(2)::before {
    content: '— ';
    color: #6366f1;
}

.oc-guar-condition__action {
    font-size: 1.0rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 12px;
    margin-bottom: 0;
}
.oc-guar-condition__action strong {
    color: #a5b4fc;
}

/* ---- No drama ---- */
.oc-guar-nodrama {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.oc-guar-nodrama__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    padding: 0 28px;
}

.oc-guar-nodrama__item i {
    font-size: 1.3rem;
}

.oc-guar-nodrama__sep {
    width: 1px;
    height: 36px;
    background: rgba(99,102,241,0.25);
}

/* ---- Closing line ---- */
.oc-guar-closing {
    font-size: 1.05rem;
    font-style: italic;
    color: #34d399;
    margin-top: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .oc-guar-card {
        padding: 40px 24px 36px !important;
    }
    .oc-guar-headline {
        font-size: 1.5rem !important;
    }
    .oc-guar-nodrama__item {
        font-size: 1.05rem !important;
        padding: 0 16px !important;
    }
}

/* ---- Guarantee section fixes ---- */
/* 1. Bigger RISK-FREE eyebrow */
.oc-guar-eyebrow {
    font-size: 1.05rem !important;
    letter-spacing: 0.26em !important;
    padding: 12px 32px !important;
    border-width: 1.5px !important;
}

/* 2. Fix overlap: add top margin on condition block */
.oc-guar-condition {
    margin-top: 20px !important;
}

/* 3. Widen card by 20%: 640 * 1.2 = 768px */
.oc-guar-card {
    max-width: 768px !important;
}

/* ============================================================
   SECTION 13 · THE WINDOW IS OPEN
   ============================================================ */

.oc-window-section {
    position: relative;
    padding: 120px 0 130px;
    background: linear-gradient(160deg, #07040f 0%, #0b0820 35%, #06091a 65%, #05080e 100%) !important;
    overflow: hidden;
}

/* Double-glow radial — left (indigo) + right (emerald) */
.oc-window-section::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -10%;
    width: 55%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.16) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.oc-window-section::after {
    content: '';
    position: absolute;
    top: 35%;
    right: -10%;
    width: 50%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(16,185,129,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.oc-bg-icons--window {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.oc-win-container {
    position: relative;
    z-index: 2;
}

/* ---- Eyebrow ---- */
.oc-win-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #a5b4fc;
    background: rgba(99,102,241,0.10);
    border: 1px solid rgba(99,102,241,0.28);
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ---- Headline ---- */
.oc-win-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.18;
    margin-bottom: 60px;
}
.oc-win-headline--accent {
    background: linear-gradient(90deg, #818cf8 0%, #a78bfa 45%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Split layout ---- */
.oc-win-split {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 860px;
    margin: 0 auto 64px;
}

/* ---- Cards ---- */
.oc-win-card {
    flex: 1;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oc-win-card--now {
    background: linear-gradient(150deg, rgba(20,24,60,0.95) 0%, rgba(14,18,46,0.98) 100%);
    border: 1.5px solid rgba(99,102,241,0.35);
    box-shadow: 0 0 32px rgba(99,102,241,0.14), 0 8px 32px rgba(0,0,0,0.4);
}
.oc-win-card--later {
    background: linear-gradient(150deg, rgba(14,12,22,0.95) 0%, rgba(10,9,18,0.98) 100%);
    border: 1.5px solid rgba(100,100,120,0.22);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Badge */
.oc-win-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 5px 14px;
    border-radius: 100px;
    width: fit-content;
}
.oc-win-card__badge--now {
    background: rgba(99,102,241,0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99,102,241,0.30);
}
.oc-win-card__badge--now i { color: #22c55e; }

.oc-win-card__badge--later {
    background: rgba(100,100,120,0.12);
    color: #64748b;
    border: 1px solid rgba(100,100,120,0.20);
}
.oc-win-card__badge--later i { color: #f59e0b; }

/* Items */
.oc-win-card__items {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
}

.oc-win-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.96rem;
}
.oc-win-item i {
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.oc-win-item--pos {
    color: #cbd5e1;
}
.oc-win-item--pos i { color: #818cf8; }
.oc-win-item--pos strong { color: #e2e8f0; }

.oc-win-item--neg {
    color: #64748b;
}
.oc-win-item--neg i { color: #475569; }
.oc-win-item--neg strong { color: #64748b; }

/* Footer */
.oc-win-card__foot {
    font-size: 0.78rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.04em;
    padding-top: 12px;
    border-top: 1px solid rgba(99,102,241,0.12);
}
.oc-win-card__foot--now { color: #34d399; }
.oc-win-card__foot--later { color: #475569; }

/* ---- Arrow divider ---- */
.oc-win-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 6px;
    flex-shrink: 0;
}
.oc-win-arrow__line {
    width: 1px;
    flex: 1;
    max-height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.30), transparent);
}
.oc-win-arrow__icon {
    font-size: 1.4rem;
    color: #6366f1;
    opacity: 0.5;
}

/* ---- Closing callout ---- */
.oc-win-callout {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.oc-win-callout__rule {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
}
.oc-win-callout__line {
    font-size: 1.0rem;
    color: #64748b;
    font-style: italic;
    margin: 0;
}
.oc-win-callout__statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.25;
    margin: 0;
}
.oc-win-callout--accent {
    background: linear-gradient(90deg, #818cf8 0%, #a78bfa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .oc-win-split {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .oc-win-arrow {
        flex-direction: row !important;
        padding: 0 !important;
        justify-content: center !important;
    }
    .oc-win-arrow__line {
        width: 60px !important;
        height: 1px !important;
        max-height: none !important;
        flex: 0 0 60px !important;
    }
    .oc-win-arrow__icon {
        transform: rotate(90deg);
    }
}

/* ---- Window section: bigger cards + icon boxes + bg pattern ---- */

/* Background diagonal-line pattern */
.oc-window-section {
    background-image:
        repeating-linear-gradient(
            -48deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px,
            transparent 32px
        ) !important;
}

/* Wider split, bigger cards */
.oc-win-split {
    max-width: 1000px !important;
    gap: 0 !important;
}

.oc-win-card {
    padding: 40px 36px 36px !important;
    gap: 26px !important;
}

/* Bigger item text */
.oc-win-item {
    font-size: 1.08rem !important;
    gap: 16px !important;
}

/* Icon box */
.oc-win-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 1.3rem;
}

/* Bigger gap between items */
.oc-win-card__items {
    gap: 18px !important;
}

/* Footer spacing */
.oc-win-card__foot {
    font-size: 0.85rem !important;
    padding-top: 16px !important;
}

/* ---- Window section: grid pattern + lighter background ---- */
.oc-window-section {
    background: linear-gradient(160deg, #0f0c22 0%, #141030 35%, #0e1228 65%, #0b0e1e 100%) !important;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) !important;
    background-size: auto, auto, 44px 44px !important;
}

/* ---- Window section: grid via pseudo-element (avoids background shorthand conflict) ---- */
.oc-window-section {
    background: linear-gradient(160deg, #0f0c22 0%, #141030 35%, #0e1228 65%, #0b0e1e 100%) !important;
}
.oc-window-section > .oc-win-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.048) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.048) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

/* ---- Window section: lighter grid lines ---- */
.oc-win-grid-overlay {
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px) !important;
}

/* ============================================================
   SECTION 14 · FINAL DECISION (light theme)
   ============================================================ */

.oc-final-section {
    position: relative;
    padding: 120px 0 130px;
    background: linear-gradient(160deg, #f7f5ff 0%, #eef2ff 28%, #fdf4ff 55%, #ecfdf5 80%, #f7f5ff 100%);
    overflow: hidden;
}

/* Subtle grid overlay */
.oc-final-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

.oc-bg-icons--final {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.oc-final-container {
    position: relative;
    z-index: 2;
}

/* Floating UI cards positioning */
.oc-fd-fc--1 {
    position: absolute;
    top: 220px;
    left: -20px;
    background: #fff !important;
    border-color: rgba(99,102,241,0.20) !important;
    box-shadow: 0 4px 20px rgba(99,102,241,0.12) !important;
}
.oc-fd-fc--2 {
    position: absolute;
    top: 310px;
    right: -10px;
    background: #fff !important;
    border-color: rgba(16,185,129,0.20) !important;
    box-shadow: 0 4px 20px rgba(16,185,129,0.12) !important;
}
.oc-fd-fc .oc-pf-card__title { color: #1e1b4b !important; }
.oc-fd-fc .oc-pf-card__sub   { color: #64748b !important; }

/* ---- Eyebrow ---- */
.oc-final-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #6366f1;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.22);
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ---- Headline ---- */
.oc-final-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    color: #0f0c22;
    line-height: 1.1;
    margin-bottom: 52px;
}

/* ---- Split layout ---- */
.oc-fd-split {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 64px;
}

/* ---- Path cards ---- */
.oc-fd-path {
    flex: 1;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.oc-fd-path--passive {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.oc-fd-path--active {
    background: #fff;
    border: 1.5px solid rgba(99,102,241,0.30);
    box-shadow: 0 0 0 1px rgba(139,92,246,0.12), 0 8px 40px rgba(99,102,241,0.14), 0 2px 8px rgba(0,0,0,0.04);
}

/* Path label */
.oc-fd-path__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 100px;
    width: fit-content;
}
.oc-fd-path__label--passive {
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
}
.oc-fd-path__label--passive i { color: #f87171; }

.oc-fd-path__label--active {
    background: rgba(99,102,241,0.08);
    color: #6366f1;
    border: 1px solid rgba(99,102,241,0.20);
}
.oc-fd-path__label--active i { color: #10b981; }

/* Items */
.oc-fd-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.oc-fd-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.97rem;
}

.oc-fd-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.oc-fd-item--passive {
    color: #94a3b8;
}
.oc-fd-item--passive strong { color: #94a3b8; }

.oc-fd-item--active {
    color: #374151;
}
.oc-fd-item--active strong { color: #111827; }

/* OR divider */
.oc-fd-or {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 60px;
}
.oc-fd-or__line {
    width: 1px;
    flex: 1;
    max-height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.25), transparent);
}
.oc-fd-or__text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
    white-space: nowrap;
}

/* ---- Closing statement ---- */
.oc-fd-closing {
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.oc-fd-closing__line {
    font-size: 1.05rem;
    color: #475569;
    margin: 0;
}
.oc-fd-closing__line strong { color: #0f0c22; }

.oc-fd-closing__statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #0f0c22;
    line-height: 1.2;
    margin: 8px 0 24px;
}
.oc-fd-closing--accent {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- CTA button ---- */
.oc-fd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5b5ef5 0%, #7c3aed 50%, #6d28d9 100%);
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.01em;
    animation: oc-btn-pulse 2.8s ease-in-out infinite;
    margin-bottom: 16px;
    transition: transform 0.2s;
}
.oc-fd-cta-btn:hover {
    transform: translateY(-2px);
    color: #fff !important;
}
.oc-fd-cta-btn i { font-size: 1.1rem; }

/* Sub-text below button */
.oc-fd-cta-sub {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .oc-fd-split {
        flex-direction: column !important;
        gap: 16px !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }
    .oc-fd-path {
        width: 100% !important;
        flex: none !important;
    }
    .oc-fd-or {
        flex-direction: row !important;
        padding: 0 !important;
        padding-top: 0 !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .oc-fd-or__line {
        flex: 0 0 50px !important;
        width: 50px !important;
        height: 1px !important;
        max-height: none !important;
    }
    .oc-fd-fc--1, .oc-fd-fc--2 { display: none !important; }
}

/* ---- Final section: fix float card positions ---- */
.oc-fd-fc--1 {
    top: 260px !important;
    left: 24px !important;
}
.oc-fd-fc--2 {
    top: 360px !important;
    right: 24px !important;
    left: auto !important;
}

/* ============================================================
   SECTION · FAQ  (light theme)
   ============================================================ */

.oc-faq-section {
    padding: 110px 0 130px;
    background:
        radial-gradient(ellipse 80% 55% at 0%   0%,   rgba(99,102,241,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 65% 55% at 100% 0%,   rgba(236,72,153,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 50% 100%,  rgba(16,185,129,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 80%  50%,  rgba(245,158,11,0.08) 0%, transparent 55%),
        #eef2ff;
    position: relative;
    overflow: hidden;
}

/* Animated top band */
.oc-faq-topband {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f97316, #10b981, #06b6d4, #6366f1);
    background-size: 300% 100%;
    animation: oc-ob-topband 6s linear infinite;
}

/* Dot pattern */
.oc-faq-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(99,102,241,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.55;
}

/* Header */
.oc-faq-header { margin-bottom: 60px; }

.oc-eyebrow-faq {
    background: rgba(99,102,241,0.1);
    color: #4f46e5;
    border: 1px solid rgba(99,102,241,0.22);
}

.oc-faq-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 16px 0 14px;
}
.oc-faq-hl {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oc-faq-sub {
    font-size: 1.08rem;
    color: #475569;
    margin-bottom: 0;
}

/* Accordion list */
.oc-faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* FAQ item — card style */
.oc-faq-item {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid rgba(99,102,241,0.12);
    box-shadow: 0 2px 12px rgba(99,102,241,0.07), 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    position: relative;
}
.oc-faq-item:hover {
    box-shadow: 0 6px 28px rgba(99,102,241,0.13), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

/* Coloured left-edge accent per item */
.oc-faq-item:nth-child(1) { --faq-accent: #6366f1; }
.oc-faq-item:nth-child(2) { --faq-accent: #8b5cf6; }
.oc-faq-item:nth-child(3) { --faq-accent: #10b981; }
.oc-faq-item:nth-child(4) { --faq-accent: #f97316; }
.oc-faq-item:nth-child(5) { --faq-accent: #ec4899; }
.oc-faq-item:nth-child(6) { --faq-accent: #06b6d4; }
.oc-faq-item:nth-child(7) { --faq-accent: #f59e0b; }
.oc-faq-item:nth-child(8) { --faq-accent: #f43f5e; }
.oc-faq-item:nth-child(9) { --faq-accent: #3b82f6; }

.oc-faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--faq-accent, #6366f1);
    border-radius: 18px 0 0 18px;
    opacity: 0.35;
    transition: opacity 0.25s, width 0.25s;
}
.oc-faq-item.oc-faq--open::before {
    opacity: 1;
    width: 5px;
}
.oc-faq-item.oc-faq--open {
    border-color: rgba(99,102,241,0.28);
    box-shadow:
        0 8px 40px rgba(99,102,241,0.14),
        0 2px 8px rgba(0,0,0,0.06),
        inset 0 0 0 1px rgba(99,102,241,0.06);
    transform: translateY(-2px);
}

/* Question button */
.oc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 22px 22px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
    border-radius: 18px;
}
.oc-faq-q:hover { background: rgba(99,102,241,0.03); }

.oc-faq-q-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--faq-accent, #6366f1);
    background: color-mix(in srgb, var(--faq-accent, #6366f1) 10%, white);
    border: 1.5px solid color-mix(in srgb, var(--faq-accent, #6366f1) 22%, white);
    border-radius: 8px;
    padding: 4px 9px;
    flex-shrink: 0;
    font-family: 'SF Mono','Fira Code','Fira Mono',monospace;
    transition: background 0.2s;
    min-width: 38px;
    text-align: center;
}
.oc-faq-item.oc-faq--open .oc-faq-q-num {
    background: color-mix(in srgb, var(--faq-accent, #6366f1) 18%, white);
}

.oc-faq-q-text {
    flex: 1;
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    transition: color 0.2s;
}
.oc-faq-item.oc-faq--open .oc-faq-q-text { color: #0f172a; }

.oc-faq-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid color-mix(in srgb, var(--faq-accent, #6366f1) 28%, white);
    background: color-mix(in srgb, var(--faq-accent, #6366f1) 8%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--faq-accent, #6366f1);
    transition: background 0.2s, border-color 0.2s, transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.oc-faq-item.oc-faq--open .oc-faq-icon {
    background: color-mix(in srgb, var(--faq-accent, #6366f1) 16%, white);
    border-color: color-mix(in srgb, var(--faq-accent, #6366f1) 45%, white);
    transform: rotate(180deg);
}
.oc-faq-icon-minus { display: none; }
.oc-faq-item.oc-faq--open .oc-faq-icon-plus  { display: none; }
.oc-faq-item.oc-faq--open .oc-faq-icon-minus { display: block; }

/* Answer panel */
.oc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 22px 0 74px;
}
.oc-faq-item.oc-faq--open .oc-faq-a {
    max-height: 320px;
    padding: 0 22px 26px 74px;
}
.oc-faq-a p {
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.85;
    margin: 0;
    border-top: 1px solid rgba(99,102,241,0.08);
    padding-top: 14px;
}
.oc-faq-a p strong { color: #0f172a; }

/* ============================================================
   FOOTER
   ============================================================ */

.oc-footer {
    background: #06060f;
}

/* ---- Guarantee bar ---- */
.oc-footer-guarantee {
    background: linear-gradient(160deg, #0e0b28 0%, #120e35 50%, #0b0e22 100%);
    border-top: 1px solid rgba(99,102,241,0.20);
    border-bottom: 1px solid rgba(99,102,241,0.12);
    padding: 36px 0;
}

.oc-fg-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.oc-fg-seal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.oc-fg-seal__icon {
    font-size: 2.6rem;
    color: #34d399;
    filter: drop-shadow(0 0 10px rgba(52,211,153,0.4));
}
.oc-fg-seal__days {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
}
.oc-fg-seal__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #34d399;
}

.oc-fg-divider {
    width: 1px;
    height: 60px;
    background: rgba(99,102,241,0.25);
    flex-shrink: 0;
}

.oc-fg-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.0rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
}
.oc-fg-body {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- Footer body ---- */
.oc-footer-body {
    padding: 52px 0 36px;
}

.oc-footer-logo {
    height: 52px;
    opacity: 0.85;
    filter: brightness(0.9);
}

/* ---- Links ---- */
.oc-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 0;
}
.oc-footer-links a {
    color: #64748b;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 4px;
}
.oc-footer-links a:hover { color: #a5b4fc; }
.oc-footer-sep {
    color: #2d3748;
    font-size: 0.8rem;
}

/* ---- Rule ---- */
.oc-footer-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
    margin: 28px 0;
}

/* ---- Disclaimer text ---- */
.oc-footer-disclaimer {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.oc-footer-disclaimer p {
    font-size: 0.74rem;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 14px;
}
.oc-footer-disclaimer p:last-child { margin-bottom: 0; }

/* ---- Copyright ---- */
.oc-footer-copyright {
    text-align: center;
    font-size: 0.78rem;
    color: #374151;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .oc-fg-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .oc-fg-divider { display: none !important; }
    .oc-fg-seal { justify-content: center !important; }
}

/* ============================================================
   NAVBAR — 3-column (countdown | logo | coupon+CTA)
   ============================================================ */

.oc-navbar {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    background: rgba(5, 6, 18, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease !important;
    padding: 0;
}

/* Always keep dark background — transparent state removed so timer stays visible on light sections */
.oc-navbar.oc-nb-transparent {
    background: rgba(5, 6, 18, 0.96) !important;
    border-bottom-color: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.oc-nb-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 44px;
    height: 92px;
    gap: 24px;
}

/* ---- Left: countdown ---- */
.oc-nb-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 0 0 auto;
}
.oc-nb-cd-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.oc-nb-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
}
.oc-nb-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(239,68,68,0.18);
    border: 1px solid rgba(239,68,68,0.45);
    border-radius: 8px;
    padding: 5px 10px 6px;
    min-width: 44px;
    line-height: 1;
}
.oc-nb-cd-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-align: center;
    text-shadow: 0 0 12px rgba(239,68,68,0.8);
}
.oc-nb-cd-sub {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}
.oc-nb-cd-sep {
    color: rgba(239,68,68,0.6);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    flex-shrink: 0;
    line-height: 1;
}

/* ---- Center: logo — exactly centered via grid ---- */
.oc-nb-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.oc-nb-logo {
    height: 65px;
    display: block;
    width: auto;
}

/* ---- Right: coupon + CTA ---- */
.oc-nb-right {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}
.oc-nb-coupon {
    font-size: 0.8rem;
    color: #fbbf24;
    white-space: nowrap;
}
.oc-nb-coupon strong {
    color: #fde68a;
    font-weight: 700;
}
.oc-nb-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    border: 1px solid rgba(139,92,246,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: oc-btn-pulse 2.8s ease-in-out infinite;
}
.oc-nb-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}

/* ---- Responsive: hide coupon text + countdown label on smaller screens ---- */
@media (max-width: 1100px) {
    .oc-nb-coupon { display: none !important; }
}
@media (max-width: 860px) {
    .oc-nb-cd-label { display: none !important; }
    .oc-nb-cd-num { font-size: 1.05rem !important; }
    .oc-nb-cta { font-size: 0.65rem !important; padding: 8px 12px !important; }
    .oc-nb-inner { padding: 0 24px !important; gap: 16px !important; }
    .oc-nb-logo { height: 52px !important; }
}
@media (max-width: 700px) {
    .oc-nb-inner { padding: 0 14px !important; gap: 10px !important; height: 78px !important; }
    .oc-nb-logo  { height: 44px !important; }
    .oc-nb-cta   { font-size: 0.6rem !important; padding: 7px 10px !important; }
    .oc-nb-cd-unit { min-width: 36px !important; padding: 4px 7px !important; }
    .oc-nb-cd-num  { font-size: 1rem !important; }
}
@media (max-width: 600px) {
    .oc-nb-left { display: none !important; }
    .oc-nb-inner { grid-template-columns: auto 1fr !important; }
    .oc-nb-logo { height: 42px !important; }
    .oc-nb-cta  { font-size: 0.6rem !important; padding: 7px 10px !important; white-space: nowrap; }
}
@media (max-width: 400px) {
    .oc-nb-logo { height: 34px !important; }
    .oc-nb-cta  { font-size: 0.55rem !important; padding: 6px 8px !important; }
}

/* ---- Navbar scroll: semi-transparent (not fully transparent) ---- */
.oc-navbar.oc-nb-transparent {
    background: rgba(5, 6, 18, 0.55) !important;
    border-bottom-color: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

/* ============================================================
   RESPONSIVE FIXES — full audit pass
   ============================================================ */

/* Fix 1: HUD bar text/tag wrapping on mobile */
.oc-vsl-hud-text,
.oc-vsl-hud-tag { white-space: nowrap; }

/* Fix 2: "18 months will move fast." — stop mid-sentence wrap on mobile */
@media (max-width: 575px) {
    .oc-et-content { flex-wrap: nowrap; align-items: baseline; gap: 8px; }
    .oc-et-num { font-size: clamp(2rem, 12vw, 3rem); }
    .oc-et-unit { font-size: clamp(1rem, 5vw, 1.4rem); }
    .oc-et-pre, .oc-et-suffix { font-size: 0.9rem; }
}

/* Fix 3: Danger section floating cards overlap heading at ~1024px */
@media (max-width: 1100px) {
    .oc-dfl-card--ai   { display: none; }
    .oc-dfl-card--save { display: none; }
    .oc-dfl-card--spend { display: none; }
}

/* Fix 4: "Yes! Get Instant Access for $27" button wraps on mobile */
@media (max-width: 575px) {
    .oc-pc-cta-btn { font-size: 1rem !important; padding: 18px 20px !important; }
}

/* Fix 8: Pricing headline 3-line wrap on small mobile */
@media (max-width: 480px) {
    .oc-pricing-headline { font-size: 1.75rem; }
}

/* ============================================================
   MOBILE SECTION PADDING REDUCTION
   Reduces excessive vertical gaps throughout the page on mobile
   ============================================================ */
@media (max-width: 767px) {
    /* Sections with explicit mobile overrides — tighten further */
    .oc-pacino-section  { padding: 56px 0 50px !important; }
    .oc-rank-section    { padding: 56px 0 50px !important; }
    .oc-shift-section   { padding: 56px 0 56px !important; }
    .oc-danger-section  { padding: 56px 0 48px !important; }
    .oc-exec-section    { padding: 56px 0 48px !important; }
    .oc-shift2-section  { padding: 56px 0 50px !important; }
    .oc-offer-section   { padding: 56px 0 56px !important; }
    .oc-closing-section { padding: 56px 0 56px !important; }

    /* Sections without mobile overrides — add them */
    .oc-guarantee-section { padding: 56px 0 56px !important; }
    .oc-window-section    { padding: 56px 0 56px !important; }
    .oc-final-section     { padding: 56px 0 60px !important; }

    /* Proof section — no top padding (Jensen Huang banner is first element, provides its own spacing) */
    .oc-proof-section   { padding-top: 0 !important; padding-bottom: 56px !important; }

    /* Ideas section */
    .oc-ideas-section   { padding: 56px 0 50px !important; }

    /* Pricing — preserve bottom space for trust floats */
    .oc-pricing-section { padding-top: 56px !important; }

    /* Internal spacing tightening */
    .oc-quote-banner    { margin-bottom: 40px !important; }
    .oc-proof-closer    { margin-top: 48px !important; }
    .oc-ideas-header    { margin-bottom: 36px !important; }
    .oc-rank-header     { margin-bottom: 32px !important; }
    .oc-exec-header     { margin-bottom: 28px !important; }
    .oc-s2-header       { margin-bottom: 32px !important; }
    .oc-s2-story        { margin-bottom: 36px !important; }
}

/* ================================================
   PRICING — value badge highlight + Component 4 fix
   ================================================ */

/* Title row: name left, value pill right */
.oc-pcg-title-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}
.oc-pcg-title-row .oc-pcg-title {
    margin: 0 !important;
}

/* Value badge: pill with green tint, sits right of title */
.oc-pcg-value {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: rgba(16,185,129,0.10) !important;
    border: 1px solid rgba(16,185,129,0.28) !important;
    border-radius: 20px !important;
    padding: 3px 10px 3px 8px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}
.oc-pcg-value::before {
    content: '🏷️';
    font-size: 0.7rem;
}
.oc-pcg-value span {
    color: #059669 !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
}

/* Sub-description line under bold name */
.oc-pcg-li-sub {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
    margin-top: 2px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* ================================================
   PRICING — wider card, narrower testimonial
   ================================================ */

/* Layout: centered, wide enough for card + testi */
.oc-pricing-layout {
    max-width: 1280px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 32px !important;
}

/* Pricing card: flex grow to fill remaining space */
.oc-pricing-card-wrap {
    flex: 1 1 0 !important;
    max-width: unset !important;
}

/* Testimonial column: fixed at 480px (–30% from equal split) */
.oc-testi-right-area {
    flex: 0 0 480px !important;
}

/* ≤1399px: shrink testi proportionally */
@media (max-width: 1399px) {
    .oc-pricing-layout   { max-width: 1100px !important; }
    .oc-testi-right-area { flex: 0 0 360px !important; }
}

/* ── CTA Floating Testimonials ───────────────────────────────────── */
.oc-cta-floats-wrapper {
    position: relative; /* anchor for the absolute float cards */
}

/* Absolutely positioned — zero impact on CTA size */
.oc-cta-float {
    position: absolute;
    width: 242px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.oc-cta-float--left  { left:  0; }
.oc-cta-float--right { right: 0; }

/* Screenshot card animations */
.oc-cta-float-card {
    position: relative;
    animation: oc-testi-float 4s ease-in-out infinite;
}

.oc-cta-float--right .oc-cta-float-card {
    animation-name: oc-testi-float-r;
    animation-delay: -2s;
}

@keyframes oc-testi-float {
    0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
    50%       { transform: translateY(-10px) rotate(1deg); }
}

@keyframes oc-testi-float-r {
    0%, 100% { transform: translateY(0px) rotate(1.5deg); }
    50%       { transform: translateY(-10px) rotate(-1deg); }
}

/* ── Pricing layout — 40% width ── */
.oc-pricing-layout {
    max-width: 40% !important;
    width: 40% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
}
@media (max-width: 1199px) {
    .oc-pricing-layout { max-width: 60% !important; width: 60% !important; }
}
@media (max-width: 767px) {
    .oc-pricing-layout { max-width: 100% !important; width: 100% !important; }
}

/* ── No Thanks button ── */
.oc-no-thanks-btn {
    display: inline-block;
    color: #475569;
    font-size: 1.31rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 1;
    transition: opacity 0.2s, color 0.2s;
    cursor: pointer;
    margin-top: 12px;
}
.oc-no-thanks-btn:hover {
    opacity: 1;
    color: #64748b;
}

.oc-cta-testi-img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
}

/* Animated emoji badges */
.oc-cta-float-emoji {
    position: absolute;
    font-size: 30px;
    line-height: 1;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    pointer-events: none;
    z-index: 2;
    animation: oc-emoji-bounce 2.2s ease-in-out infinite;
}

.oc-cta-float--left  .oc-cta-float-emoji { top: -18px; right: -14px; animation-delay: 0s; }
.oc-cta-float--right .oc-cta-float-emoji { top: -18px; left:  -14px; animation-delay: 0.6s; }

.oc-cta-float-emoji2 {
    position: absolute;
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.20));
    pointer-events: none;
    z-index: 2;
    animation: oc-emoji-bounce 2.8s ease-in-out infinite;
}

.oc-cta-float--left  .oc-cta-float-emoji2 { bottom: -14px; left:  -10px; animation-delay: 0.4s; }
.oc-cta-float--right .oc-cta-float-emoji2 { bottom: -14px; right: -10px; animation-delay: 1s; }

@keyframes oc-emoji-bounce {
    0%, 100% { transform: translateY(0) scale(1)    rotate(-8deg); }
    40%       { transform: translateY(-9px) scale(1.15) rotate(8deg);  }
    70%       { transform: translateY(-4px) scale(1.05) rotate(-4deg); }
}

/* Small desktop (1100px–1249px): shrink cards to fit side space */
@media (max-width: 1249px) {
    .oc-cta-float { width: 175px; }
}

/* Tablet & mobile (≤1099px): static row below guarantee cards */
@media (max-width: 1099px) {
    .oc-cta-float {
        position: static;
        transform: none;
        flex: 1;
        width: auto;
        min-width: 140px;
        max-width: 210px;
        order: 10;
    }
    .oc-cta-floats-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .oc-cta-floats-wrapper > .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        order: 0;
    }
    .oc-cta-float-card { width: 100%; }
}

@media (max-width: 480px) {
    .oc-cta-float { max-width: 155px; }
}

/* ================================================
   MOBILE RESPONSIVENESS — Global Fixes (≤767px)
   ================================================ */

/* 1. Kill horizontal overflow from decorative glows/blobs */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
.oc-glow, .oc-tw-blob, .oc-pacino-glow, .oc-shift-glow,
.oc-bg-icons, .oc-bgi, .oc-faq-topband, .oc-faq-float {
    pointer-events: none;
}

@media (max-width: 767px) {

    /* ── Contain all sections ── */
    section, .oc-hero, .oc-shift2-section, .oc-rank-section,
    .oc-shift-section, .oc-danger-section, .oc-exec-section,
    .oc-pricing-section, .oc-guarantee-section, .oc-faq-section,
    .oc-testi-section, .oc-demo-section, .oc-cta-section {
        overflow-x: hidden;
    }

    /* ── Hide large decorative blobs that cause overflow ── */
    .oc-glow, .oc-tw-blob, .oc-pacino-glow, .oc-shift-glow {
        display: none !important;
    }

    /* ── Order progress bar ── */
    .oc-ob-steps {
        gap: 4px;
        padding: 8px 10px;
    }
    .oc-ob-step {
        font-size: 0.68rem;
        padding: 6px 10px;
        gap: 4px;
    }
    .oc-ob-step-icon { width: 18px; height: 18px; font-size: 0.7rem; }
    .oc-ob-sep { display: none; }
    .oc-ob-warning { font-size: 0.72rem; padding: 8px 12px; }

    /* ── Hero section ── */
    .oc-hero { padding: 40px 0 50px; }
    .oc-hero-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .oc-hero-subheadline { font-size: 1rem; }
    .oc-hero-badge { font-size: 0.8rem; padding: 6px 14px; }
    .oc-hero-vsl-wrap { margin-top: 32px; }
    .oc-hero-capsules { gap: 8px; }
    .oc-hero-capsule { font-size: 0.75rem; padding: 6px 12px; }

    /* ── CTA / buy section ── */
    .oc-cta-section { padding: 60px 0; }
    .oc-cta-headline { font-size: clamp(1.6rem, 6vw, 2rem); }
    .oc-cta-sub { font-size: 0.82rem; }
    .oc-cta-btn { font-size: 1rem; padding: 16px 24px; }
    .oc-hero-social-proof { flex-direction: column; align-items: center; gap: 8px; }

    /* ── Proof section ── */
    .oc-proof-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }
    .oc-proof-single img { width: 90% !important; }

    /* ── Stats strip — 2×2 grid, centred, no bottom gap ── */
    .oc-proof-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 32px 20px 32px !important;
        margin-bottom: 0 !important;
    }
    .oc-proof-stat {
        padding: 20px 10px;
        text-align: center !important;
        align-items: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .oc-proof-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
    .oc-ps-num { font-size: 2rem !important; text-align: center !important; }
    .oc-ps-lbl { font-size: 0.65rem !important; text-align: center !important; white-space: nowrap; }
    /* Remove section bottom padding so no white gap shows */
    .oc-shift2-section { padding-bottom: 0 !important; }

    /* ── Niche cards ── */
    .oc-niche-grid { padding: 0; }
    .oc-niche-card { padding: 24px 20px; }

    /* ── 18-months section ── */
    .oc-18m-row { flex-direction: column; }
    .oc-18m-headline { font-size: clamp(1.5rem, 6vw, 2rem); }
    .oc-18m-img { max-width: 100% !important; }

    /* ── How this works — 3 step cards ── */
    .oc-hw-cols { gap: 16px; }
    .oc-hw-col { padding: 32px 20px 28px; }
    .oc-hw-headline { font-size: clamp(1.3rem, 5vw, 1.8rem); }

    /* ── Rebrand / dashboard section ── */
    .oc-rebrand-headline { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .oc-rebrand-imgs { gap: 16px; }

    /* ── Pricing card ── */
    .oc-pricing-layout {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 16px;
    }
    .oc-pricing-card { border-radius: 16px; }
    .oc-pcg-head { flex-direction: column; gap: 10px; }
    .oc-pcg-vbadge { top: 12px; right: 12px; }
    .oc-pcpb-was-price, .oc-pcpb-now-price { font-size: 1.4rem; }
    .oc-pc-price-block { padding: 24px 16px; }

    /* ── Guarantee section ── */
    .oc-guarantee-section .row { gap: 24px; }

    /* ── FAQ ── */
    .oc-faq-section { padding: 60px 0 40px; }
    .oc-faq-headline { font-size: clamp(1.6rem, 6vw, 2rem); }
    .oc-faq-q { font-size: 0.9rem; padding: 16px 14px; }
    .oc-faq-q-num { font-size: 0.75rem; min-width: 28px; }
    .oc-no-thanks-btn { font-size: 1rem !important; }

    /* ── Floating background icons — hide on mobile ── */
    .oc-bgi { display: none !important; }

    /* ── Section headings global scale ── */
    .oc-rank-headline, .oc-18m-headline { font-size: clamp(1.4rem, 5.5vw, 2rem); }

    /* ── Demo/VSL section ── */
    .oc-demo-section .oc-vsl-glow-wrap { border-radius: 12px; }

    /* ── Testimonial section ── */
    .oc-testi-section .row { gap: 32px; }

    /* ── Footer ── */
    .oc-footer-links { flex-wrap: wrap; gap: 12px; justify-content: center; }
    .oc-footer-copy { font-size: 0.78rem; text-align: center; }

    /* ── Header message — tighten line spacing ── */
    .oc-ob-message {
        padding: 8px 12px;
        gap: 4px;
        row-gap: 2px;
        line-height: 1.2;
    }
    .oc-ob-warning { font-size: 0.75rem; }
    .oc-ob-sep { display: none; }
    .oc-ob-congrats { font-size: 0.82rem; }

    /* ── Platform icons — prevent cropping ── */
    .oc-platform-strip { padding: 36px 12px; overflow: hidden; }
    .oc-platform-icons {
        gap: 8px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .oc-platform-icons .bi {
        font-size: 1.5rem !important;
        padding: 10px !important;
        flex-shrink: 0 !important;
        width: auto !important;
    }

    /* ── Stats strip — remove bottom padding, fix text alignment ── */
    .oc-proof-stats {
        padding: 32px 16px 0 !important;
        margin-bottom: 0 !important;
    }
    .oc-proof-stat {
        padding: 16px 8px 16px !important;
        text-align: center;
    }
    .oc-ps-lbl {
        white-space: nowrap;
        font-size: 0.65rem !important;
        letter-spacing: 0.05em;
    }
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL WALL SECTION  (test21–24)  — ENERGETIC REDESIGN
   ══════════════════════════════════════════════════════════════ */

/* ── Gold Rush section (replaces first testi-wall) ── */
/* ── Platform strip ── */
.oc-platform-strip {
    background: linear-gradient(135deg, #0d1464 0%, #1a2a9e 50%, #1e3bcc 100%);
    padding: 48px 24px;
    text-align: center;
}

.oc-platform-strip-text {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.25;
}

.oc-platform-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 60px);
}

.oc-platform-icons .bi {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-radius: 20%;
    padding: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oc-goldrush-section {
    background: #000;
    padding: 80px 0 90px;
    color: #fff;
}

.oc-gr-header {
    margin-bottom: 48px;
}

.oc-gr-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.oc-gr-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: #fff;
    margin-bottom: 0;
}

.oc-gr-copy {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.5;
    color: #e2e8f0;
}

.oc-gr-copy p {
    margin-bottom: 1rem;
}

.oc-gr-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.oc-gr-img {
    width: 100%;
    max-width: 540px;
    border-radius: 12px;
    display: block;
}

.oc-gr-sig {
    max-width: 260px;
    display: block;
}

.oc-gr-row {
    gap: 40px 0;
}

@media (max-width: 991px) {
    .oc-gr-visual { margin-top: 40px; }
}

.oc-testi-wall {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #13001f 0%, #1b0038 25%, #0d1b3e 60%, #001228 100%);
    overflow: hidden;
}

/* Background pattern — diagonal grid + dot layer */
.oc-testi-wall::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 52px 52px, 52px 52px, 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Coloured glow blobs */
.oc-tw-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}
.oc-tw-blob--1 { width:500px; height:500px; top:-120px; left:-100px;  background: #7c3aed; }
.oc-tw-blob--2 { width:400px; height:400px; top:-80px;  right:-80px;  background: #db2777; }
.oc-tw-blob--3 { width:350px; height:350px; bottom:-60px; left:30%;   background: #0ea5e9; }
.oc-tw-blob--4 { width:300px; height:300px; bottom:0;   right:-60px;  background: #f59e0b; opacity:0.22; }

.oc-tw-inner { position: relative; z-index: 2; }

/* ─── Section Header ─── */
.oc-tw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.35);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 22px;
}

.oc-tw-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.oc-tw-headline .grad1 {
    background: linear-gradient(90deg, #fbbf24 0%, #f472b6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-tw-body-row {
    margin-top: 48px;
    gap: 40px 0;
}

.oc-tw-copy {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.oc-tw-copy p {
    margin-bottom: 1rem;
}

.oc-tw-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.oc-tw-chad-img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    display: block;
}

.oc-tw-sign-img {
    max-width: 260px;
    display: block;
}

@media (max-width: 991px) {
    .oc-tw-visual { margin-top: 32px; }
}

.oc-tw-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ─── 2×2 Grid ─── */
.oc-tw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 48px;
    margin-top: 56px;
}

/* ─── Card base ─── */
.oc-tw-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: visible;
    position: relative;
    z-index: 1;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

/* Alternating slight tilts for energy */
.oc-tw-card--1 { transform: rotate(-1.5deg); }
.oc-tw-card--2 { transform: rotate(1deg); }
.oc-tw-card--3 { transform: rotate(1.5deg); }
.oc-tw-card--4 { transform: rotate(-1deg); }

.oc-tw-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
    box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}

/* ─── Gradient header band ─── */
.oc-tw-band {
    border-radius: 24px 24px 0 0;
    padding: 24px 24px 20px;
    position: relative;
    overflow: hidden;
}

.oc-tw-card--1 .oc-tw-band { background: linear-gradient(135deg, #ff6b35 0%, #f7c948 100%); }
.oc-tw-card--2 .oc-tw-band { background: linear-gradient(135deg, #6c63ff 0%, #f50057 100%); }
.oc-tw-card--3 .oc-tw-band { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); }
.oc-tw-card--4 .oc-tw-band { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

/* Subtle shine inside band */
.oc-tw-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 55%);
    pointer-events: none;
}

/* Top row: stars + verified */
.oc-tw-band-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
}

.oc-tw-stars {
    font-size: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.oc-tw-verified {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    padding: 4px 10px;
}

/* Big emoji in band — hidden */
.oc-tw-band-emoji { display: none; }

/* Quote text in band */
.oc-tw-quote {
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    position: relative;
}

/* ─── Screenshot body ─── */
.oc-tw-body {
    background: #ffffff;
    padding: 18px 20px 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.oc-tw-img {
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

/* ─── Reactions bar ─── */
.oc-tw-reactions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px 16px;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    border-radius: 0 0 24px 24px;
}

.oc-tw-reactions span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #64748b;
}

.oc-tw-reactions span strong {
    color: #1e293b;
    font-weight: 700;
}

.oc-tw-react-label {
    margin-left: auto;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8 !important;
}

/* ─── Floating emojis around cards ─── */
.oc-tw-float {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    font-size: 1.6rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    line-height: 1;
}

.oc-tw-float.e1 { top: -20px; right: -16px; font-size: 2rem; animation: oc-emoji-bounce 2s   ease-in-out infinite; }
.oc-tw-float.e2 { bottom: 60px; left: -18px; font-size: 1.8rem; animation: oc-emoji-bounce 2.5s ease-in-out infinite; animation-delay: 0.4s; }
.oc-tw-float.e3 { bottom: -18px; right: 30px; font-size: 1.5rem; animation: oc-emoji-bounce 2.2s ease-in-out infinite; animation-delay: 0.8s; }

/* ─── Floating background icons ─── */
.oc-tw-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.oc-tw-bg-icon {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.07;
    animation: oc-tw-drift 8s ease-in-out infinite;
    filter: blur(0.5px);
}
.oc-tw-bg-icon:nth-child(1)  { top: 5%;  left: 3%;   font-size: 4rem;   animation-delay: 0s;    animation-duration: 9s;  }
.oc-tw-bg-icon:nth-child(2)  { top: 15%; right: 5%;  font-size: 5rem;   animation-delay: -2s;   animation-duration: 11s; }
.oc-tw-bg-icon:nth-child(3)  { top: 40%; left: 7%;   font-size: 3rem;   animation-delay: -4s;   animation-duration: 7s;  }
.oc-tw-bg-icon:nth-child(4)  { top: 60%; right: 8%;  font-size: 4.5rem; animation-delay: -1s;   animation-duration: 10s; }
.oc-tw-bg-icon:nth-child(5)  { top: 75%; left: 15%;  font-size: 3.5rem; animation-delay: -3s;   animation-duration: 8s;  }
.oc-tw-bg-icon:nth-child(6)  { top: 85%; right: 18%; font-size: 3rem;   animation-delay: -5s;   animation-duration: 12s; }
.oc-tw-bg-icon:nth-child(7)  { top: 25%; left: 45%;  font-size: 5.5rem; animation-delay: -6s;   animation-duration: 14s; }
.oc-tw-bg-icon:nth-child(8)  { top: 55%; right: 35%; font-size: 2.5rem; animation-delay: -0.5s; animation-duration: 6s;  }
@keyframes oc-tw-drift {
    0%, 100% { transform: translateY(0px) rotate(-5deg) scale(1); }
    50%       { transform: translateY(-20px) rotate(5deg) scale(1.05); }
}

/* ─── Live reaction streams ─── */
.oc-tw-rx {
    position: absolute;
    bottom: 40%;
    z-index: 0;
    width: 60px;
    pointer-events: none;
}
.oc-tw-rx--left  { left: 28px; }
.oc-tw-rx--right { right: 28px; }

.oc-tw-rx span {
    font-size: 2.6rem;
    display: block;
    opacity: 0;
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
    line-height: 1;
}
.oc-tw-rx--left  span { animation: oc-tw-rx-l 5s ease-out infinite; }
.oc-tw-rx--right span { animation: oc-tw-rx-r 5s ease-out infinite; }

/* Stagger + vary sizes */
.oc-tw-rx span:nth-child(1) { animation-delay: 0s;    font-size: 3rem;   }
.oc-tw-rx span:nth-child(2) { animation-delay: 0.8s;  font-size: 2.4rem; }
.oc-tw-rx span:nth-child(3) { animation-delay: 1.6s;  font-size: 2rem;   }
.oc-tw-rx span:nth-child(4) { animation-delay: 2.4s;  font-size: 3.2rem; }
.oc-tw-rx span:nth-child(5) { animation-delay: 3.2s;  font-size: 2.2rem; }
.oc-tw-rx span:nth-child(6) { animation-delay: 4.0s;  font-size: 2.6rem; }

/* Left stream: rises & drifts diagonally inward (toward center = rightward) */
@keyframes oc-tw-rx-l {
    0%   { opacity: 0;   transform: translateY(0)      translateX(0)    scale(0.5); }
    10%  { opacity: 1;   transform: translateY(-40px)   translateX(20px) scale(1.1); }
    60%  { opacity: 0.75; transform: translateY(-220px) translateX(90px) scale(1);   }
    100% { opacity: 0;   transform: translateY(-340px)  translateX(140px) scale(0.7); }
}
/* Right stream: rises & drifts diagonally inward (toward center = leftward) */
@keyframes oc-tw-rx-r {
    0%   { opacity: 0;   transform: translateY(0)      translateX(0)     scale(0.5); }
    10%  { opacity: 1;   transform: translateY(-40px)   translateX(-20px) scale(1.1); }
    60%  { opacity: 0.75; transform: translateY(-220px) translateX(-90px) scale(1);   }
    100% { opacity: 0;   transform: translateY(-340px)  translateX(-140px) scale(0.7); }
}

/* ─── Bottom line — plain text, not CTA ─── */
.oc-tw-bottom { margin-top: 60px; }

.oc-tw-bottom-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    margin: 0;
    letter-spacing: 0.06em;
}

/* ─── Keyframes ─── */
@keyframes oc-tw-wobble {
    0%, 100% { transform: rotate(-8deg) scale(1); }
    40%       { transform: rotate(8deg) scale(1.18); }
    70%       { transform: rotate(-4deg) scale(1.06); }
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .oc-tw-card--1, .oc-tw-card--2,
    .oc-tw-card--3, .oc-tw-card--4 { transform: rotate(0deg); }
}

@media (max-width: 767px) {
    .oc-tw-grid      { grid-template-columns: 1fr; gap: 40px; }
    .oc-testi-wall   { padding: 60px 0 70px; }
    .oc-tw-band      { padding: 20px 18px 16px; }
    .oc-tw-body      { padding: 14px 14px 0; }
    .oc-tw-float.e2  { display: none; }
    .oc-tw-bottom-text { font-size: 0.95rem; padding: 14px 24px; }
}

/* ── Fiverr Screenshot Strip ─────────────────────────────── */
.oc-fiverr-strip {
    border-top: 1px solid rgba(99,102,241,0.14);
    padding: 16px 32px 24px;
    background: rgba(99,102,241,0.03);
    border-radius: 0 0 20px 20px;
}
.oc-fiverr-strip-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
}
.oc-fsl-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 6px #34d399;
    animation: oc-pulse1 2s ease-in-out infinite;
}
.oc-fiverr-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
    width: 100%;
}
.oc-fiverr-scroll--centered {
    justify-content: center;
    overflow-x: visible;
}
.oc-fiverr-scroll--centered .oc-fiverr-img {
    flex: 0 0 auto;
    width: calc(35% - 5px); /* 70% total / 2 images */
}
.oc-fiverr-scroll::-webkit-scrollbar { height: 4px; }
.oc-fiverr-scroll::-webkit-scrollbar-track { background: transparent; }
.oc-fiverr-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.oc-fiverr-img {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}


/* ═══════════════════════════════════════════════════════════════════
   PLATFORM PILLS ROW — Upwork / Fiverr / Freelancer
   ═══════════════════════════════════════════════════════════════════ */

/* Row container — sits below the dashboard window */
.oc-pb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

/* Base pill */
.oc-pb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 7px;
    border-radius: 50px;
    white-space: nowrap;
    border: 1.5px solid rgba(255,255,255,0.22);
    cursor: default;
}

/* Upwork — black with green glow */
.oc-pb--upwork {
    background: linear-gradient(135deg, #111111, #1c1c1c);
    box-shadow: 0 5px 22px rgba(20,168,0,0.32), 0 2px 6px rgba(0,0,0,0.5);
    border-color: rgba(20,168,0,0.4);
}

/* Fiverr — black with teal glow */
.oc-pb--fiverr {
    background: linear-gradient(135deg, #111111, #1c1c1c);
    box-shadow: 0 5px 22px rgba(29,191,115,0.3), 0 2px 6px rgba(0,0,0,0.5);
    border-color: rgba(29,191,115,0.4);
}

/* Freelancer — black with blue glow */
.oc-pb--freelancer {
    background: linear-gradient(135deg, #111111, #1c1c1c);
    box-shadow: 0 5px 22px rgba(41,178,254,0.3), 0 2px 6px rgba(0,0,0,0.5);
    border-color: rgba(41,178,254,0.4);
}

/* Icon circle wrapper */
.oc-pb-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

/* Fiverr gets white bg so green logo is visible */
.oc-pb-icon-wrap--light {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
}

/* Icon image — small and contained */
.oc-pb-img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Text block */
.oc-pb-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.oc-pb-platform {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1;
}

.oc-pb-stat {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1;
}

/* Pulsing live dot */
.oc-pb-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    margin-left: 2px;
    flex-shrink: 0;
    animation: oc-pb-pulse 2s ease-in-out infinite;
}

@keyframes oc-pb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(0.6); }
}

/* Float animations */
@keyframes oc-pb-float-a {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-5px); }
}
@keyframes oc-pb-float-b {
    0%, 100% { transform: translateY(-2px); }
    50%       { transform: translateY(4px); }
}
@keyframes oc-pb-float-c {
    0%, 100% { transform: translateY(0px); }
    40%       { transform: translateY(-6px); }
    70%       { transform: translateY(-1px); }
}


/* ═══════════════════════════════════════════════════════════════════
   PREMIUM DASHBOARD REDESIGN — Glow, Perspective, Logo Bar
   ═══════════════════════════════════════════════════════════════════ */

/* 1 ─ Radial gradient glow behind the dashboard */
.oc-idea-dash::before {
    content: '';
    position: absolute;
    inset: -25%;
    background: radial-gradient(ellipse at 50% 40%,
        rgba(99,102,241,0.18) 0%,
        rgba(139,92,246,0.10) 30%,
        transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: oc-dash-glow-pulse 6s ease-in-out infinite;
}

@keyframes oc-dash-glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.05); }
}

/* 2 ─ Upgraded dashboard window with layered shadows + inner glow */
.oc-dash-window {
    background: rgba(8,15,36,0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 16px !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 0 1px rgba(0,0,0,0.3),
        0 8px 24px -4px rgba(0,0,0,0.35),
        0 32px 80px -16px rgba(99,102,241,0.20) !important;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Subtle lift on card hover */
.oc-idea-card:hover .oc-dash-window {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 0 1px rgba(0,0,0,0.3),
        0 12px 32px -4px rgba(0,0,0,0.4),
        0 40px 100px -20px rgba(99,102,241,0.30) !important;
    transform: translateY(-3px);
}

/* Top-edge gradient highlight on the window */
.oc-dash-window::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(99,102,241,0.4), transparent);
    pointer-events: none;
    z-index: 5;
}

/* 3 ─ Title bar glass refinement */
.oc-dash-titlebar {
    background: rgba(255,255,255,0.04) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* 4 ─ Platform logo bar — replaces pills with a sleek integrated row */
.oc-pb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* Individual logo chip — compact, dark glass */
.oc-pb {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 9px;
    border-radius: 44px;
    background: rgba(15,15,25,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.oc-pb:hover {
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 4px 20px rgba(99,102,241,0.2);
    transform: translateY(-1px);
}

/* Override individual brand colours to unified dark look */
.oc-pb--upwork,
.oc-pb--fiverr,
.oc-pb--freelancer {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

/* Hover glows per brand */
.oc-pb--upwork:hover  { border-color: rgba(20,168,0,0.45) !important; box-shadow: 0 4px 20px rgba(20,168,0,0.25) !important; }
.oc-pb--fiverr:hover  { border-color: rgba(29,191,115,0.45) !important; box-shadow: 0 4px 20px rgba(29,191,115,0.25) !important; }
.oc-pb--freelancer:hover { border-color: rgba(41,178,254,0.45) !important; box-shadow: 0 4px 20px rgba(41,178,254,0.25) !important; }

/* Icon circle */
.oc-pb-icon-wrap {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Fiverr icon circle stays white for contrast */
.oc-pb-icon-wrap--light {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
}

.oc-pb-img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
}

.oc-pb-platform {
    font-size: 0.78rem !important;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

.oc-pb-stat {
    font-size: 0.65rem !important;
    color: rgba(255,255,255,0.55);
}

/* Live dot */
.oc-pb-live {
    width: 6px !important;
    height: 6px !important;
    background: rgba(99,102,241,0.7) !important;
}

/* Ecom platform pills — Amazon, Walmart, Target */
.oc-pb--amazon,
.oc-pb--walmart,
.oc-pb--target {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

.oc-pb--amazon:hover  { border-color: rgba(255,153,0,0.5) !important; box-shadow: 0 4px 20px rgba(255,153,0,0.25) !important; }
.oc-pb--walmart:hover { border-color: rgba(0,113,206,0.5) !important; box-shadow: 0 4px 20px rgba(0,113,206,0.25) !important; }
.oc-pb--target:hover  { border-color: rgba(204,0,0,0.5) !important; box-shadow: 0 4px 20px rgba(204,0,0,0.25) !important; }

.oc-pb-icon-wrap--amazon { background: rgba(255,153,0,0.15) !important; border-color: rgba(255,153,0,0.3) !important; }
.oc-pb-icon-wrap--walmart { background: rgba(0,113,206,0.15) !important; border-color: rgba(0,113,206,0.3) !important; }
.oc-pb-icon-wrap--target { background: rgba(204,0,0,0.15) !important; border-color: rgba(204,0,0,0.3) !important; }

.oc-pb-emoji {
    font-size: 17px;
    line-height: 1;
}

.oc-pb-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Live dot per ecom brand */
.oc-pb--amazon .oc-pb-live  { background: rgba(255,153,0,0.8) !important; }
.oc-pb--walmart .oc-pb-live { background: rgba(0,113,206,0.8) !important; }
.oc-pb--target .oc-pb-live  { background: rgba(204,0,0,0.8) !important; }

/* GMB / Yelp / Local pills */
.oc-pb--gmb,
.oc-pb--yelp,
.oc-pb--gmb-biz {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

.oc-pb--gmb:hover     { border-color: rgba(66,133,244,0.5) !important; box-shadow: 0 4px 20px rgba(66,133,244,0.25) !important; }
.oc-pb--yelp:hover    { border-color: rgba(211,35,35,0.5) !important; box-shadow: 0 4px 20px rgba(211,35,35,0.25) !important; }
.oc-pb--gmb-biz:hover { border-color: rgba(52,168,83,0.5) !important; box-shadow: 0 4px 20px rgba(52,168,83,0.25) !important; }

.oc-pb-icon-wrap--gmb     { background: rgba(66,133,244,0.15) !important; border-color: rgba(66,133,244,0.3) !important; }
.oc-pb-icon-wrap--yelp    { background: rgba(211,35,35,0.15) !important; border-color: rgba(211,35,35,0.3) !important; }
.oc-pb-icon-wrap--gmb-biz { background: rgba(52,168,83,0.15) !important; border-color: rgba(52,168,83,0.3) !important; }

.oc-pb--gmb .oc-pb-live     { background: rgba(66,133,244,0.8) !important; }
.oc-pb--yelp .oc-pb-live    { background: rgba(211,35,35,0.8) !important; }
.oc-pb--gmb-biz .oc-pb-live { background: rgba(52,168,83,0.8) !important; }

/* POD platform pills — Shopify, Printful, Etsy */
.oc-pb--shopify,
.oc-pb--printful,
.oc-pb--etsy {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

.oc-pb--shopify:hover  { border-color: rgba(150,191,48,0.5) !important; box-shadow: 0 4px 20px rgba(150,191,48,0.25) !important; }
.oc-pb--printful:hover { border-color: rgba(236,72,153,0.5) !important; box-shadow: 0 4px 20px rgba(236,72,153,0.25) !important; }
.oc-pb--etsy:hover     { border-color: rgba(241,100,30,0.5) !important; box-shadow: 0 4px 20px rgba(241,100,30,0.25) !important; }

.oc-pb-icon-wrap--shopify  { background: rgba(150,191,48,0.15) !important; border-color: rgba(150,191,48,0.3) !important; }
.oc-pb-icon-wrap--printful { background: rgba(236,72,153,0.15) !important; border-color: rgba(236,72,153,0.3) !important; }
.oc-pb-icon-wrap--etsy     { background: rgba(241,100,30,0.15) !important; border-color: rgba(241,100,30,0.3) !important; }

.oc-pb--shopify .oc-pb-live  { background: rgba(150,191,48,0.8) !important; }
.oc-pb--printful .oc-pb-live { background: rgba(236,72,153,0.8) !important; }
.oc-pb--etsy .oc-pb-live     { background: rgba(241,100,30,0.8) !important; }

/* YouTube / AdSense / VidIQ pills */
.oc-pb--youtube,
.oc-pb--adsense,
.oc-pb--vidiq {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

.oc-pb--youtube:hover { border-color: rgba(255,0,0,0.5) !important; box-shadow: 0 4px 20px rgba(255,0,0,0.25) !important; }
.oc-pb--adsense:hover { border-color: rgba(251,188,4,0.5) !important; box-shadow: 0 4px 20px rgba(251,188,4,0.25) !important; }
.oc-pb--vidiq:hover   { border-color: rgba(99,102,241,0.5) !important; box-shadow: 0 4px 20px rgba(99,102,241,0.25) !important; }

.oc-pb-icon-wrap--youtube { background: rgba(255,0,0,0.15) !important; border-color: rgba(255,0,0,0.3) !important; }
.oc-pb-icon-wrap--adsense { background: rgba(251,188,4,0.15) !important; border-color: rgba(251,188,4,0.3) !important; }
.oc-pb-icon-wrap--vidiq   { background: rgba(99,102,241,0.15) !important; border-color: rgba(99,102,241,0.3) !important; }

.oc-pb--youtube .oc-pb-live { background: rgba(255,0,0,0.8) !important; }
.oc-pb--adsense .oc-pb-live { background: rgba(251,188,4,0.8) !important; }
.oc-pb--vidiq .oc-pb-live   { background: rgba(99,102,241,0.8) !important; }

/* Digital Product pills — Gumroad, Etsy, Payhip */
.oc-pb--gumroad,
.oc-pb--etsy-dp,
.oc-pb--payhip {
    background: rgba(15,15,25,0.85) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

.oc-pb--gumroad:hover { border-color: rgba(255,144,232,0.5) !important; box-shadow: 0 4px 20px rgba(255,144,232,0.25) !important; }
.oc-pb--etsy-dp:hover { border-color: rgba(241,100,30,0.5) !important; box-shadow: 0 4px 20px rgba(241,100,30,0.25) !important; }
.oc-pb--payhip:hover  { border-color: rgba(139,92,246,0.5) !important; box-shadow: 0 4px 20px rgba(139,92,246,0.25) !important; }

.oc-pb-icon-wrap--gumroad { background: rgba(255,144,232,0.15) !important; border-color: rgba(255,144,232,0.3) !important; }
.oc-pb-icon-wrap--etsy-dp { background: rgba(241,100,30,0.15) !important; border-color: rgba(241,100,30,0.3) !important; }
.oc-pb-icon-wrap--payhip  { background: rgba(139,92,246,0.15) !important; border-color: rgba(139,92,246,0.3) !important; }

.oc-pb--gumroad .oc-pb-live { background: rgba(255,144,232,0.8) !important; }
.oc-pb--etsy-dp .oc-pb-live { background: rgba(241,100,30,0.8) !important; }
.oc-pb--payhip .oc-pb-live  { background: rgba(139,92,246,0.8) !important; }

/* Social Media pills — Instagram, Canva, Facebook */
.oc-pb--instagram, .oc-pb--canva, .oc-pb--facebook { background: rgba(15,15,25,0.85) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important; border-color: rgba(255,255,255,0.10) !important; }
.oc-pb--instagram:hover { border-color: rgba(225,48,108,0.5) !important; box-shadow: 0 4px 20px rgba(225,48,108,0.25) !important; }
.oc-pb--canva:hover     { border-color: rgba(0,196,204,0.5) !important; box-shadow: 0 4px 20px rgba(0,196,204,0.25) !important; }
.oc-pb--facebook:hover  { border-color: rgba(66,103,178,0.5) !important; box-shadow: 0 4px 20px rgba(66,103,178,0.25) !important; }
.oc-pb-icon-wrap--instagram { background: rgba(225,48,108,0.15) !important; border-color: rgba(225,48,108,0.3) !important; }
.oc-pb-icon-wrap--canva     { background: rgba(0,196,204,0.15) !important; border-color: rgba(0,196,204,0.3) !important; }
.oc-pb-icon-wrap--facebook  { background: rgba(66,103,178,0.15) !important; border-color: rgba(66,103,178,0.3) !important; }
.oc-pb--instagram .oc-pb-live { background: rgba(225,48,108,0.8) !important; }
.oc-pb--canva .oc-pb-live     { background: rgba(0,196,204,0.8) !important; }
.oc-pb--facebook .oc-pb-live  { background: rgba(66,103,178,0.8) !important; }

/* Cleaning Service pills — TaskRabbit, Thumbtack, FB Ads */
.oc-pb--taskrabbit, .oc-pb--thumbtack, .oc-pb--fbads { background: rgba(15,15,25,0.85) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important; border-color: rgba(255,255,255,0.10) !important; }
.oc-pb--taskrabbit:hover { border-color: rgba(34,197,94,0.5) !important; box-shadow: 0 4px 20px rgba(34,197,94,0.25) !important; }
.oc-pb--thumbtack:hover  { border-color: rgba(0,150,255,0.5) !important; box-shadow: 0 4px 20px rgba(0,150,255,0.25) !important; }
.oc-pb--fbads:hover      { border-color: rgba(66,103,178,0.5) !important; box-shadow: 0 4px 20px rgba(66,103,178,0.25) !important; }
.oc-pb-icon-wrap--taskrabbit { background: rgba(34,197,94,0.15) !important; border-color: rgba(34,197,94,0.3) !important; }
.oc-pb-icon-wrap--thumbtack  { background: rgba(0,150,255,0.15) !important; border-color: rgba(0,150,255,0.3) !important; }
.oc-pb-icon-wrap--fbads      { background: rgba(66,103,178,0.15) !important; border-color: rgba(66,103,178,0.3) !important; }
.oc-pb--taskrabbit .oc-pb-live { background: rgba(34,197,94,0.8) !important; }
.oc-pb--thumbtack .oc-pb-live  { background: rgba(0,150,255,0.8) !important; }
.oc-pb--fbads .oc-pb-live      { background: rgba(66,103,178,0.8) !important; }

/* Notion Template pills — Notion, Gumroad, Twitter */
.oc-pb--notion, .oc-pb--gumroad-n, .oc-pb--twitter { background: rgba(15,15,25,0.85) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important; border-color: rgba(255,255,255,0.10) !important; }
.oc-pb--notion:hover    { border-color: rgba(255,255,255,0.5) !important; box-shadow: 0 4px 20px rgba(255,255,255,0.15) !important; }
.oc-pb--gumroad-n:hover { border-color: rgba(255,144,232,0.5) !important; box-shadow: 0 4px 20px rgba(255,144,232,0.25) !important; }
.oc-pb--twitter:hover   { border-color: rgba(245,158,11,0.5) !important; box-shadow: 0 4px 20px rgba(245,158,11,0.25) !important; }
.oc-pb-icon-wrap--notion    { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.25) !important; }
.oc-pb-icon-wrap--gumroad-n { background: rgba(255,144,232,0.15) !important; border-color: rgba(255,144,232,0.3) !important; }
.oc-pb-icon-wrap--twitter   { background: rgba(245,158,11,0.15) !important; border-color: rgba(245,158,11,0.3) !important; }
.oc-pb--notion .oc-pb-live    { background: rgba(255,255,255,0.6) !important; }
.oc-pb--gumroad-n .oc-pb-live { background: rgba(255,144,232,0.8) !important; }
.oc-pb--twitter .oc-pb-live   { background: rgba(245,158,11,0.8) !important; }

/* Coaching pills — Zoom, Calendly, Stripe */
.oc-pb--zoom, .oc-pb--calendly, .oc-pb--stripe { background: rgba(15,15,25,0.85) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important; border-color: rgba(255,255,255,0.10) !important; }
.oc-pb--zoom:hover     { border-color: rgba(45,140,255,0.5) !important; box-shadow: 0 4px 20px rgba(45,140,255,0.25) !important; }
.oc-pb--calendly:hover { border-color: rgba(0,107,255,0.5) !important; box-shadow: 0 4px 20px rgba(0,107,255,0.25) !important; }
.oc-pb--stripe:hover   { border-color: rgba(99,91,255,0.5) !important; box-shadow: 0 4px 20px rgba(99,91,255,0.25) !important; }
.oc-pb-icon-wrap--zoom     { background: rgba(45,140,255,0.15) !important; border-color: rgba(45,140,255,0.3) !important; }
.oc-pb-icon-wrap--calendly { background: rgba(0,107,255,0.15) !important; border-color: rgba(0,107,255,0.3) !important; }
.oc-pb-icon-wrap--stripe   { background: rgba(99,91,255,0.15) !important; border-color: rgba(99,91,255,0.3) !important; }
.oc-pb--zoom .oc-pb-live     { background: rgba(45,140,255,0.8) !important; }
.oc-pb--calendly .oc-pb-live { background: rgba(0,107,255,0.8) !important; }
.oc-pb--stripe .oc-pb-live   { background: rgba(99,91,255,0.8) !important; }

/* 5 ─ Dashboard column — remove hard border, add gradient fade */
.oc-idea-dash-col {
    border-left: none !important;
    position: relative;
}
.oc-idea-card--flip .oc-idea-dash-col {
    border-right: none !important;
}

/* Soft gradient divider between text and dashboard columns */
.oc-idea-dash-col::before {
    content: '';
    position: absolute;
    top: 15%; bottom: 15%;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(99,102,241,0.2) 30%, rgba(99,102,241,0.2) 70%, transparent);
    pointer-events: none;
}
.oc-idea-card--flip .oc-idea-dash-col::before {
    left: auto;
    right: 0;
}

/* 6 ─ Subtle card accent line upgrade — gradient instead of solid */
.oc-idea-card::after {
    width: 3px !important;
    background: linear-gradient(180deg, transparent, var(--idea-clr, #6366f1) 30%, var(--idea-clr, #6366f1) 70%, transparent) !important;
    opacity: 0.5 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   DASHBOARD COLUMN — Dark gradient bg, dot pattern, glow orbs
   (Only the right half of each idea card)
   ═══════════════════════════════════════════════════════════════════ */

/* Dynamic gradient background on dashboard half — derived from each card's --idea-clr */
.oc-idea-dash-col {
    background:
        radial-gradient(ellipse 70% 60% at 80% 15%, color-mix(in srgb, var(--idea-clr) 30%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 15% 85%, color-mix(in srgb, var(--idea-clr) 18%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 50% 50%, color-mix(in srgb, var(--idea-clr) 10%, transparent) 0%, transparent 50%),
        linear-gradient(145deg,
            color-mix(in srgb, var(--idea-clr) 12%, #0a0a14) 0%,
            color-mix(in srgb, var(--idea-clr) 18%, #0e0e1c) 40%,
            color-mix(in srgb, var(--idea-clr) 10%, #0a0a14) 100%) !important;
    border-left: none !important;
    position: relative;
    overflow: hidden;
}

.oc-idea-card--flip .oc-idea-dash-col {
    border-left: initial !important;
    border-right: none !important;
}

/* Dot pattern overlay */
.oc-idea-dash-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Animated glow orb — top-right corner, uses card accent */
.oc-idea-dash::before {
    content: '' !important;
    position: absolute;
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, color-mix(in srgb, var(--idea-clr) 40%, transparent) 0%, color-mix(in srgb, var(--idea-clr) 15%, transparent) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: oc-orb-drift 8s ease-in-out infinite;
}

/* Second orb — bottom-left, uses card accent */
.oc-idea-dash::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, color-mix(in srgb, var(--idea-clr) 30%, transparent) 0%, color-mix(in srgb, var(--idea-clr) 10%, transparent) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 0;
    pointer-events: none;
    animation: oc-orb-drift 8s ease-in-out infinite 3s;
}

@keyframes oc-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50%       { transform: translate(-15px, 10px) scale(1.15); opacity: 1; }
}

/* Ensure dashboard window sits above the bg effects */
.oc-dash-window {
    position: relative !important;
    z-index: 2 !important;
}

/* Platform pills row — sits above bg */
.oc-pb-row {
    position: relative;
    z-index: 2;
}

/* Soft edge glow line — uses card accent */
.oc-idea-dash-col::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 5%,
        color-mix(in srgb, var(--idea-clr) 40%, transparent) 30%,
        color-mix(in srgb, var(--idea-clr) 30%, transparent) 50%,
        color-mix(in srgb, var(--idea-clr) 40%, transparent) 70%,
        transparent 95%);
    z-index: 3;
    pointer-events: none;
}
.oc-idea-card--flip .oc-idea-dash-col::before {
    left: auto;
    right: 0;
}

/* Scattered sparkle dots — tiny bright spots */
.oc-idea-dash-col .oc-dash-window::before {
    content: '';
    position: absolute;
    top: -8px; right: 20%;
    width: 4px; height: 4px;
    background: var(--idea-clr);
    border-radius: 50%;
    box-shadow:
        60px 40px 0 0 color-mix(in srgb, var(--idea-clr) 50%, transparent),
        -30px 80px 0 0 color-mix(in srgb, var(--idea-clr) 40%, transparent),
        120px 90px 0 0 color-mix(in srgb, var(--idea-clr) 30%, transparent),
        -60px 130px 0 0 color-mix(in srgb, var(--idea-clr) 45%, transparent);
    z-index: 10;
    pointer-events: none;
    animation: oc-sparkle-twinkle 4s ease-in-out infinite;
}

@keyframes oc-sparkle-twinkle {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

/* ══════════════════════════════════════════════
   PRICING CARD — Price banner (below cover img)
   ══════════════════════════════════════════════ */
.oc-pc-price-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1030 50%, #0f1520 100%);
    border-bottom: 1px solid rgba(99,102,241,0.25);
    position: relative;
    overflow: hidden;
}
.oc-pc-price-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(99,102,241,0.15) 0%, transparent 60%),
                radial-gradient(ellipse 50% 80% at 70% 50%, rgba(16,185,129,0.10) 0%, transparent 60%);
    pointer-events: none;
}
.oc-pcpb-was {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.oc-pcpb-was-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.oc-pcpb-was-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
    line-height: 1;
}
.oc-pcpb-was-price s {
    text-decoration-color: rgba(239,68,68,0.7);
    text-decoration-thickness: 2px;
}
.oc-pcpb-arrow {
    font-size: 1.4rem;
    color: rgba(99,102,241,0.6);
    font-weight: 300;
    flex-shrink: 0;
}
.oc-pcpb-now {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.oc-pcpb-now-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(16,185,129,0.8);
}
.oc-pcpb-now-price {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.oc-pcpb-save-badge {
    position: absolute;
    top: 10px;
    right: 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}

/* ── Mobile: move dark bg from column to .oc-idea-dash wrapper ── */
@media (max-width: 991px) {
    .oc-idea-dash-col,
    .oc-idea-card--flip .oc-idea-dash-col {
        background: transparent !important;
        overflow: visible !important;
    }
    .oc-idea-dash-col::before,
    .oc-idea-dash-col::after,
    .oc-idea-dash::before,
    .oc-idea-dash::after,
    .oc-idea-dash-col .oc-dash-window::before {
        display: none !important;
    }
    .oc-idea-dash {
        background:
            radial-gradient(ellipse 70% 60% at 80% 15%, color-mix(in srgb, var(--idea-clr) 22%, transparent) 0%, transparent 55%),
            linear-gradient(145deg,
                color-mix(in srgb, var(--idea-clr) 12%, #0a0a14) 0%,
                color-mix(in srgb, var(--idea-clr) 18%, #0e0e1c) 40%,
                color-mix(in srgb, var(--idea-clr) 10%, #0a0a14) 100%) !important;
        border-radius: 16px;
        padding: 8px;
    }
}
/* ══════════════════════════════════════════
   3-COLUMN PRICING GRID
   ══════════════════════════════════════════ */

.oc-pricing-3grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Override old layout constraints */
.oc-pricing-3grid .oc-pricing-card {
    max-width: unset !important;
    width: 100% !important;
    position: relative;
}

/* Featured / most popular card */
.oc-pricing-card--featured {
    border: 2px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa) border-box !important;
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.25) !important;
    transform: translateY(-8px);
}

/* "Most Popular" ribbon */
.oc-pc-popular-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 8px 16px;
    border-radius: 12px 12px 0 0;
}

/* ── Responsive breakpoints ── */

/* 2 columns on tablet */
@media (max-width: 991px) {
    .oc-pricing-3grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }
    /* stack featured back to normal vertical position */
    .oc-pricing-card--featured {
        transform: none;
    }
    /* 3rd card spans full width on 2-col layout */
    .oc-pricing-3grid .oc-pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

/* 1 column on mobile */
@media (max-width: 600px) {
    .oc-pricing-3grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 20px;
        max-width: 100%;
    }
    .oc-pricing-3grid .oc-pricing-card:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
}

/* ══════════════════════════════════════════
   HIGH-TICKET SERVICE SECTION
   ══════════════════════════════════════════ */

.oc-hts-section {
    background: linear-gradient(160deg, #07090f 0%, #0e1128 50%, #07090f 100%);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.oc-hts-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* ── Header ── */
.oc-hts-header {
    margin-bottom: 60px;
    position: relative;
}

.oc-hts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #f472b6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.oc-hts-eyebrow::before,
.oc-hts-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #f472b6;
    opacity: 0.6;
}

.oc-hts-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.oc-hts-accent {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Calculator rows ── */
.oc-hts-calc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto 36px;
}

.oc-hts-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.oc-hts-row:hover {
    transform: translateX(4px);
    border-color: rgba(244,114,182,0.3);
}

.oc-hts-row--mid {
    background: rgba(244,114,182,0.05);
    border-color: rgba(244,114,182,0.15);
}

.oc-hts-row--top {
    background: linear-gradient(135deg, rgba(244,114,182,0.1), rgba(139,92,246,0.08));
    border-color: rgba(244,114,182,0.3);
    box-shadow: 0 0 32px rgba(244,114,182,0.08);
}

.oc-hts-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.oc-hts-num {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.oc-hts-row--mid .oc-hts-num { color: #f9a8d4; }
.oc-hts-row--top .oc-hts-num {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-hts-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.oc-hts-charge {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 24px;
}

.oc-hts-rate {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.oc-hts-rate em {
    font-style: normal;
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
}

.oc-hts-arrow {
    font-size: 1.5rem;
    color: rgba(244,114,182,0.5);
    flex-shrink: 0;
}

.oc-hts-earn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 220px;
}

.oc-hts-earn-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
}

.oc-hts-earn-num {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.oc-hts-row--mid .oc-hts-earn-num { color: #f9a8d4; }
.oc-hts-row--top .oc-hts-earn-num {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Footnote ── */
.oc-hts-footnote {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

/* ── No-Brainer block ── */
.oc-hts-nobrain {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    padding: 40px 48px;
    position: relative;
}

.oc-hts-nobrain::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(139,92,246,0.04) 100%);
    pointer-events: none;
}

.oc-hts-nb-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    position: relative;
}

.oc-hts-nb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.oc-hts-nb-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}

.oc-hts-nb-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #10b981;
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .oc-hts-section { padding: 70px 0 80px; }

    .oc-hts-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px;
    }

    .oc-hts-clients { min-width: 70px; }
    .oc-hts-num { font-size: 1.8rem; }

    .oc-hts-charge {
        flex: 1 1 auto;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-left: 0;
        padding-top: 10px;
        width: 100%;
    }

    .oc-hts-arrow { display: none; }

    .oc-hts-earn {
        align-items: flex-start;
        min-width: unset;
        width: 100%;
    }

    .oc-hts-earn-num { font-size: 1.15rem; }

    .oc-hts-nobrain { padding: 28px 24px; }
    .oc-hts-nb-title { font-size: 1.3rem; }
}
