/* ============================================================
   CroVello — Outsourcing Readiness Checklist
   Brand: CroVello. Outfit / Inter. Green-teal palette.
   Adapted from FinTruction checklist pattern.
   ============================================================ */

.ocf-page {
    --ck-teal: #008060;
    --ck-teal-dark: #004942;
    --ck-teal-light: #00946f;
    --ck-dark: #002925;
    --ck-dark-deep: #001a16;
    --ck-bg: #f0faf6;
    --ck-card-bg: #ffffff;
    --ck-text: #16201d;
    --ck-text-muted: #5c6b65;
    --ck-border: #e2e8e3;
    --ck-shadow: 0 4px 20px rgba(0, 41, 37, 0.08);
    --ck-shadow-lg: 0 12px 40px rgba(0, 41, 37, 0.15);
    --ck-radius: 16px;
    --ck-gold: #ffc83d;
    --ck-gold-light: #ffd666;
    --ck-red: #dc2626;
    --ck-orange: #ea580c;
    --ck-yellow: #ca8a04;
    --ck-green: #16a34a;
    font-family: Outfit, sans-serif;
    color: var(--ck-text);
    -webkit-tap-highlight-color: transparent;
}

.hidden { display: none !important; }

.ck-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================ HERO ============================ */
.ck-hero {
    background: linear-gradient(135deg, var(--ck-dark) 0, var(--ck-dark-deep) 50%, #0b1a16 100%);
    padding: 110px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ck-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,128,96,.15) 0, transparent 70%);
    pointer-events: none;
}
.ck-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255,200,61,.08) 0, transparent 70%);
    pointer-events: none;
}
.ck-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

/* Floating decorative checklist papers */
.ck-hero-paper {
    position: absolute;
    width: 230px;
    height: 322px;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
    animation: ckPaperFloat 7s ease-in-out infinite;
}
.ck-hero-paper-left {
    left: 2%;
    top: 52%;
    transform: translateY(-50%) rotate(-8deg);
    animation-delay: 0s;
}
.ck-hero-paper-right {
    right: 2%;
    top: 48%;
    transform: translateY(-50%) rotate(7deg);
    animation-delay: 1.2s;
}
@keyframes ckPaperFloat {
    0%, 100% { transform: translateY(-50%) rotate(var(--ck-paper-rot, -8deg)); }
    50% { transform: translateY(calc(-50% - 10px)) rotate(var(--ck-paper-rot, -8deg)); }
}
.ck-hero-paper-left { --ck-paper-rot: -8deg; }
.ck-hero-paper-right { --ck-paper-rot: 7deg; }

.ck-hero-eyebrow {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(163, 255, 228, 0.13);
    border: 1px solid rgba(163, 255, 228, 0.32);
    color: #a3ffe4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 26px;
    backdrop-filter: blur(4px);
}
.ck-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 22px;
    line-height: 1.12;
    letter-spacing: -1px;
}
.ck-hero h1 span {
    background: linear-gradient(135deg, #a3ffe4 0, #5fe3c0 50%, #a3ffe4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ck-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,.9);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 500;
}
.ck-hero-subtitle strong {
    display: inline-block;
    color: #a3ffe4;
    font-weight: 800;
    background: rgba(163, 255, 228, 0.16);
    border: 1px solid rgba(163, 255, 228, 0.32);
    padding: 4px 12px;
    border-radius: 8px;
    margin-right: 4px;
    letter-spacing: 0.2px;
}

.ck-start-btn {
    background: linear-gradient(135deg, #008060 0%, #004942 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 20px 52px;
    font-family: Outfit, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 128, 96, 0.55),
                0 0 0 1px rgba(163, 255, 228, 0.35) inset,
                0 0 0 3px rgba(163, 255, 228, 0.2);
}
.ck-start-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: ckShimmer 3.6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ckShimmer {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}
.ck-start-btn-label {
    position: relative;
    z-index: 1;
}
.ck-start-btn svg {
    position: relative;
    z-index: 1;
    transition: transform .25s ease;
}
.ck-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(0, 128, 96, 0.7),
                0 0 0 1px rgba(163, 255, 228, 0.5) inset,
                0 0 0 4px rgba(163, 255, 228, 0.3);
}
.ck-start-btn:hover svg {
    transform: translateX(5px);
}

/* ============================ HOW IT WORKS ============================ */
.ck-how-section { background: var(--ck-bg); padding: 60px 20px; }
.ck-how-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ck-dark);
    text-align: center;
    margin-bottom: 40px;
}
.ck-how-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
}
.ck-how-card {
    background: var(--ck-card-bg);
    border-radius: var(--ck-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--ck-shadow);
    flex: 1;
}
.ck-how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ck-how-icon.icon-teal { background: rgba(0,128,96,.12); color: var(--ck-teal); }
.ck-how-icon.icon-dark { background: rgba(0,41,37,.1); color: var(--ck-dark); }
.ck-how-icon.icon-gold { background: rgba(255,200,61,.12); color: var(--ck-gold); }
.ck-how-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ck-dark);
    margin: 0 0 8px;
}
.ck-how-card p {
    font-size: 14px;
    color: var(--ck-text-muted);
    margin: 0;
    line-height: 1.55;
}
.ck-how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ck-teal);
    flex-shrink: 0;
}

/* ============================ QUIZ ============================ */
.ck-quiz-container {
    background: var(--ck-bg);
    padding: 60px 20px 40px;
    min-height: 80vh;
}
.ck-quiz-inner {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 100px;
}

/* Sticky progress */
.ck-progress-sticky {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 800;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid var(--ck-border);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.ck-progress-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}
.ck-progress-bar {
    height: 10px;
    background: #e2e8e3;
    border-radius: 6px;
    overflow: hidden;
}
.ck-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--ck-teal), #a3ffe4 50%, var(--ck-gold));
    transition: width .55s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 0 12px rgba(0,128,96,.45);
}
.ck-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.ck-progress-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ck-dark);
    letter-spacing: .3px;
}
.ck-question-counter {
    font-size: 13px;
    color: var(--ck-text-muted);
    font-weight: 600;
}

/* Quiz intro */
.ck-quiz-intro {
    text-align: center;
    margin-bottom: 36px;
}
.ck-quiz-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ck-dark);
    margin: 0 0 10px;
}
.ck-quiz-intro p {
    font-size: 15px;
    color: var(--ck-text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Question cards */
.ck-q-card {
    background: var(--ck-card-bg);
    border-radius: var(--ck-radius);
    box-shadow: var(--ck-shadow);
    padding: 28px 28px 24px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease, opacity .3s ease;
    position: relative;
    opacity: .72;
}
.ck-q-card.active {
    opacity: 1;
    border-color: var(--ck-teal);
    box-shadow: 0 0 0 4px rgba(0,128,96,.12), var(--ck-shadow-lg);
    transform: translateY(-1px);
}
.ck-q-card.answered {
    opacity: 1;
    border-color: rgba(22, 163, 74, .35);
}
.ck-q-card.answered.active {
    border-color: var(--ck-teal);
}
.ck-q-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.ck-q-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ck-bg);
    color: var(--ck-text-muted);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
    transition: background .3s ease, color .3s ease;
}
.ck-q-card.active .ck-q-num {
    background: var(--ck-teal);
    color: #fff;
}
.ck-q-card.answered .ck-q-num {
    background: var(--ck-green);
    color: #fff;
}
.ck-q-priority {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-top: 8px;
}
.ck-priority-must {
    background: #fef2f2;
    color: var(--ck-red);
    border: 1px solid #fecaca;
}
.ck-priority-important {
    background: #fefce8;
    color: var(--ck-yellow);
    border: 1px solid #fef08a;
}
.ck-q-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--ck-dark);
    margin: 6px 0 0;
    line-height: 1.5;
    flex-basis: 100%;
}

/* Option buttons (MCQ) */
.ck-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ck-option-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    background: #f6faf8;
    border: 2px solid var(--ck-border);
    border-radius: 12px;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    color: var(--ck-dark);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .15s ease;
    min-height: 60px;
}
.ck-option-btn:hover {
    border-color: var(--ck-teal-light);
    background: #eef8f4;
    transform: translateX(2px);
}
.ck-option-btn:focus-visible {
    outline: none;
    border-color: var(--ck-teal);
    box-shadow: 0 0 0 3px rgba(0,128,96,.18);
}
.ck-opt-letter {
    flex-shrink: 0;
    min-width: 60px;
    height: 32px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid var(--ck-border);
    color: var(--ck-text-muted);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ck-opt-text {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.1px;
}
.ck-opt-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(.4);
    transition: opacity .2s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.ck-option-btn.selected {
    background: linear-gradient(135deg, var(--ck-teal), var(--ck-teal-dark));
    border-color: var(--ck-teal-dark);
    color: #fff;
    transform: translateX(0);
    box-shadow: 0 6px 20px rgba(0,128,96,.25);
}
.ck-option-btn.selected .ck-opt-letter {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}
.ck-option-btn.selected .ck-opt-text { color: #fff; font-weight: 700; }
.ck-option-btn.selected .ck-opt-check {
    opacity: 1;
    transform: scale(1);
}

/* ============================ FINISH BUTTON ============================ */
.ck-finish-wrap {
    margin-top: 32px;
    text-align: center;
    padding-bottom: 24px;
}
.ck-finish-btn {
    background: #cbd5e1;
    color: #64748b;
    border: none;
    border-radius: 50px;
    padding: 16px 44px;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all .3s ease;
    min-width: 260px;
}
.ck-finish-btn.ready {
    background: linear-gradient(135deg, var(--ck-dark), #003c36);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,41,37,.25);
}
.ck-finish-btn.ready:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,41,37,.35);
}
.ck-finish-hint {
    font-size: 13px;
    color: var(--ck-text-muted);
    margin: 12px 0 0;
}

/* ============================ LEAD CAPTURE ============================ */
.ck-lead-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ck-dark-deep) 0, var(--ck-dark) 50%, #003c36 100%);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}
.ck-lead-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 128, 96, 0.22) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(40px);
}
.ck-lead-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(163, 255, 228, 0.12) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(30px);
}

.ck-lead-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(163, 255, 228, 0.2);
    border-radius: 24px;
    padding: 52px 44px 44px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 1;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(163, 255, 228, 0.05) inset,
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.ck-lead-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ck-teal), var(--ck-teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    box-shadow: 0 14px 32px rgba(0, 128, 96, 0.5),
                0 0 0 6px rgba(0, 128, 96, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ck-lead-step {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(163, 255, 228, 0.12);
    border: 1px solid rgba(163, 255, 228, 0.3);
    color: #a3ffe4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 14px;
}

.ck-lead-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.4px;
}
.ck-lead-subtitle {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    margin: 0 0 32px;
    line-height: 1.6;
    font-weight: 500;
}
.ck-lead-subtitle strong {
    color: #a3ffe4;
    font-weight: 700;
}

.ck-lead-field {
    margin-bottom: 14px;
}
.ck-lead-input {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: 0;
    box-sizing: border-box;
}
.ck-lead-input::placeholder {
    color: rgba(255,255,255,.42);
    font-weight: 400;
}
.ck-lead-input:focus {
    border-color: var(--ck-teal-light);
    background: rgba(255,255,255,.09);
    box-shadow: 0 0 0 4px rgba(0, 128, 96, 0.18);
}
.ck-lead-input:invalid { border-color: rgba(255,255,255,.14); }

.ck-lead-error {
    color: #fca5a5;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 14px;
    text-align: left;
    font-weight: 500;
}

.ck-lead-btn {
    width: 100%;
    padding: 17px 24px;
    background: linear-gradient(135deg, var(--ck-teal) 0%, var(--ck-teal-light) 100%);
    color: #fff;
    font-family: Outfit, sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(0, 128, 96, 0.45),
                0 0 0 1px rgba(163, 255, 228, 0.35) inset;
}
.ck-lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0, 128, 96, 0.6),
                0 0 0 1px rgba(163, 255, 228, 0.5) inset;
}
.ck-lead-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 128, 96, 0.3);
}

.ck-lead-privacy {
    color: rgba(255,255,255,.55);
    font-size: 12.5px;
    margin: 18px 0 0;
    line-height: 1.55;
    font-weight: 500;
}

/* ============================ RESULTS ============================ */
.ck-results-section {
    background: var(--ck-bg);
    padding: 64px 20px 72px;
}
.ck-results-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ck-results-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--ck-dark);
    text-align: center;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}
.ck-results-subtitle {
    font-size: 15px;
    color: var(--ck-text-muted);
    text-align: center;
    margin: 0 0 32px;
}
.ck-gauge-wrap {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.ck-gauge-svg { width: 260px; height: 130px; display: block; margin: 0 auto; }
.ck-gauge-center {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.ck-gauge-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--ck-dark);
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}
.ck-gauge-max { font-size: 15px; color: var(--ck-text-muted); font-weight: 600; }
.ck-tier-wrap { text-align: center; margin-bottom: 40px; }
.ck-tier-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 41, 37, 0.08);
}
.ck-tier-desc {
    font-size: 15px;
    color: #475569;
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.55;
    font-weight: 500;
}

/* ===== YOUR READING (personalized narrative) ===== */
.ck-reading-section {
    margin-bottom: 28px;
}
.ck-reading-header {
    text-align: center;
    margin-bottom: 22px;
}
.ck-reading-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0, 128, 96, 0.1);
    border: 1px solid rgba(0, 128, 96, 0.25);
    color: var(--ck-teal-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 12px;
}
.ck-reading-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ck-dark);
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.ck-reading-subtitle {
    font-size: 15px;
    color: #475569;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.ck-blind-spot-card {
    background: var(--ck-card-bg);
    border-radius: var(--ck-radius);
    box-shadow: var(--ck-shadow);
    padding: 22px 24px 20px;
    margin-bottom: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid #fee2e2;
    position: relative;
    overflow: hidden;
    animation: ckFadeInUp .5s ease-out both;
}
.ck-blind-spot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ck-red), #f87171);
}
.ck-bs-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--ck-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ck-bs-body { flex: 1; min-width: 0; }
.ck-bs-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.ck-bs-priority-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.ck-bs-priority-must {
    background: #fef2f2;
    color: var(--ck-red);
    border: 1px solid #fecaca;
}
.ck-bs-priority-important {
    background: #fefce8;
    color: var(--ck-yellow);
    border: 1px solid #fef08a;
}
.ck-bs-answer-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ck-text-muted);
    font-style: italic;
}
.ck-bs-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ck-dark);
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.ck-bs-narrative {
    font-size: 15.5px;
    color: #1e293b;
    line-height: 1.6;
    margin: 0 0 14px;
    font-weight: 500;
}
.ck-bs-narrative strong {
    color: var(--ck-dark);
    font-weight: 800;
}
.ck-bs-narrative em {
    font-style: italic;
    color: var(--ck-teal-dark);
    font-weight: 700;
}
.ck-bs-cost-block {
    background: linear-gradient(135deg, #fef2f2 0%, #fffbeb 100%);
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 3px solid var(--ck-orange);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.ck-bs-cost-icon {
    flex-shrink: 0;
    color: var(--ck-orange);
    margin-top: 1px;
}
.ck-bs-cost-content { flex: 1; }
.ck-bs-cost-label {
    display: block;
    font-size: 10.5px;
    font-weight: 800;
    color: var(--ck-orange);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.ck-bs-cost-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}
.ck-bs-cost-text strong {
    color: var(--ck-dark);
    font-weight: 800;
}
.ck-hl-cost {
    color: var(--ck-red);
    font-weight: 800;
}
.ck-hl-good {
    color: var(--ck-green);
    font-weight: 800;
}

.ck-blind-spot-card.ck-bs-all-clear {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: #bbf7d0;
}
.ck-blind-spot-card.ck-bs-all-clear::before {
    background: linear-gradient(180deg, var(--ck-green), #34d399);
}
.ck-bs-icon.ck-bs-icon-clear {
    background: linear-gradient(135deg, #ecfdf5, #bbf7d0);
    color: var(--ck-green);
}

/* ===== STRENGTHS ===== */
.ck-strengths-section { margin-bottom: 28px; }
.ck-strengths-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: var(--ck-radius);
    padding: 22px 24px 20px;
}
.ck-strengths-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.ck-strengths-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ck-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ck-strengths-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ck-dark);
    margin: 0;
    letter-spacing: -0.2px;
}
.ck-strengths-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ck-strengths-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: #0f172a;
    line-height: 1.55;
    font-weight: 500;
}
.ck-strengths-list li strong {
    color: var(--ck-dark);
    font-weight: 800;
}
.ck-strengths-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--ck-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 11px;
}

/* ===== THE BOTTOM LINE ===== */
.ck-bottom-line {
    background: linear-gradient(135deg, #eef8f4 0%, #ffffff 100%);
    border-radius: var(--ck-radius);
    padding: 22px 24px;
    margin-bottom: 32px;
    box-shadow: var(--ck-shadow);
    border-left: 4px solid var(--ck-teal);
}
.ck-bottom-line-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--ck-teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ck-bottom-line-text {
    font-size: 16px;
    color: var(--ck-dark);
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}
.ck-bottom-line-text strong {
    color: var(--ck-dark);
    font-weight: 800;
}
.ck-bottom-line-text .ck-hl-good {
    color: var(--ck-green);
}

/* ===== MEGA CTA ===== */
.ck-cta-mega {
    background: linear-gradient(135deg, var(--ck-dark) 0%, var(--ck-dark-deep) 50%, #0b1a16 100%);
    border-radius: 20px;
    padding: 56px 40px 44px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 16px;
    box-shadow: 0 24px 60px rgba(0, 41, 37, 0.25);
}
.ck-cta-mega::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 20% 0%, rgba(0, 128, 96, 0.25), transparent 50%),
                radial-gradient(circle at 80% 100%, rgba(255, 200, 61, 0.15), transparent 50%);
    pointer-events: none;
    overflow: hidden;
}
.ck-cta-mega::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23a3ffe4' fill-opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

/* Free badge sticker (top-right) - red */
.ck-free-badge {
    position: absolute;
    top: -22px;
    right: 22px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(11deg);
    box-shadow: 0 14px 32px rgba(220, 38, 38, 0.55), 0 0 0 4px rgba(255, 255, 255, 0.14);
    z-index: 5;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    animation: ckBadgePulse 2.8s ease-in-out infinite;
}
.ck-free-badge::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    pointer-events: none;
}
.ck-free-badge-main {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1;
}
.ck-free-badge-bottom {
    font-size: 9.5px;
    letter-spacing: 0.7px;
    margin-top: 6px;
    padding: 0 8px;
    line-height: 1.2;
    opacity: 0.95;
    font-weight: 700;
}

@keyframes ckBadgePulse {
    0%, 100% { transform: rotate(11deg) scale(1); }
    50% { transform: rotate(11deg) scale(1.06); }
}

.ck-cta-mega-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin: 0 auto;
}
.ck-cta-mega .ck-cta-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(163, 255, 228, 0.14);
    border: 1px solid rgba(163, 255, 228, 0.3);
    color: #a3ffe4;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}
.ck-cta-mega h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.ck-cta-mega h2 span {
    background: linear-gradient(135deg, #a3ffe4 0%, #5fe3c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ck-cta-mega-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 28px;
    line-height: 1.7;
    max-width: 540px;
}

/* Pillars showing what's included */
.ck-cta-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto 32px;
    max-width: 560px;
}
.ck-cta-pillar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(163, 255, 228, 0.15);
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: background .3s, border-color .3s, transform .3s;
}
.ck-cta-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(163, 255, 228, 0.3);
    transform: translateY(-2px);
}
.ck-cta-pillar-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(163, 255, 228, 0.18);
    color: #a3ffe4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ck-cta-pillar-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

/* Stacked CTA (primary + WhatsApp underneath) */
.ck-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 3;
}

.ck-audit-wrap {
    position: relative;
    width: 100%;
}

.ck-cta-mega .ck-audit-trigger {
    width: 100%;
    justify-content: center;
    padding: 19px 28px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.2px;
    gap: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ck-teal) 0%, var(--ck-teal-light) 100%);
    box-shadow: 0 10px 28px rgba(0, 128, 96, 0.45);
    transition: border-radius .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ck-cta-mega .ck-audit-trigger .ck-cta-btn-arrow {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    transition: transform .25s ease;
}
.ck-audit-wrap:hover .ck-audit-trigger,
.ck-audit-wrap:focus-within .ck-audit-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateY(0);
    box-shadow: 0 14px 32px rgba(0, 128, 96, 0.55);
}
.ck-audit-wrap:hover .ck-cta-btn-arrow {
    transform: translateX(4px);
}

.ck-audit-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #ffffff;
    color: var(--ck-dark);
    border-radius: 0 0 14px 14px;
    padding: 0 22px;
    text-align: left;
    transition: max-height 350ms ease, opacity 240ms ease, padding 240ms ease;
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.5);
}
.ck-audit-wrap:hover .ck-audit-panel,
.ck-audit-wrap:focus-within .ck-audit-panel {
    max-height: 420px;
    opacity: 1;
    padding: 16px 22px 18px;
}
.ck-audit-panel-lead {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 10px;
    color: var(--ck-dark);
    font-weight: 600;
}
.ck-audit-panel-list {
    margin: 0;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(0, 41, 37, 0.82);
    font-weight: 500;
}
.ck-audit-panel-list li { margin-bottom: 4px; }
.ck-audit-panel-list li::marker {
    color: var(--ck-teal);
    font-weight: 800;
}
.ck-audit-panel-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ck-dark);
    margin: 12px 0 0;
    padding: 10px 12px;
    background: rgba(0, 128, 96, 0.08);
    border-left: 3px solid var(--ck-teal);
    border-radius: 8px;
}
.ck-audit-panel-guarantee > span:last-child {
    flex: 1;
    min-width: 140px;
    font-weight: 500;
}
.ck-audit-panel-guarantee strong {
    color: var(--ck-teal-dark);
    font-weight: 800;
}
.ck-audit-panel-guarantee-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ck-teal);
    padding: 4px 9px;
    border-radius: 999px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ck-cta-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
}

.ck-cta-social-proof {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.ck-cta-social-proof strong {
    color: rgba(163, 255, 228, 0.95);
    font-weight: 700;
}

/* ============================ RESTART ============================ */
.ck-restart-wrap { text-align: center; margin-top: 36px; }
.ck-restart-btn {
    background: transparent;
    color: var(--ck-teal);
    border: 2px solid var(--ck-teal);
    border-radius: 50px;
    padding: 10px 28px;
    font-family: Outfit, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}
.ck-restart-btn:hover { background: var(--ck-teal); color: #fff; }

/* CTAs */
.ck-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ck-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}
.ck-cta-btn.primary {
    background: var(--ck-teal);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,128,96,.3);
}
.ck-cta-btn.primary:hover {
    background: var(--ck-teal-dark);
    transform: translateY(-2px);
    color: #fff;
}
.ck-cta-btn.secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
}
.ck-cta-btn.secondary:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

/* ============================ VIDEO + FINAL CTA ============================ */
.ck-video-section { background: var(--ck-dark); color: #fff; padding: 60px 20px; }
.ck-video-section .ck-video-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.ck-video-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.25;
}
.ck-video-section h2 span { color: #a3ffe4; }
.ck-video-section p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 32px;
    line-height: 1.6;
}
.ck-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--ck-radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.ck-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ck-cta-section {
    background: linear-gradient(135deg, #eef8f4, #d1f5e8);
    padding: 60px 20px;
    text-align: center;
}
.ck-cta-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ck-dark);
    margin: 0 0 12px;
}
.ck-cta-section p {
    font-size: 1rem;
    color: var(--ck-text-muted);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.ck-cta-section .ck-cta-btn.secondary {
    background: var(--ck-card-bg);
    color: var(--ck-dark);
    border: 2px solid var(--ck-border);
}
.ck-cta-section .ck-cta-btn.secondary:hover {
    border-color: var(--ck-teal);
    color: var(--ck-teal);
}

/* ============================ ANIMATIONS ============================ */
@keyframes ckFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 768px) {
    .ck-hero { padding: 90px 16px 56px; }
    .ck-hero h1 { font-size: 34px; letter-spacing: -0.5px; }
    .ck-hero-subtitle { font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
    .ck-hero-subtitle strong { padding: 3px 9px; font-size: 15.5px; }
    .ck-hero-eyebrow { font-size: 11px; letter-spacing: 1.5px; padding: 6px 14px; margin-bottom: 20px; }
    .ck-hero-paper { display: none; }
    .ck-start-btn { padding: 17px 36px; font-size: 18px; }
    .ck-how-grid { flex-direction: column; gap: 16px; }
    .ck-how-arrow { display: none; }
    .ck-how-card { padding: 24px 20px; }
    .ck-quiz-container { padding: 40px 14px 30px; }
    .ck-quiz-inner { padding-top: 80px; }
    .ck-progress-sticky { top: 70px; padding: 12px 0; }
    .ck-quiz-intro h2 { font-size: 22px; }
    .ck-q-card { padding: 22px 18px 18px; }
    .ck-q-head { gap: 12px; margin-bottom: 18px; }
    .ck-q-num { width: 38px; height: 38px; font-size: 13px; border-radius: 10px; }
    .ck-q-text { font-size: 15.5px; }
    .ck-option-btn { padding: 14px 14px; font-size: 15.5px; min-height: 56px; gap: 12px; }
    .ck-opt-text { font-size: 15.5px; }
    .ck-opt-letter { min-width: 52px; height: 28px; font-size: 11px; padding: 0 8px; }
    .ck-q-priority { font-size: 10px; padding: 2px 8px; }
    .ck-finish-btn { padding: 14px 28px; min-width: 0; width: 100%; font-size: 15px; }
    .ck-gauge-svg { width: 220px; height: 120px; }
    .ck-gauge-number { font-size: 40px; }
    .ck-results-title { font-size: 26px; }
    .ck-reading-title { font-size: 22px; letter-spacing: -0.3px; }
    .ck-reading-subtitle { font-size: 14.5px; }
    .ck-blind-spot-card { padding: 20px 18px; gap: 12px; flex-direction: column; }
    .ck-bs-icon { width: 40px; height: 40px; }
    .ck-bs-title { font-size: 17px; }
    .ck-bs-narrative { font-size: 14.5px; line-height: 1.6; }
    .ck-bs-cost-text { font-size: 13.5px; line-height: 1.55; }
    .ck-strengths-card { padding: 20px 18px; }
    .ck-strengths-title { font-size: 16px; }
    .ck-strengths-list li { font-size: 14px; }
    .ck-bottom-line { padding: 20px; }
    .ck-bottom-line-text { font-size: 15px; line-height: 1.6; }
    .ck-cta-mega { padding: 64px 22px 36px; }
    .ck-cta-mega h2 { font-size: 26px; }
    .ck-cta-mega-desc { font-size: 14.5px; }
    .ck-free-badge { width: 96px; height: 96px; top: -16px; right: 12px; }
    .ck-free-badge-main { font-size: 24px; letter-spacing: 1.2px; }
    .ck-free-badge-bottom { font-size: 8.5px; margin-top: 4px; }
    .ck-cta-pillars { grid-template-columns: 1fr; gap: 10px; }
    .ck-cta-pillar { flex-direction: row; justify-content: flex-start; gap: 12px; padding: 12px 14px; }
    .ck-cta-pillar-text { text-align: left; }
    .ck-cta-stack { max-width: 100%; }
    .ck-cta-mega .ck-audit-trigger { padding: 16px 22px; font-size: 15.5px; }
    .ck-audit-panel-lead, .ck-audit-panel-list { font-size: 12.5px; }
    .ck-lead-card { padding: 40px 24px 32px; border-radius: 20px; }
    .ck-lead-icon { width: 64px; height: 64px; margin-bottom: 16px; }
    .ck-lead-title { font-size: 26px; }
    .ck-lead-subtitle { font-size: 15px; margin-bottom: 26px; }
    .ck-lead-input { padding: 14px 18px; font-size: 15px; }
    .ck-lead-btn { padding: 15px 22px; font-size: 16px; }
    .ck-lead-section { padding: 80px 16px 56px; }
    .ck-video-section { padding: 40px 16px; }
    .ck-video-section h2 { font-size: 1.3rem; }
    .ck-cta-section { padding: 40px 16px; }
    .ck-cta-section h2 { font-size: 1.35rem; }
    .ck-cta-buttons { flex-direction: column; align-items: stretch; }
    .ck-cta-btn { justify-content: center; padding: 14px 24px; }
}

@media (max-width: 400px) {
    .ck-hero h1 { font-size: 28px; }
    .ck-hero { padding: 80px 14px 44px; }
    .ck-start-btn { padding: 14px 32px; font-size: 16px; }
    .ck-gauge-svg { width: 200px; height: 110px; }
    .ck-gauge-number { font-size: 34px; }
}
