/* =========================================================
   BIZONOMIST AI — PREMIUM FOUNDER EXPERIENCE
========================================================= */

:root{

    --bizo-bg: #041E0D;
    --bizo-card: #0B2A14;
    --bizo-card-2: #102F18;

    --bizo-green: #2EFF7B;
    --bizo-green-soft: rgba(46,255,123,0.15);

    --bizo-text: #ffffff;
    --bizo-text-soft: rgba(255,255,255,0.72);

    --bizo-border: rgba(255,255,255,0.08);

    --bizo-gradient:
        linear-gradient(
            135deg,
            #0B2A14 0%,
            #041E0D 45%,
            #1F5C2E 100%
        );

}

/* =========================================================
   PAGE WRAPPER
========================================================= */

.bizo-founder-flow{

    min-height: 100vh;

    background:
        radial-gradient(circle at top right,
        rgba(46,255,123,0.08),
        transparent 30%),
        var(--bizo-bg);

    color: var(--bizo-text);

    padding: 80px 20px;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.bizo-container{

    width: 100%;
    max-width: 760px;

    margin: auto;

}

/* =========================================================
   TOP LABEL
========================================================= */

.bizo-badge{

    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(46,255,123,0.08);

    border: 1px solid rgba(46,255,123,0.15);

    color: var(--bizo-green);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;

}

/* =========================================================
   TITLE
========================================================= */

.bizo-title{

    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 16px;

    background:
        linear-gradient(
            135deg,
            #2EFF7B 0%,
            #7BFFB2 50%,
            #ffffff 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.bizo-subtitle{

    font-size: 20px;
    line-height: 1.7;

    color: var(--bizo-text-soft);

    margin-bottom: 42px;

}

/* =========================================================
   PROGRESS BAR
========================================================= */

.bizo-progress{

    width: 100%;
    height: 8px;

    background: rgba(255,255,255,0.06);

    border-radius: 999px;

    overflow: hidden;

    margin-bottom: 40px;

}

.bizo-progress-fill{

    width: 20%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #2EFF7B,
            #7BFFB2
        );

    border-radius: 999px;

    transition: 0.4s ease;

}

/* =========================================================
   STEP CARD
========================================================= */

.bizo-step{

    display: none;

    animation: fadeUp 0.45s ease;

}

.bizo-step.active{
    display: block;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(24px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}

/* =========================================================
   QUESTION TITLE
========================================================= */

.bizo-question{

    font-size: 52px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 32px;

}

/* =========================================================
   INPUTS
========================================================= */

.bizo-founder-flow input,
.bizo-founder-flow textarea,
.bizo-founder-flow select{

    width: 100%;

    background: rgba(255,255,255,0.04);

    border: 1px solid transparent;

    border-radius: 24px;

    padding: 24px;

    color: #fff;

    font-size: 18px;

    outline: none;

    transition: all 0.25s ease;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.04);

}

.bizo-founder-flow textarea{
    min-height: 160px;
    resize: none;
}

/* Typed answer text is green so it stands out from placeholder */
#idea,
#problem,
#customer,
#industry{
    color: #2EFF7B;
    caret-color: #2EFF7B;
}

.bizo-founder-flow input:focus,
.bizo-founder-flow textarea:focus,
.bizo-founder-flow select:focus{

    border-color: rgba(46,255,123,0.35);

    box-shadow:
        0 0 0 4px rgba(46,255,123,0.08);

    background: rgba(255,255,255,0.06);

}

/* =========================================================
   BUTTONS
========================================================= */

.bizo-btn-row{

    display: flex;
    gap: 16px;

    margin-top: 32px;

    justify-content: center;

}

.bizo-primary-btn,
.bizo-next-step,
#bizo-analyze-btn,
#bizo-save-lead{

    background: linear-gradient(135deg, #1E7C3E, #2EFF7B);
    color: #041E0D;
    border: none;
    border-radius: 20px;
    padding: 0 32px;
    height: 52px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 10px 30px rgba(46,255,123,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;

}

.bizo-primary-btn:hover,
.bizo-next-step:hover,
#bizo-analyze-btn:hover,
#bizo-save-lead:hover{

    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(46,255,123,0.28);

}

.bizo-primary-btn:active,
.bizo-next-step:active,
#bizo-analyze-btn:active,
#bizo-save-lead:active{

    transform: scale(0.97);
    box-shadow: 0 6px 18px rgba(46,255,123,0.20);

}

.bizo-prev-step{

    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 0 24px;
    height: 52px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    font-size: 15px;

}

.bizo-prev-step:hover{
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
}

.bizo-prev-step:active{
    transform: scale(0.97);
}

/* =========================================================
   AI RESULT CARD
========================================================= */

.bizo-score-card{

    margin-top: 50px;

    background: var(--bizo-gradient);

    border: 1px solid rgba(46,255,123,0.08);

    border-radius: 36px;

    padding: 42px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4);

}

.bizo-score-top{

    display: flex;
    align-items: center;
    gap: 24px;

    margin-bottom: 32px;

}

.bizo-main-score{

    width: 120px;
    height: 120px;

    border-radius: 28px;

    background: rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 56px;
    font-weight: 800;

    color: var(--bizo-green);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.06);

}

.bizo-score-top h2{

    font-size: 42px;
    margin-bottom: 8px;

}

.bizo-score-top p{

    color: var(--bizo-text-soft);

}

/* =========================================================
   SCORE GRID
========================================================= */

.bizo-score-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;

    margin-bottom: 28px;

}

.bizo-mini-card{

    background: rgba(255,255,255,0.05);

    border-radius: 22px;

    padding: 22px;

}

.bizo-mini-card span{

    display: block;

    color: rgba(255,255,255,0.65);

    margin-bottom: 8px;

}

.bizo-mini-card strong{

    font-size: 28px;
    color: var(--bizo-green);

}

/* =========================================================
   HIGHLIGHT
========================================================= */

.bizo-highlight{

    background: rgba(255,255,255,0.05);

    border-left: 4px solid var(--bizo-green);

    padding: 20px 24px;

    border-radius: 18px;

    color: rgba(255,255,255,0.82);

    margin-bottom: 28px;

}

/* =========================================================
   PREVIEW CARDS
========================================================= */

.bizo-preview-section{

    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-bottom: 36px;

}

.bizo-preview-card{

    background: rgba(255,255,255,0.04);

    border-radius: 24px;

    padding: 24px;

    border: 1px solid rgba(255,255,255,0.04);

}

.bizo-preview-card h4{

    font-size: 18px;

    margin-bottom: 12px;

    color: var(--bizo-green);

}

.bizo-preview-card p{

    color: rgba(255,255,255,0.8);

    line-height: 1.7;

}

/* =========================================================
   LEAD POPUP
========================================================= */

.bizo-lead-popup{

    margin-top: 30px;

    background: transparent;

    border-radius: 0;

    padding: 0;

    border: none;

}

.bizo-lead-popup h3{

    font-size: 32px;
    margin-bottom: 10px;

}

.bizo-lead-popup p{

    color: var(--bizo-text-soft);

    margin-bottom: 24px;

}

.bizo-lead-popup input{

    margin-bottom: 16px;

}

/* =========================================================
   FULL INSIGHT
========================================================= */

.bizo-full-insight{

    margin-top: 20px;

}

.bizo-insight-block{

    background: rgba(255,255,255,0.04);

    border-radius: 22px;

    padding: 24px;

    margin-bottom: 18px;

}

.bizo-insight-block h4{

    color: var(--bizo-green);

    margin-bottom: 12px;

}

.bizo-insight-block p{

    color: rgba(255,255,255,0.82);

    line-height: 1.7;

}

/* =========================================================
   PREMIUM UPSELL
========================================================= */

.bizo-premium-upsell{

    margin-top: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(46,255,123,0.08),
            rgba(255,255,255,0.03)
        );

    border-radius: 28px;

    padding: 32px;

    border: 1px solid rgba(46,255,123,0.15);

}

.bizo-premium-upsell h3{

    font-size: 34px;

    margin-bottom: 16px;

}

.bizo-premium-upsell p{

    color: rgba(255,255,255,0.75);

    margin-bottom: 18px;

}

.bizo-premium-upsell ul{

    margin: 0;
    padding-left: 20px;

    color: rgba(255,255,255,0.85);

    line-height: 2;

    margin-bottom: 28px;

}

.bizo-premium-btn{

    width: 100%;

    padding: 20px;

    border-radius: 20px;

    border: none;

    background:
        linear-gradient(
            135deg,
            #2EFF7B,
            #7BFFB2
        );

    color: #041E0D;

    font-size: 20px;
    font-weight: 800;

    cursor: pointer;

}

/* =========================================================
   LOADER
========================================================= */

.bizo-loading-card{

    background: var(--bizo-gradient);

    border-radius: 30px;

    padding: 50px;

    text-align: center;

    margin-top: 40px;

}

.bizo-loader{

    width: 70px;
    height: 70px;

    border-radius: 50%;

    border:
        4px solid rgba(255,255,255,0.08);

    border-top:
        4px solid var(--bizo-green);

    margin: auto;

    animation: spin 1s linear infinite;

    margin-bottom: 24px;

}

@keyframes spin{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }

}

/* =========================================================
   TOAST
========================================================= */

.bizo-toast{

    position: fixed;

    bottom: 30px;
    left: 50%;

    transform:
        translateX(-50%)
        translateY(30px);

    background: #0B2A14;

    border: 1px solid rgba(46,255,123,0.2);

    color: #fff;

    padding: 18px 24px;

    border-radius: 18px;

    z-index: 99999;

    opacity: 0;

    transition: all 0.3s ease;

    max-width: 420px;

    text-align: center;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.4);

}

.bizo-toast.show{

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0px);

}

/* =========================================================
   MOBILE — !important to beat WP theme cache
========================================================= */

@media(max-width:768px){

    .bizo-title{
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }

    .bizo-subtitle{
        font-size: 16px !important;
        margin-bottom: 28px !important;
    }

    .bizo-question{
        font-size: 28px !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 20px !important;
    }

    .bizo-step.active{
        padding-bottom: 110px !important;
    }

    .bizo-btn-row{
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        margin: 0 !important;
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 8px)) !important;
        background: linear-gradient(to top, rgba(4,30,13,1) 60%, rgba(4,30,13,0)) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        gap: 10px !important;
        display: flex !important;
    }

    .bizo-btn-row .bizo-next-step,
    .bizo-btn-row #bizo-analyze-btn{
        flex: 1 !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
        min-width: 0 !important;
    }

    .bizo-btn-row .bizo-prev-step{
        flex: 0 0 76px !important;
        padding: 16px 10px !important;
        font-size: 15px !important;
        border-radius: 16px !important;
    }

    .bizo-score-top{
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bizo-score-grid{
        grid-template-columns: 1fr !important;
    }

    .bizo-main-score{
        width: 90px !important;
        height: 90px !important;
        font-size: 40px !important;
        border-radius: 22px !important;
    }

    .bizo-score-top h2{
        font-size: 28px !important;
    }

    .bizo-score-card{
        padding: 24px !important;
        border-radius: 24px !important;
    }

}

/* =========================================================
   FINAL CANVAS FIX
========================================================= */

html,
body{

    margin:0 !important;
    padding:0 !important;

    overflow-x:hidden;

    background:#041E0D !important;

}

/* REMOVE THEME WHITE GAPS */

.site,
.site-content,
.content-area,
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap{

    background:transparent !important;

}

/* FULL WIDTH APP */

.bizo-founder-flow{

    width:100vw;

    margin-left:
        calc(50% - 50vw);

    margin-right:
        calc(50% - 50vw);

    padding:
        80px
        24px;

    background:

        radial-gradient(
            circle at top right,
            rgba(46,255,123,0.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #041E0D 0%,
            #062712 50%,
            #041E0D 100%
        );

}

/* REMOVE EXCESSIVE BOX FEEL */

.bizo-step,
#bizo-ai-result{

    background:
        rgba(255,255,255,0.02);

    border:
        1px solid rgba(255,255,255,0.04);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 50px rgba(0,0,0,0.22);

}

/* TOAST FIX */

.bizo-toast{

    top:50% !important;
    bottom:auto !important;

    left:50%;

    transform:
        translateX(-50%)
        translateY(calc(-50% + 20px));

}

.bizo-toast.show{

    transform:
        translateX(-50%)
        translateY(-50%) !important;

}

/* MOBILE */

@media(max-width:768px){

    .bizo-founder-flow{

        padding:
            24px
            16px
            /* extra bottom for sticky btn bar */
            120px;

    }

    .bizo-step,
    #bizo-ai-result{

        border-radius:24px;

    }

}
/* =========================================================
   RICH ANIMATIONS — CRED/Scapia style
========================================================= */

/* Step slide-in from right (forward navigation) */
@keyframes slideInRight{
    from{ opacity:0; transform:translateX(40px) scale(0.97); }
    to{   opacity:1; transform:translateX(0)    scale(1);    }
}

/* Step slide-in from left (back navigation) */
@keyframes slideInLeft{
    from{ opacity:0; transform:translateX(-40px) scale(0.97); }
    to{   opacity:1; transform:translateX(0)     scale(1);    }
}

/* Slide out to left */
@keyframes slideOutLeft{
    from{ opacity:1; transform:translateX(0)     scale(1);    }
    to{   opacity:0; transform:translateX(-40px) scale(0.97); }
}

/* Slide out to right */
@keyframes slideOutRight{
    from{ opacity:1; transform:translateX(0)    scale(1);    }
    to{   opacity:0; transform:translateX(40px) scale(0.97); }
}

/* Pop up from below (for result cards, CTAs) */
@keyframes popUp{
    from{ opacity:0; transform:translateY(32px) scale(0.96); }
    to{   opacity:1; transform:translateY(0)    scale(1);    }
}

/* Number counter bounce */
@keyframes scorePop{
    0%  { transform: scale(0.6); opacity:0; }
    60% { transform: scale(1.15); opacity:1; }
    80% { transform: scale(0.95); }
    100%{ transform: scale(1); }
}

/* Glow pulse on the CTA button */
@keyframes glowPulse{
    0%, 100%{ box-shadow: 0 8px 28px rgba(46,255,123,0.28); }
    50%      { box-shadow: 0 8px 44px rgba(46,255,123,0.52); }
}

/* Shimmer sweep */
@keyframes shimmer{
    from{ background-position: -200% center; }
    to{   background-position:  200% center; }
}

/* Progress bar fill animation */
@keyframes progressGlow{
    0%, 100%{ box-shadow: 0 0 8px rgba(46,255,123,0.4); }
    50%      { box-shadow: 0 0 18px rgba(46,255,123,0.75); }
}

/* Checkmark bounce for feature list items */
@keyframes checkBounce{
    from{ opacity:0; transform:scale(0) rotate(-15deg); }
    60% { transform:scale(1.25) rotate(5deg); }
    to{   opacity:1; transform:scale(1) rotate(0); }
}

/* Fade scale in (generic) */
@keyframes fadeScaleIn{
    from{ opacity:0; transform:scale(0.94); }
    to{   opacity:1; transform:scale(1); }
}

/* Stagger badge entrance */
@keyframes badgeDrop{
    from{ opacity:0; transform:translateY(-12px) scale(0.9); }
    to{   opacity:1; transform:translateY(0) scale(1); }
}

/* ── Apply animations ── */

/* Badge */
.bizo-badge{
    animation: badgeDrop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* Title */
.bizo-title{
    animation: fadeUp 0.55s 0.1s cubic-bezier(0.34,1.2,0.64,1) both;
}

/* Subtitle */
.bizo-subtitle{
    animation: fadeUp 0.55s 0.2s cubic-bezier(0.34,1.2,0.64,1) both;
}

/* Progress bar */
.bizo-progress{
    animation: fadeUp 0.4s 0.25s ease both;
}

.bizo-progress-fill{
    animation: progressGlow 2.5s ease-in-out infinite;
    transition: width 0.55s cubic-bezier(0.65,0,0.35,1) !important;
}

/* Default step entrance */
.bizo-step.active{
    animation: slideInRight 0.42s cubic-bezier(0.34,1.1,0.64,1) both;
}

/* Back-navigation class (added by JS) */
.bizo-step.active.slide-back{
    animation: slideInLeft 0.42s cubic-bezier(0.34,1.1,0.64,1) both;
}

/* Input fields — subtle focus lift */
.bizo-founder-flow input,
.bizo-founder-flow textarea,
.bizo-founder-flow select{
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.bizo-founder-flow input:focus,
.bizo-founder-flow textarea:focus,
.bizo-founder-flow select:focus{
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(46,255,123,0.12) !important;
}

/* Score card */
.bizo-score-card{
    animation: popUp 0.55s cubic-bezier(0.34,1.1,0.64,1) both;
}

/* Main score number */
.bizo-main-score{
    animation: scorePop 0.6s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* Mini score cards stagger */
.bizo-mini-card:nth-child(1){ animation: popUp 0.4s 0.15s ease both; }
.bizo-mini-card:nth-child(2){ animation: popUp 0.4s 0.25s ease both; }
.bizo-mini-card:nth-child(3){ animation: popUp 0.4s 0.35s ease both; }

/* Preview cards */
.bizo-preview-card:nth-child(1){ animation: popUp 0.4s 0.3s ease both; }
.bizo-preview-card:nth-child(2){ animation: popUp 0.4s 0.4s ease both; }

/* Lead form */
.bizo-lead-popup{
    animation: popUp 0.5s 0.3s ease both;
}

/* CTA upsell */
.bizo-premium-upsell{
    animation: popUp 0.55s 0.2s cubic-bezier(0.34,1.1,0.64,1) both;
}

/* Pulsing glow on the CTA btn */
.bizo-premium-btn{
    animation: glowPulse 2.8s ease-in-out infinite !important;
}

/* Toast */
.bizo-toast{
    animation: popUp 0.3s cubic-bezier(0.34,1.3,0.64,1) both;
}

/* =========================================================
   MOBILE BUTTON ROW — fixed height & sticky
========================================================= */

@media(max-width:768px){

    .bizo-founder-flow .bizo-btn-row .bizo-next-step,
    .bizo-founder-flow .bizo-btn-row #bizo-analyze-btn{
        height: 52px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
    }

    .bizo-founder-flow .bizo-btn-row .bizo-prev-step{
        height: 52px !important;
        padding: 0 16px !important;
        font-size: 15px !important;
        border-radius: 16px !important;
        flex: 0 0 72px !important;
    }

    /* Loading card mobile */
    .bizo-loading-card{
        padding: 40px 24px !important;
        border-radius: 24px !important;
    }

    /* Score top row */
    .bizo-score-top{
        gap: 16px !important;
    }

}

/* =========================================================
   MICRO-INTERACTION STATES
========================================================= */

/* Input valid shimmer */
.bizo-founder-flow input.input-valid,
.bizo-founder-flow textarea.input-valid,
.bizo-founder-flow select.input-valid{
    border-color: rgba(46,255,123,0.45) !important;
    box-shadow: 0 0 0 3px rgba(46,255,123,0.08), 0 8px 24px rgba(46,255,123,0.10) !important;
}

/* Button tap feedback */
.bizo-btn-row .btn-tap{
    transform: scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

/* Select dropdown arrow tint */
.bizo-founder-flow select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232EFF7B' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

/* Floating label feel — placeholder animation */
.bizo-founder-flow input::placeholder,
.bizo-founder-flow textarea::placeholder{
    transition: opacity 0.2s ease;
}
.bizo-founder-flow input:focus::placeholder,
.bizo-founder-flow textarea:focus::placeholder{
    opacity: 0.45;
}
/* =========================================================
AI EXTRA INSIGHTS
========================================================= */

.bizo-ai-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:18px;

    margin-top:24px;
    margin-bottom:24px;

}

.bizo-ai-card{

    padding:22px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );

    border:1px solid rgba(46,255,123,0.12);

    backdrop-filter:blur(14px);

}

.bizo-ai-card span{

    display:block;

    color:#2EFF7B;

    font-size:13px;

    font-weight:700;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:0.4px;

}

.bizo-ai-card p{

    color:#ffffff;

    font-size:15px;

    line-height:1.6;

    margin:0;

}

/* MOBILE */

@media(max-width:768px){

    .bizo-ai-grid{

        grid-template-columns:1fr;

    }

}
/* =========================================================
   RESULT CARD — SCORING SYSTEM
========================================================= */

/* Header */
.bizo-result-header{
    display:flex; align-items:flex-start; gap:18px; margin-bottom:24px;
}
.bizo-result-meta{ flex:1; min-width:0; }
.bizo-result-idea{
    font-size:12px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
    color:rgba(255,255,255,0.45); margin-bottom:6px;
}
.bizo-result-title{ font-size:22px; font-weight:800; line-height:1.2; margin:0 0 5px; }
.bizo-result-sub{ font-size:13px; color:rgba(255,255,255,0.62); margin:0; line-height:1.5; }

/* Benchmark bar */
.bizo-bench{
    background:rgba(255,255,255,0.04); border-radius:16px;
    padding:16px 18px; margin-bottom:20px;
    border:1px solid rgba(255,255,255,0.05);
}
.bizo-bench-label{ font-size:11px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:rgba(255,255,255,0.40); margin-bottom:10px; }
.bizo-bench-bar{
    position:relative; height:8px; background:rgba(255,255,255,0.06);
    border-radius:999px; overflow:visible; margin-bottom:6px;
}
.bizo-bench-fill{
    height:100%; border-radius:999px;
    width:0; transition:width 0.8s cubic-bezier(0.65,0,0.35,1);
}
.bizo-bench-marker{
    position:absolute; top:-14px;
    transform:translateX(-50%);
    display:flex; flex-direction:column; align-items:center; gap:0;
}
.bizo-bench-you{
    font-size:9px; font-weight:800; letter-spacing:0.06em;
    color:#2EFF7B; background:rgba(46,255,123,0.15);
    padding:2px 5px; border-radius:4px;
}
.bizo-bench-ticks{
    display:flex; justify-content:space-between;
    font-size:10px; color:rgba(255,255,255,0.28); margin-top:4px;
}
.bizo-bench-note{
    font-size:12px; color:rgba(255,255,255,0.45); margin:8px 0 0; text-align:center;
}

/* Dimension cards */
.bizo-dims{ display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }

.bizo-dim-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:14px; padding:14px 16px;
}
.bizo-dim-header{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.bizo-dim-label{ font-size:13px; font-weight:600; color:rgba(255,255,255,0.75); }
.bizo-dim-score{ font-size:22px; font-weight:800; line-height:1; }
.bizo-dim-ten{ font-size:12px; font-weight:500; color:rgba(255,255,255,0.35); }

.bizo-dim-bar-track{
    height:5px; background:rgba(255,255,255,0.06);
    border-radius:999px; overflow:hidden; margin-bottom:8px;
}
.bizo-dim-bar-fill{
    height:100%; border-radius:999px;
    width:0; transition:width 0.9s cubic-bezier(0.65,0,0.35,1);
}
.bizo-dim-badge{
    display:inline-block; font-size:11px; font-weight:700;
    padding:3px 8px; border-radius:6px; margin-bottom:8px; letter-spacing:0.03em;
}
.bizo-dim-tip{ font-size:12px; color:rgba(255,255,255,0.55); margin:0; line-height:1.5; }

/* Intelligence tags row */
.bizo-intel-row{
    display:flex; gap:8px; margin-bottom:20px; flex-wrap:wrap;
}
.bizo-intel-tag{
    flex:1; min-width:0;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:12px; padding:10px 12px;
    display:flex; flex-direction:column; gap:4px;
}
.bizo-intel-tag span{ font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; color:rgba(255,255,255,0.40); }
.bizo-intel-tag strong{ font-size:12px; color:rgba(255,255,255,0.85); font-weight:600; line-height:1.4; }

/* Locked tease section */
.bizo-locked-tease{
    background:rgba(0,0,0,0.25);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:16px; padding:4px 0; margin-bottom:20px;
    overflow:hidden;
}
.bizo-locked-row{
    display:flex; justify-content:space-between; align-items:center;
    padding:12px 18px;
    border-bottom:1px solid rgba(255,255,255,0.04);
    font-size:14px; color:rgba(255,255,255,0.55);
}
.bizo-locked-row:last-child{ border-bottom:none; }
.bizo-lock{ font-size:14px; opacity:0.5; }

/* Input with icon */
.bizo-input-row{
    position:relative; margin-bottom:12px;
}
.bizo-input-icon{
    position:absolute; left:16px; top:50%; transform:translateY(-50%);
    font-size:16px; pointer-events:none; z-index:1;
}
.bizo-input-row input{
    padding-left:44px !important;
}

/* Form note */
.bizo-form-note{
    text-align:center; font-size:11px; color:rgba(255,255,255,0.30);
    margin:10px 0 0;
}

/* ── MOBILE overrides for result ── */
@media(max-width:768px){

    .bizo-result-header{ gap:14px !important; margin-bottom:18px !important; }
    .bizo-result-title{ font-size:18px !important; }
    .bizo-result-sub{ font-size:12px !important; }

    .bizo-bench{ padding:13px 14px !important; margin-bottom:16px !important; }
    .bizo-bench-note{ font-size:11px !important; }

    .bizo-dims{ gap:8px !important; margin-bottom:16px !important; }
    .bizo-dim-card{ padding:12px 14px !important; }
    .bizo-dim-score{ font-size:20px !important; }
    .bizo-dim-tip{ font-size:11px !important; }

    .bizo-intel-row{ gap:6px !important; margin-bottom:16px !important; }
    .bizo-intel-tag{ padding:9px 10px !important; border-radius:10px !important; }
    .bizo-intel-tag strong{ font-size:11px !important; }

    .bizo-locked-row{ font-size:13px !important; padding:11px 14px !important; }

    .bizo-lead-popup h3{ font-size:20px !important; }
    .bizo-lead-popup p{ font-size:13px !important; }
}

/* =========================================================
   PRE-UNLOCK PREVIEW SECTION
========================================================= */

.bizo-unlock-preview{
    background: linear-gradient(160deg,#0B2A14,#051A0A);
    border: 1px solid rgba(46,255,123,0.14);
    border-radius: 22px; padding: 22px 20px 18px;
    margin-bottom: 20px;
}

.bizo-unlock-head{ margin-bottom:16px; }
.bizo-unlock-badge{
    display:inline-block; font-size:11px; font-weight:700;
    letter-spacing:0.05em; text-transform:uppercase;
    color:rgba(255,255,255,0.45); background:rgba(255,255,255,0.06);
    padding:4px 10px; border-radius:6px; margin-bottom:8px;
}
.bizo-unlock-title{
    font-size:18px; font-weight:800; margin:0 0 4px; line-height:1.25;
}
.bizo-unlock-sub{
    font-size:13px; color:rgba(255,255,255,0.50); margin:0;
}

/* Blurred preview cards */
.bizo-preview-blurred{ display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.bizo-preview-blur-card{
    display:flex; align-items:center; gap:12px;
    background:rgba(255,255,255,0.04); border-radius:12px; padding:12px 14px;
    border:1px solid rgba(255,255,255,0.04); position:relative; overflow:hidden;
}
.bizo-preview-blur-card::after{
    content:''; position:absolute; inset:0;
    background:rgba(4,30,13,0.55); backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px); border-radius:12px;
    pointer-events:none;
}
.bizo-pbc-icon{ font-size:18px; flex-shrink:0; }
.bizo-pbc-body{ flex:1; min-width:0; }
.bizo-pbc-title{ font-size:13px; font-weight:700; color:rgba(255,255,255,0.8); margin-bottom:2px; }
.bizo-pbc-text{ font-size:12px; color:rgba(255,255,255,0.40); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bizo-pbc-lock{ font-size:14px; flex-shrink:0; opacity:0.5; }

.bizo-unlock-proof{
    text-align:center; font-size:12px; font-weight:600;
    color:rgba(255,255,255,0.40); padding-top:10px;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* Lead form extras */
.bizo-form-subhead{
    font-size:13px; color:rgba(255,255,255,0.68); margin-bottom:16px; line-height:1.5;
}
.bizo-form-perks{
    display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
    margin-top:12px;
    font-size:11px; color:rgba(255,255,255,0.40); font-weight:600;
}

/* ── POST-UNLOCK ── */

.bizo-unlock-confirm{
    display:flex; align-items:center; gap:14px;
    background:rgba(46,255,123,0.08); border-left:3px solid #2EFF7B;
    border-radius:14px; padding:14px 18px; margin-bottom:20px;
}
.bizo-uc-check{ font-size:20px; flex-shrink:0; }
.bizo-uc-name{ font-size:14px; font-weight:700; color:#2EFF7B; margin:0 0 2px; }
.bizo-uc-idea{ font-size:12px; color:rgba(255,255,255,0.55); margin:0; }

/* Share section */
.bizo-share-section{
    margin-top:22px; padding:20px 18px;
    background:rgba(46,255,123,0.06);
    border:1px solid rgba(46,255,123,0.14);
    border-radius:18px; text-align:center;
}
.bizo-share-label{
    font-size:14px; font-weight:600; color:rgba(255,255,255,0.75); margin:0 0 12px;
}
.bizo-share-btn{
    display:inline-flex; align-items:center; justify-content:center;
    width:100%; height:50px; border-radius:14px; border:none;
    background:linear-gradient(135deg,#1E7C3E,#2EFF7B);
    color:#041E0D; font-size:15px; font-weight:800;
    cursor:pointer; transition:transform 0.15s ease;
    -webkit-tap-highlight-color:transparent;
    margin-bottom:10px;
}
.bizo-share-btn:active{ transform:scale(0.97); }
.bizo-share-hint{
    font-size:11px; color:rgba(255,255,255,0.35); margin:0; line-height:1.5;
}

/* ── Mobile overrides for new sections ── */
@media(max-width:768px){
    .bizo-unlock-preview{ padding:18px 16px 14px !important; }
    .bizo-unlock-title{ font-size:16px !important; }
    .bizo-form-perks{ gap:10px !important; }
    .bizo-share-section{ padding:16px 14px !important; }
}

/* =========================================================
   INDUSTRY MISMATCH BANNER
========================================================= */

.bizo-mismatch-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 179, 71, 0.08);
    border: 1px solid rgba(255, 179, 71, 0.30);
    border-left: 4px solid #FFB347;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.bizo-mismatch-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bizo-mismatch-body strong {
    font-size: 14px;
    font-weight: 700;
    color: #FFB347;
    display: block;
    margin-bottom: 4px;
}

.bizo-mismatch-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin: 0;
}

.bizo-mismatch-body em {
    color: rgba(255,255,255,0.50);
    font-style: italic;
}

.bizo-mismatch-body strong em,
.bizo-mismatch-body p strong {
    color: #FFD166;
    font-style: normal;
}
