/* ============================================
   CONSTRUCTION ACCOUNTING CHECKLIST — QUIZ STYLE
   Brand: Teal (#009282), Dark (#002A3A)
   ============================================ */

.ck-page {
    --ck-teal: #009282;
    --ck-teal-dark: #007a6c;
    --ck-teal-light: #3aa9a0;
    --ck-dark: #002A3A;
    --ck-dark-deep: #001a25;
    --ck-bg: #f0fafa;
    --ck-card-bg: #ffffff;
    --ck-text: #002A3A;
    --ck-text-muted: #64748b;
    --ck-border: #e2e8f0;
    --ck-shadow: 0 4px 20px rgba(0, 42, 58, 0.08);
    --ck-radius: 16px;
    --ck-gold: #d4a017;
    --ck-gold-light: #e0b84a;
    --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; }

/* --- Container --- */
.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%, #0a1520 100%);
    padding: 160px 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, 146, 130, 0.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(212, 160, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ck-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ck-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.15;
}

.ck-hero h1 span {
    background: linear-gradient(135deg, #5eead4 0%, #2dd4bf 50%, #5eead4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ck-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.ck-hero-byline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
}

.ck-start-btn {
    background: linear-gradient(135deg, var(--ck-teal) 0%, var(--ck-teal-light) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 146, 130, 0.4);
}

/* ========================================
   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: 900px;
    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;
    font-size: 28px;
}

.ck-how-icon.icon-teal {
    background: rgba(0, 146, 130, 0.12);
    color: var(--ck-teal);
}

.ck-how-icon.icon-dark {
    background: rgba(0, 42, 58, 0.1);
    color: var(--ck-dark);
}

.ck-how-icon.icon-gold {
    background: rgba(212, 160, 23, 0.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.5;
}

.ck-how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ck-teal);
    flex-shrink: 0;
}

/* ========================================
   QUIZ CONTAINER
   ======================================== */
.ck-quiz-container {
    background: var(--ck-bg);
    padding: 60px 20px 40px;
    min-height: 80vh;
}

.ck-quiz-inner {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 100px;
}

/* ========================================
   STICKY PROGRESS BAR
   ======================================== */
.ck-progress-sticky {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    border-bottom: 1px solid var(--ck-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.ck-progress-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.ck-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--ck-teal), var(--ck-gold));
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(0, 146, 130, 0.4);
}

.ck-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.ck-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ck-dark);
}

.ck-question-counter {
    font-size: 13px;
    color: var(--ck-text-muted);
    font-weight: 500;
}

/* ========================================
   QUIZ STEPS
   ======================================== */
.ck-step {
    display: none;
}

.ck-step.active {
    display: block;
    animation: ckFadeInUp 0.4s ease-out;
}

.ck-step-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ck-teal);
}

.ck-step-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--ck-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.ck-step-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--ck-dark);
    margin: 0;
}

/* ========================================
   QUESTION CARDS
   ======================================== */
.ck-question {
    background: var(--ck-card-bg);
    border-radius: var(--ck-radius);
    box-shadow: var(--ck-shadow);
    padding: 24px 28px;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.ck-question.answered {
    border-left-color: var(--ck-teal);
}

.ck-question-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ck-question-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--ck-bg);
    color: var(--ck-dark);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-question.answered .ck-question-num {
    background: var(--ck-teal);
    color: #fff;
}

.ck-question-content {
    flex: 1;
}

.ck-question-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ck-dark);
    margin-bottom: 6px;
    display: block;
}

.ck-question-hint {
    font-size: 13px;
    color: var(--ck-text-muted);
    margin: 0 0 12px;
    line-height: 1.5;
    font-style: italic;
}

/* ========================================
   DROPDOWN SELECTS
   ======================================== */
.ck-dropdown {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid var(--ck-border);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--ck-dark);
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: 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='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.ck-dropdown:focus {
    border-color: var(--ck-teal);
    box-shadow: 0 0 0 3px rgba(0, 146, 130, 0.15);
    outline: none;
}

.ck-dropdown.answered {
    border-color: var(--ck-teal);
    background-color: #f0fdfa;
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */
.ck-nav-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.ck-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.ck-btn-next {
    background: var(--ck-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.ck-btn-next:hover {
    background: #003d52;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 42, 58, 0.25);
}

.ck-btn-prev {
    background: transparent;
    color: var(--ck-dark);
    border: 2px solid var(--ck-dark);
    border-radius: 50px;
    padding: 12px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-btn-prev:hover {
    background: var(--ck-dark);
    color: #fff;
}

/* ========================================
   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%, #003d52 100%);
    padding: 120px 20px 80px;
}

.ck-lead-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ck-lead-icon {
    width: 70px;
    height: 70px;
    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 24px;
    color: #fff;
}

.ck-lead-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.ck-lead-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.ck-lead-field {
    margin-bottom: 16px;
}

.ck-lead-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    box-sizing: border-box;
}

.ck-lead-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ck-lead-input:focus {
    border-color: var(--ck-teal);
    background: rgba(255, 255, 255, 0.12);
}

.ck-lead-error {
    color: #ff6b6b;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
}

.ck-lead-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--ck-teal), var(--ck-teal-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.ck-lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 146, 130, 0.35);
}

.ck-lead-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ck-lead-privacy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: 0;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.ck-results-section {
    background: var(--ck-bg);
    padding: 80px 20px;
}

.ck-results-inner {
    max-width: 860px;
    margin: 0 auto;
}

.ck-results-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--ck-dark);
    text-align: center;
    margin: 0 0 8px;
}

.ck-results-subtitle {
    font-size: 16px;
    color: var(--ck-text-muted);
    text-align: center;
    margin: 0 0 48px;
}

/* ========================================
   GAUGE
   ======================================== */
.ck-gauge-wrap {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.ck-gauge-svg {
    width: 280px;
    height: 140px;
    display: block;
    margin: 0 auto;
}

.ck-gauge-center {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.ck-gauge-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--ck-dark);
    line-height: 1;
    display: block;
}

.ck-gauge-max {
    font-size: 16px;
    color: var(--ck-text-muted);
    font-weight: 500;
}

/* ========================================
   TIER BADGE
   ======================================== */
.ck-tier-wrap {
    text-align: center;
    margin-bottom: 56px;
}

.ck-tier-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ck-tier-desc {
    font-size: 15px;
    color: var(--ck-text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ========================================
   RECOMMENDATION CARDS
   ======================================== */
.ck-rec-section {
    margin-bottom: 48px;
}

.ck-rec-section > h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ck-dark);
    margin: 0 0 8px;
}

.ck-rec-section > p {
    font-size: 15px;
    color: var(--ck-text-muted);
    margin: 0 0 24px;
}

.ck-rec-card {
    background: var(--ck-card-bg);
    border-radius: var(--ck-radius);
    box-shadow: var(--ck-shadow);
    padding: 24px;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
    animation: ckFadeInUp 0.4s ease-out both;
}

.ck-rec-card:hover {
    transform: translateY(-2px);
}

.ck-rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ck-rec-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--ck-dark);
    margin: 0;
}

.ck-rec-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ck-rec-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ck-rec-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.ck-rec-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.ck-rec-score {
    font-size: 14px;
    font-weight: 700;
    color: var(--ck-dark);
    white-space: nowrap;
}

.ck-rec-desc {
    font-size: 14px;
    color: var(--ck-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESULTS CTA CARD
   ======================================== */
.ck-results-cta-card {
    background: linear-gradient(135deg, var(--ck-dark) 0%, var(--ck-dark-deep) 100%);
    border-radius: var(--ck-radius);
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 32px;
}

.ck-results-cta-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(0, 146, 130, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ck-results-cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #5eead4;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

.ck-results-cta-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ========================================
   RESTART BUTTON
   ======================================== */
.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 0.3s ease;
}

.ck-restart-btn:hover {
    background: var(--ck-teal);
    color: #fff;
}

/* ========================================
   CTA BUTTONS (shared)
   ======================================== */
.ck-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ck-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ck-cta-btn.primary {
    background: var(--ck-teal);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 146, 130, 0.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, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.ck-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.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: #5eead4;
}

.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, 0.4);
}

.ck-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   BOTTOM CTA SECTION
   ======================================== */
.ck-cta-section {
    background: linear-gradient(135deg, #f0fdfa, #d3fdfd);
    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: 560px;
    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(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 768px) {
    .ck-hero {
        padding: 120px 16px 60px;
    }

    .ck-hero h1 {
        font-size: 32px;
    }

    .ck-hero-subtitle {
        font-size: 15px;
    }

    .ck-how-grid {
        flex-direction: column;
        gap: 16px;
    }

    .ck-how-arrow {
        display: none;
    }

    .ck-how-card {
        padding: 24px 20px;
    }

    .ck-quiz-container {
        padding: 40px 16px 30px;
    }

    .ck-quiz-inner {
        padding-top: 70px;
    }

    .ck-progress-sticky {
        top: 70px;
        padding: 12px 0;
    }

    .ck-question-row {
        flex-direction: column;
        gap: 12px;
    }

    .ck-question-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .ck-question {
        padding: 20px;
    }

    .ck-step-header h3 {
        font-size: 22px;
    }

    .ck-nav-buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .ck-btn-next,
    .ck-btn-prev {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .ck-gauge-svg {
        width: 220px;
        height: 120px;
    }

    .ck-gauge-number {
        font-size: 36px;
    }

    .ck-results-title {
        font-size: 26px;
    }

    .ck-rec-header {
        flex-direction: column;
        gap: 8px;
    }

    .ck-results-cta-card {
        padding: 40px 20px;
    }

    .ck-results-cta-card h2 {
        font-size: 22px;
    }

    .ck-lead-card {
        padding: 36px 24px;
    }

    .ck-lead-title {
        font-size: 24px;
    }

    .ck-lead-section {
        padding: 100px 16px 60px;
    }

    .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;
    }
}

/* ========================================
   RESPONSIVE — SMALL PHONE
   ======================================== */
@media (max-width: 400px) {
    .ck-hero h1 {
        font-size: 26px;
    }

    .ck-hero {
        padding: 100px 16px 48px;
    }

    .ck-gauge-svg {
        width: 180px;
        height: 100px;
    }

    .ck-gauge-number {
        font-size: 30px;
    }

    .ck-start-btn {
        padding: 14px 36px;
        font-size: 16px;
    }
}
