/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a; /* Dark slate background for browser body */
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
}

/* Main App Container (Centered on Desktop, Full Screen on Mobile) */
#app-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
}

#app-container.step-9-locked {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

#app-container.step-9-locked #step-9.active {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

#app-container.step-9-locked .top-bar {
    flex-shrink: 0;
}

/* Step Sections */
.step-section {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.step-section.active {
    display: flex;
}

/* Transition Animations */
.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

/* Shared Top Bar (Urgency Timer) */
.top-bar {
    background-color: #161616;
    color: #fff;
    width: 100%;
    padding: 10px 14px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-green {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.top-bar span#countdown-timer {
    color: #ef4444;
    font-weight: 700;
}

.slots-remaining {
    color: #f87171;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.slots-remaining strong {
    color: #ef4444;
}

/* Shared Views Counter (Only shown on Step 10) */
.views-counter {
    background-color: #ffffff;
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 99;
}

.dot-red {
    width: 7px;
    height: 7px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
}

.views-counter strong {
    color: #ef4444;
}

/* Step 10 sales top bar (expired / urgency) */
.top-bar.sales-expired-bar {
    background-color: #140808;
    color: #ef4444;
    font-weight: 700;
    letter-spacing: 0.4px;
    position: relative;
}
.top-bar.sales-expired-bar #top-bar-dot,
.top-bar.sales-expired-bar .dot-green {
    background-color: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    animation: sales-dot-pulse 1.6s ease-out infinite;
}
.top-bar.sales-expired-bar .slots-remaining {
    display: none !important;
}
.top-bar.sales-expired-bar #top-bar-label {
    color: #ef4444;
    text-transform: uppercase;
}
.top-bar.sales-expired-bar #countdown-timer {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
@keyframes sales-dot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Main Wrapper */
.main-wrapper {
    width: 100%;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Titles and Subtitles */
h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

p.subtitle {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Step 1 / 2 / 3 / 4 / 9 shared top bar (centered like reference) */
#app-container:has(#step-1.active) .top-bar,
#app-container:has(#step-2.active) .top-bar,
#app-container:has(#step-3.active) .top-bar,
#app-container:has(#step-4.active) .top-bar,
#app-container:has(#step-9.active) .top-bar {
    justify-content: center;
    padding: 11px 12px;
}
#app-container:has(#step-1.active) .slots-remaining,
#app-container:has(#step-2.active) .slots-remaining,
#app-container:has(#step-3.active) .slots-remaining,
#app-container:has(#step-4.active) .slots-remaining,
#app-container:has(#step-9.active) .slots-remaining {
    display: none;
}
#app-container:has(#step-1.active) .top-bar-left,
#app-container:has(#step-2.active) .top-bar-left,
#app-container:has(#step-3.active) .top-bar-left,
#app-container:has(#step-4.active) .top-bar-left,
#app-container:has(#step-9.active) .top-bar-left {
    width: 100%;
    justify-content: center;
    gap: 7px;
}
#app-container:has(#step-1.active) #top-bar-label,
#app-container:has(#step-2.active) #top-bar-label,
#app-container:has(#step-3.active) #top-bar-label,
#app-container:has(#step-4.active) #top-bar-label,
#app-container:has(#step-9.active) #top-bar-label {
    letter-spacing: 0.55px;
    color: #fff;
    font-weight: 500;
}
#app-container:has(#step-1.active) #countdown-timer,
#app-container:has(#step-2.active) #countdown-timer,
#app-container:has(#step-3.active) #countdown-timer,
#app-container:has(#step-4.active) #countdown-timer,
#app-container:has(#step-9.active) #countdown-timer {
    color: #f43f5e;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* Step 1 — mobile proportions matching reference */
#step-1 .main-wrapper {
    /* Large top gap like the print (~button height below the bar) */
    padding: 40px 18px 40px;
    width: 100%;
}
#step-1 h1 {
    font-size: 26px;
    max-width: 20ch;
    margin: 0 auto 14px;
    line-height: 1.28;
    letter-spacing: -0.45px;
}
#step-1 p.subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 auto 26px;
    padding: 0 8px;
    max-width: 34ch;
    color: #4b5563;
}
#step-1 .selection-card {
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
}
#step-1 .selection-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 18px;
}
#step-1 .btn-choice {
    padding: 16px 18px;
    font-size: 17px;
    border-radius: 14px;
    margin-bottom: 12px;
}
#step-1 .btn-choice:last-child {
    margin-bottom: 0;
}
#step-1 .btn-man {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.32);
}
#step-1 .btn-woman {
    background: linear-gradient(180deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 18px rgba(219, 39, 119, 0.32);
}
#step-1 .btn-choice span {
    font-size: 20px;
}
#step-1 .live-activity-card {
    border-radius: 24px;
    padding: 20px;
}
#step-1 .live-header {
    margin-bottom: 14px;
    font-size: 11px;
}
#step-1 .activity-list {
    gap: 8px;
}
#step-1 .activity-item {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 8px;
    font-size: 12.5px;
}
#step-1 .activity-status {
    font-size: 12px;
    text-align: right;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#step-1 .activity-left {
    flex-shrink: 0;
}

@media (max-width: 390px) {
    #step-1 .main-wrapper {
        padding: 36px 16px 36px;
    }
    #step-1 h1 {
        font-size: 24px;
        max-width: 18ch;
    }
    #step-1 p.subtitle {
        font-size: 13.5px;
        margin-bottom: 24px;
    }
    #step-1 .selection-card {
        padding: 22px 16px;
    }
    #step-1 .btn-choice {
        padding: 15px 16px;
        font-size: 16px;
    }
    #step-1 .live-activity-card {
        padding: 16px;
    }
    #step-1 .activity-item {
        font-size: 12px;
        padding: 11px 12px;
    }
    #step-1 .activity-status {
        font-size: 11.5px;
    }
}

@media (min-width: 391px) and (max-width: 430px) {
    #step-1 .main-wrapper {
        padding: 42px 18px 40px;
    }
    #step-1 h1 {
        font-size: 26px;
    }
}

/* Back Button */
.btn-back {
    font-size: 13px;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
    font-weight: 500;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Selection Card & Choices (Step 1) */
.selection-card {
    background: #ffffff;
    width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.selection-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 18px;
}

.btn-choice {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, filter 0.2s ease;
}

.btn-choice:last-child {
    margin-bottom: 0;
}

.btn-choice:hover {
    filter: brightness(1.05);
}

.btn-choice:active {
    transform: scale(0.98);
}

.btn-man {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.32);
}

.btn-woman {
    background: linear-gradient(180deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 18px rgba(219, 39, 119, 0.32);
}

.btn-choice span {
    font-size: 20px;
}

/* Live Activity Card */
.live-activity-card {
    background: #ffffff;
    width: 100%;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.live-header .scanner-count {
    color: #6b7280;
    font-weight: 500;
    text-transform: none;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item {
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.activity-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
}

.activity-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

.activity-status {
    color: #6b7280;
    font-weight: 400;
}

/* Step 2 Input Card */
.input-card {
    background: #ffffff;
    width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.country-select {
    flex: 1;
    min-width: 0;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    outline: none;
    cursor: pointer;
}

.phone-input {
    flex: 1.8;
    min-width: 0;
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-input::placeholder {
    color: #94a3b8;
}

.phone-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.info-row {
    font-size: 12.5px;
    color: #4b5563;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.info-row:last-of-type {
    margin-bottom: 22px;
}

.info-row strong {
    color: #111827;
}

.btn-reveal {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, #059669 0%, #047857 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    transition: filter 0.2s ease, transform 0.1s ease;
}
.btn-reveal-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 15px;
}
.btn-reveal-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
    gap: 2px;
}
.btn-reveal-label {
    font-size: 16px;
    font-weight: 800;
}
.btn-reveal-arrow {
    font-size: 15px;
    font-weight: 700;
    opacity: 0.95;
}

.btn-reveal:hover {
    filter: brightness(1.05);
}

.btn-reveal:active {
    transform: scale(0.98);
}

/* Step 2 — mobile proportions matching reference */
#step-2 .main-wrapper {
    padding: 40px 18px 40px;
    width: 100%;
}
#step-2 .input-card {
    padding: 20px 18px 22px;
    margin-bottom: 18px;
}
#step-2 .btn-back {
    align-self: center;
    margin: 0 auto 12px;
    font-size: 13px;
    color: #6b7280;
    display: inline-flex;
    justify-content: center;
    width: auto;
}
#step-2 .input-card #step-2-title,
#step-2 #step-2-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.4px;
    margin: 0 auto 20px;
    padding: 0 4px;
    max-width: 18ch;
}
#step-2 .phone-input-group {
    margin-bottom: 18px;
}
#step-2 .live-activity-card {
    border-radius: 24px;
    padding: 20px;
}
#step-2 .activity-item {
    gap: 8px;
}
#step-2 .activity-status {
    font-size: 12px;
    text-align: right;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#step-2 .activity-left {
    flex-shrink: 0;
}

@media (max-width: 390px) {
    #step-2 .main-wrapper {
        padding: 36px 16px 36px;
    }
    #step-2 #step-2-title {
        font-size: 20px;
        max-width: 17ch;
    }
    #step-2 .input-card {
        padding: 18px 16px 20px;
    }
    #step-2 .country-select {
        font-size: 14px;
        padding: 13px 8px;
    }
    #step-2 .phone-input {
        font-size: 15px;
        padding: 13px 14px;
    }
    #step-2 .live-activity-card {
        padding: 16px;
    }
}

/* Step 3 Profile Verification */
#step-3 .main-wrapper {
    padding: 40px 18px 40px;
    width: 100%;
}

.profile-card {
    background: #ffffff;
    width: 100%;
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.avatar-container {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 3px;
    border: 2.5px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.avatar-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.business-badge {
    background-color: #10b981;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.phone-number {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.location-info {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    font-weight: 500;
}

.registered-badge {
    background-color: #e6f4ea;
    color: #0d9488;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.registered-dot {
    width: 6px;
    height: 6px;
    background-color: #0d9488;
    border-radius: 50%;
}

.btn-start {
    width: 100%;
    background-color: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
    margin-bottom: 10px;
    transition: background 0.2s, transform 0.1s;
}

.btn-start:hover {
    background-color: #0f766e;
}

.btn-start:active {
    transform: scale(0.98);
}

.security-note {
    font-size: 11.5px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-change-number {
    width: 100%;
    background-color: #ffffff;
    color: #4b5563;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-change-number:hover {
    background-color: #f9fafb;
}

.btn-change-number:active {
    transform: scale(0.98);
}

/* Step 4 Loading 1 (Connection) */
.loader-circle {
    width: 72px;
    height: 72px;
    border: 5px solid #e2e8f0;
    border-top: 5px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phone-display {
    font-size: 20px;
    font-weight: 700;
    color: #f43f5e;
    margin-bottom: 6px;
}

.connection-verified {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 500;
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.progress-track {
    flex: 1;
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: #059669;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 15px;
    font-weight: 700;
    color: #059669;
    min-width: 2.6em;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

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

.step-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-align: left;
    transition:
        background-color 0.45s ease,
        border-color 0.45s ease,
        color 0.45s ease,
        box-shadow 0.45s ease,
        transform 0.35s ease;
}

.step-item.completed {
    background: #e8f8f3;
    border-color: #9fe0cf;
    color: #0f766e;
}

.step-item.active {
    background: #eefaf6;
    border-color: #b6e9db;
    color: #111827;
    box-shadow: none;
}

.step-item.just-completed {
    animation: stepCompletePulse 0.7s ease;
}

@keyframes stepCompletePulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

.step-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: transparent;
    background: #e2e8f0;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.step-item.completed .step-icon {
    background: #22c55e;
    color: #fff;
}
.step-item.completed .step-icon::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.step-item.active .step-icon {
    background: transparent;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}
.step-item.active .step-icon::after {
    content: none;
}

.step-item:not(.completed):not(.active) .step-icon {
    background: #e5e7eb;
}

/* ========== Step 4 — Accessing WhatsApp (exact print match) ========== */
#step-4 {
    background: #f1f2f6;
    min-height: calc(100vh - 42px);
}
#step-4 .main-wrapper {
    padding: 28px 20px 40px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
#step-4 .loader-circle {
    width: 58px;
    height: 58px;
    margin: 8px auto 20px;
    border-width: 3.5px;
    border-color: #d4e8e4;
    border-top-color: #0d9f85;
    box-sizing: border-box;
}
#step-4 h1 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.4px;
    margin: 0 0 10px;
    line-height: 1.2;
}
#step-4 .phone-display {
    font-size: 20px;
    font-weight: 700;
    color: #ce3c70;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
}
#step-4 .connection-verified {
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}
#step-4 .progress-container {
    margin: 0 0 22px;
    gap: 10px;
}
#step-4 .progress-track {
    height: 7px;
    border-radius: 999px;
    background: #e5e7eb;
}
#step-4 .progress-fill {
    background: #2da38b;
    border-radius: 999px;
}
#step-4 .progress-text {
    color: #2da38b;
    font-size: 15px;
    font-weight: 600;
    min-width: 2.4em;
}
#step-4 .steps-list {
    gap: 9px;
}
#step-4 .step-item {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 15px;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: #4b5563;
    box-shadow: none;
}
#step-4 .step-item.completed {
    background: #deebec;
    border-color: #c5dcdb;
    color: #0f766e;
}
#step-4 .step-item.active {
    background: #eef1f4;
    border-color: #d5dae2;
    color: #1f2937;
}
#step-4 .step-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 5px;
    background: #e5e7eb;
    border: none;
    animation: none;
}
#step-4 .step-item.completed .step-icon {
    background: #3ec442;
    border-radius: 5px;
    border: none;
    animation: none;
}
#step-4 .step-item.completed .step-icon::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
#step-4 .step-item.active .step-icon {
    background: #9ca3af;
    border-radius: 50%;
    border: none;
    animation: none;
    color: #fff;
}
#step-4 .step-item.active .step-icon::after {
    content: none;
}
#step-4 .step-item.active .step-icon .sync-icon {
    width: 13px;
    height: 13px;
    display: block;
    animation: spin 1.1s linear infinite;
}
#step-4 .step-item:not(.completed):not(.active) .step-icon {
    background: #e5e7eb;
    border-radius: 5px;
}
#step-4 .step-item:not(.completed):not(.active) .step-icon::after {
    content: none;
}

@media (max-width: 390px) {
    #step-4 .main-wrapper {
        padding: 24px 16px 36px;
    }
    #step-4 h1 {
        font-size: 22px;
    }
    #step-4 .phone-display {
        font-size: 18px;
    }
    #step-4 .step-item {
        padding: 13px 14px;
        font-size: 13.5px;
    }
}

.step-icon.icon-swap {
    opacity: 0;
    transform: scale(0.75);
}

/* Step 5 Loading 2 (Decrypting) */
.content-card {
    background: #ffffff;
    width: 100%;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-section {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 20px;
}

.shield-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.header-title {
    font-size: 20px;
    font-weight: 800;
    color: #ef4444;
    line-height: 1.2;
}

.terminal-box {
    width: 100%;
    background: #111827;
    border-radius: 16px;
    padding: 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.terminal-log-line {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.terminal-log-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.t-green { color: #4ade80; }
.t-cyan { color: #22d3ee; }
.t-orange { color: #fb923c; }
.t-muted { color: #9ca3af; }
.t-white { color: #e5e7eb; }
.t-red { color: #f87171; }
.t-yellow { color: #fbbf24; }

.t-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    margin: 6px 0;
}

.t-access {
    color: #4ade80;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 2px 0;
}

.terminal-box-prebio {
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: none;
}

.terminal-box-prebio::-webkit-scrollbar {
    display: none;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
}

.progress-label {
    color: #4b5563;
}

.progress-percent {
    color: #059669;
}

.result-box {
    width: 100%;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 12px;
}

.result-value-large {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 3px;
    font-variant-numeric: tabular-nums;
}

.dual-values {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sub-value-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.sub-number {
    font-size: 26px;
    font-weight: 800;
    color: #ef4444;
}

/* Step 6 Cloud Backup Recovery (before biometric) */
.cloud-backup-wrapper {
    gap: 12px;
    padding-top: 16px !important;
    padding-bottom: 28px !important;
}

.cloud-target-card {
    background: #eceff1;
    border-radius: 16px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.cloud-target-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cloud-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    filter: blur(5px);
    flex-shrink: 0;
    background: #cbd5e1;
}

.cloud-target-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    min-width: 0;
}

.cloud-phone {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.cloud-meta-line {
    font-size: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cloud-meta-line .pin {
    color: #ef4444;
    font-size: 11px;
}

.cloud-connection {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cloud-field {
    background: #eceff1;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #9ca3af;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 44px;
    overflow: hidden;
    width: 100%;
}

.cloud-field-value {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
    text-align: left;
}

.cloud-field-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.cloud-field-dot.reject {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.7);
    animation: cloudPulseDot 1s ease infinite;
}

.cloud-field-dot.ok {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
}

@keyframes cloudPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.cloud-key-status {
    font-size: 12px;
    color: #ef4444;
    font-weight: 500;
    padding-left: 2px;
    min-height: 18px;
    width: 100%;
    text-align: left;
}

.cloud-status-card {
    background: #eceff1;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.cloud-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cloud-status-icon.spinning svg {
    animation: spin 1.2s linear infinite;
}

.cloud-status-text {
    text-align: left;
}

.cloud-status-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.cloud-status-title.success-title {
    color: #dc2626;
}

.cloud-status-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.cloud-progress-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.cloud-progress-track {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.cloud-progress-fill {
    height: 100%;
    width: 0%;
    background: #10b981;
    border-radius: 999px;
    transition: width 0.15s linear;
}

.cloud-progress-pct {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    min-width: 40px;
    text-align: right;
}

.cloud-map {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #34d399;
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.25);
    background: #dfe8df;
}

.cloud-map::before,
.cloud-map::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #34d399;
    border-style: solid;
    z-index: 5;
    pointer-events: none;
}

.cloud-map::before {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
}

.cloud-map::after {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
}

.cloud-map-corners-bl,
.cloud-map-corners-br {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #34d399;
    border-style: solid;
    z-index: 5;
    pointer-events: none;
}

.cloud-map-corners-bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
}

.cloud-map-corners-br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
}

.cloud-leaflet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #dfe8df;
}

.cloud-leaflet .leaflet-control-attribution {
    display: none;
}

.cloud-leaflet .leaflet-tile-pane {
    filter: saturate(0.85) contrast(1.05) brightness(0.98);
}

.cloud-map-pin-icon {
    background: transparent !important;
    border: none !important;
}

.cloud-map-marker {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-map-marker::before,
.cloud-map-marker::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.45);
    animation: cloudRadarPulse 2.2s ease-out infinite;
}

.cloud-map-marker::before {
    width: 44px;
    height: 44px;
}

.cloud-map-marker::after {
    width: 70px;
    height: 70px;
    animation-delay: 0.55s;
    border-color: rgba(248, 113, 113, 0.35);
}

.cloud-map-marker-pin {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 30px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.cloud-map-marker-pin svg {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes cloudRadarPulse {
    0% { transform: scale(0.55); opacity: 0.85; }
    100% { transform: scale(1.35); opacity: 0; }
}

.cloud-map-phone {
    position: absolute;
    right: 10px;
    top: 42px;
    z-index: 4;
    opacity: 0.88;
    pointer-events: none;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.cloud-approx {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 0.6px;
    z-index: 4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.cloud-tracking-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 6;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.45);
}

.cloud-tracking-badge .blink {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: cloudPulseDot 1s ease infinite;
}

.cloud-map-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(52, 211, 153, 0.45);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 6;
    max-width: calc(100% - 140px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.cloud-map-label-pin {
    color: #ef4444;
    font-size: 12px;
    line-height: 1;
}

.cloud-map-coords {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 10px;
    font-family: 'Share Tech Mono', monospace;
    color: #86efac;
    z-index: 6;
    pointer-events: none;
    letter-spacing: 0.2px;
}

.cloud-section-title {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #9ca3af;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cloud-section-title::before,
.cloud-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d1d5db;
}

.cloud-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    width: 100%;
}

.cloud-stats-row .keys-current {
    color: #10b981;
    font-weight: 800;
}

.cloud-stats-row .keys-speed {
    color: #3b82f6;
    font-weight: 800;
}

.cloud-log-box {
    background: #eceff1;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11.5px;
    color: #4b5563;
    line-height: 1.55;
    min-height: 72px;
    text-align: left;
    width: 100%;
}

.cloud-log-line {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cloud-log-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.cloud-redflags {
    display: none;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    width: 100%;
}

.cloud-redflags.visible {
    display: flex;
}

.cloud-redflags-title {
    font-size: 13px;
    font-weight: 800;
    color: #0d9488;
    letter-spacing: 0.5px;
}

.cloud-redflags-body {
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cloud-deep-scan {
    color: #0d9488;
    font-weight: 700;
}

#cloud-screen.phase-done .cloud-target-card,
#cloud-screen.phase-done .cloud-field,
#cloud-screen.phase-done .cloud-key-status {
    display: none;
}

/* Step 7 Biometric Signature Analysis */
.dark-step {
    background-color: #050705 !important;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px) !important;
    background-size: 28px 28px !important;
    color: #ffffff !important;
    min-height: 100vh;
}

.dark-step .top-bar,
#app-container.dark-step .top-bar {
    background: rgba(10, 14, 12, 0.95);
}

.dark-step h1, .dark-step .section-title {
    color: #55c767 !important;
}

.bio-wrapper {
    padding-top: 28px !important;
}

.fingerprint-container {
    margin-bottom: 22px;
    margin-top: 8px;
    position: relative;
    width: 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter:
        drop-shadow(0 0 18px rgba(85, 199, 103, 0.55))
        drop-shadow(0 0 40px rgba(85, 199, 103, 0.35));
}

.fingerprint-icon {
    width: 168px;
    height: 168px;
    object-fit: contain;
    display: block;
    mix-blend-mode: lighten;
}

/* Remove scan line — reference shows static glowing fingerprint */
.fingerprint-container::after {
    display: none;
}

.section-title {
    font-size: 15px;
    font-weight: 800;
    color: #55c767;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bio-title {
    gap: 8px;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

.bio-dna {
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(120, 140, 255, 0.45));
}

.bio-title-text {
    color: #55c767;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-shadow:
        0 0 8px rgba(85, 199, 103, 0.55),
        0 0 18px rgba(85, 199, 103, 0.35);
}

.section-subtitle {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.45;
    margin-bottom: 18px;
    padding: 0 12px;
}

.bio-subtitle {
    color: #b0b0b0 !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
    max-width: 340px;
}

.progress-line {
    width: 100%;
    height: 3px;
    background-color: #143825;
    border-radius: 2px;
    margin-bottom: 18px;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.1);
    overflow: hidden;
}

.progress-line-fill {
    height: 100%;
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.75);
    transition: width 0.15s linear;
}

.green-terminal {
    background: #060908 !important;
    border: 1px solid #1a3d28 !important;
    color: #10b981 !important;
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.08);
}

.green-terminal .terminal-log-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12.5px;
}

.terminal-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 5px #10b981;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.terminal-dot.active-dot {
    background-color: #fbbf24;
    box-shadow: 0 0 8px #fbbf24;
    animation: cloudPulseDot 0.9s ease infinite;
}

.terminal-dot.done-dot {
    background-color: #10b981;
    box-shadow: 0 0 5px #10b981;
}

.match-card {
    width: 100%;
    background: linear-gradient(180deg, #1a0a0c 0%, #120608 100%);
    border: 1px solid #7f1d1d;
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 0 28px rgba(220, 38, 38, 0.25);
    margin-bottom: 14px;
}

.match-header {
    font-size: 16px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.match-desc {
    font-size: 13px;
    color: #fde68a;
    line-height: 1.4;
    margin-bottom: 10px;
}

.match-subtext {
    font-size: 12px;
    color: #fcd34d;
}

.match-percentage {
    font-size: 52px;
    font-weight: 800;
    color: #f43f5e;
    margin-top: 8px;
    text-shadow: 0 0 22px rgba(244, 63, 94, 0.55);
    letter-spacing: -1px;
}

.redirect-status {
    font-size: 12px;
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: 500;
}

.redirect-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(52, 211, 153, 0.25);
    border-top-color: #34d399;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Step 8 Lead Capture */
.shield-icon-container {
    margin-bottom: 24px;
    margin-top: 20px;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.25));
}

.shield-icon {
    width: 80px;
    height: 90px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: #009b77;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 155, 119, 0.3);
    margin-bottom: 24px;
    transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover {
    background-color: #048264;
}

.btn-submit:active {
    transform: scale(0.98);
}

.benefits-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    margin-bottom: 28px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.benefit-text h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.benefit-text p {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.4;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Step 9 Blurred Chats (WhatsApp Shell) */
.phone-screen-step {
    background-color: #ffffff !important;
    width: 100%;
    align-items: stretch !important;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    /* IMPORTANT: do NOT set display here — .step-section { display:none }
       must win when this step is inactive, otherwise chats leak into other screens */
}

#step-9.step-section.active {
    display: flex;
    flex-direction: column;
}

#step-9.step-section:not(.active) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.phone-screen {
    width: 100%;
    height: 100%;
    min-height: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1;
}

/* Everything scrolls except the fixed bottom CTA + nav */
.phone-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 210px; /* space for fixed sheet + nav */
    background: #ffffff;
}

.phone-fixed-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.phone-fixed-bottom .floating-sheet,
.phone-fixed-bottom .bottom-nav {
    pointer-events: auto;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 2px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #111;
}
.status-icons .bat {
    font-size: 11px;
    font-weight: 600;
    margin-left: 2px;
}

.chats-header {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    padding: 6px 12px 10px;
    gap: 4px;
}

.chats-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 0;
    letter-spacing: -0.4px;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
    line-height: 1;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-container {
    padding: 0 14px 10px;
    width: 100%;
}

.search-box {
    background-color: #f0f2f5;
    border-radius: 10px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667781;
    font-size: 15px;
    text-align: left;
}

.alert-banner {
    margin: 0 14px 10px;
    background-color: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 12px;
    padding: 11px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.alert-banner svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 1px;
}

.alert-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2px;
}

.alert-text p {
    font-size: 12px;
    color: #374151;
    line-height: 1.35;
}

.filters-scroll {
    display: flex;
    gap: 8px;
    padding: 0 14px 10px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
}
.filters-scroll::-webkit-scrollbar { display: none; }

.filter-pill {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    cursor: pointer;
}

.filter-pill.active {
    background-color: #008069;
    border-color: #008069;
    color: #ffffff;
}

.filter-pill.filter-plus {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.filter-info {
    margin: 0 14px 8px;
    background-color: #f0f2f5;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 11.5px;
    color: #54656f;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    line-height: 1.4;
}
.filter-info strong { color: #111; }

.chat-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 8px;
    filter: none;
}

.chat-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 10px;
    border-bottom: none;
    cursor: pointer;
}
.chat-row:active {
    background: #f3f4f6;
}

.chat-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.chat-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: #cbd5e1;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    filter: blur(5px);
    transform: scale(1.02);
}

.chat-info {
    text-align: left;
    min-width: 0;
    flex: 1;
    padding-top: 2px;
}

.chat-top {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.chat-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
    filter: blur(4.5px);
    max-width: 55%;
    overflow: hidden;
    white-space: nowrap;
}

.chat-lock {
    font-size: 11px;
    opacity: 0.55;
    filter: none;
}

.group-ico {
    font-size: 12px;
    filter: none;
}

.chat-preview {
    font-size: 13px;
    color: #667781;
    margin: 0;
    filter: blur(4px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.chat-preview .checks {
    color: #53bdeb;
    filter: blur(0);
    margin-right: 2px;
}

.chat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 5px;
    align-items: center;
    filter: none;
}

.tag-trash {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fecaca;
    color: #dc2626;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tag {
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.35;
}

.tag-recovered { background: #ede9fe; color: #5b21b6; }
.tag-latenight { background: #e0e7ff; color: #3730a3; }
.tag-deleted { background: #ffe4e6; color: #be123c; }
.tag-flagged { background: #ffe4e6; color: #e11d48; }
.tag-hidden { background: #f3e8ff; color: #7e22ce; }
.tag-suspicious { background: #ffedd5; color: #c2410c; }

.chat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 3px;
    filter: none;
}

.chat-time {
    font-size: 11.5px;
    color: #667781;
    font-weight: 500;
}

.chat-unread {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Most frequent contact card — match reference print */
.most-frequent-card {
    margin: 8px 12px 12px;
    background: #f7efe6;
    border-radius: 18px;
    padding: 14px 12px 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    border: 1.5px solid #e5d3bf;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.most-frequent-card:active {
    transform: scale(0.99);
    opacity: 0.96;
}

.mfc-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfc-avatar-blur {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%, rgba(74, 222, 128, 0.55), transparent 55%),
        radial-gradient(circle at 65% 70%, rgba(34, 197, 94, 0.35), transparent 50%),
        #d1d5db;
    filter: blur(3px);
    transform: scale(1.05);
}

.mfc-lock {
    position: relative;
    z-index: 1;
    font-size: 18px;
    filter: grayscale(0) sepia(0.55) saturate(4) hue-rotate(5deg) brightness(1.05);
    line-height: 1;
}

.mfc-body {
    min-width: 0;
    flex: 1;
}

.mfc-label {
    font-size: 11px;
    font-weight: 800;
    color: #d9943c;
    letter-spacing: 0.35px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mfc-warn {
    font-size: 12px;
    line-height: 1;
}

.mfc-phone {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.mfc-stats {
    font-size: 12.5px;
    color: #111;
    margin-bottom: 2px;
    line-height: 1.35;
}
.mfc-stats strong {
    color: #c84040;
    font-weight: 800;
}

.mfc-night {
    font-size: 12.5px;
    color: #111;
    line-height: 1.35;
}
.mfc-night strong {
    color: #c84040;
    font-weight: 800;
}

.mfc-risk {
    background: linear-gradient(180deg, #e85a5a 0%, #d12f2f 45%, #b91c1c 100%);
    color: #fff;
    width: 46px;
    min-height: 88px;
    border-radius: 12px;
    padding: 10px 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-shrink: 0;
    box-shadow:
        0 4px 12px rgba(185, 28, 28, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mfc-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fecaca, #ef4444 45%, #991b1b 100%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.25);
    animation: mfc-pulse 1.4s ease-out infinite;
    flex-shrink: 0;
}

.mfc-risk-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    line-height: 1.15;
    text-align: center;
}

@keyframes mfc-pulse {
    0% { box-shadow: 0 0 0 0 rgba(254, 202, 202, 0.7), 0 2px 4px rgba(0, 0, 0, 0.25); }
    70% { box-shadow: 0 0 0 7px rgba(254, 202, 202, 0), 0 2px 4px rgba(0, 0, 0, 0.25); }
    100% { box-shadow: 0 0 0 0 rgba(254, 202, 202, 0), 0 2px 4px rgba(0, 0, 0, 0.25); }
}

.bottom-nav {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    padding: 6px 0 8px;
    z-index: 50;
    flex-shrink: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10.5px;
    color: #54656f;
    text-decoration: none;
    gap: 3px;
    position: relative;
    min-width: 56px;
}

.nav-item svg {
    display: block;
}

.nav-item.active {
    color: #111;
    font-weight: 700;
}

.nav-badge {
    position: absolute;
    top: -3px;
    right: 10px;
    background-color: #ef4444;
    color: white;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.3;
}
.nav-badge.wide {
    right: 6px;
    padding: 1px 4px;
}

.nav-you .nav-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.floating-sheet {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: calc(100% - 20px);
    max-width: 100%;
    margin: 0 auto 8px;
    background: #ffffff;
    border-radius: 22px;
    padding: 14px 14px 14px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 40;
    flex-shrink: 0;
    box-sizing: border-box;
}

.sheet-inner {
    background: #fff5f7;
    border: 1.5px solid #f9cdd6;
    border-radius: 14px;
    padding: 14px 14px 12px;
    margin-bottom: 12px;
}

.sheet-header-data {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #c0265c;
    margin-bottom: 12px;
    display: block;
    line-height: 1.3;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 0;
}

.metric-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 12.5px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
    justify-content: flex-start;
}
.metric-item strong {
    font-weight: 800;
    color: #111;
}

.btn-unlock {
    width: 100%;
    background: #448A76;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(68, 138, 118, 0.4);
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    line-height: 1.25;
    box-sizing: border-box;
    animation: unlockPulse 1.8s ease-in-out infinite;
}

.btn-unlock-line,
.btn-unlock-phone {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-unlock-phone {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-unlock:hover {
    background: #3a7765;
}

.btn-unlock:active {
    transform: scale(0.98);
    animation: none;
}

@keyframes unlockPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(68, 138, 118, 0.35);
    }
    50% {
        transform: scale(1.025);
        box-shadow: 0 6px 22px rgba(68, 138, 118, 0.55);
    }
}

/* Blocked conversation modal */
.blocked-modal-overlay {
    position: absolute;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.blocked-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.blocked-modal {
    width: 100%;
    max-width: 400px;
    max-height: calc(100% - 8px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 28px;
    padding: 20px 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: center;
    transform: translateY(12px) scale(0.97);
    transition: transform 0.28s ease;
}

.blocked-modal-overlay.open .blocked-modal {
    transform: translateY(0) scale(1);
}

.blocked-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #448A76;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(68, 138, 118, 0.35);
}

.blocked-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.blocked-online {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-left: 2px;
}

.blocked-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: onlinePulse 1.6s ease-out infinite;
}

@keyframes onlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.blocked-audio-card {
    background: #eaf8f2;
    border: 1.5px solid #b7e5d2;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.blocked-audio-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blocked-mic {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #448A76;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blocked-audio-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.blocked-audio-copy strong {
    font-size: 13px;
    color: #111;
}
.blocked-audio-copy span {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.3;
}

.blocked-wave {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2px;
    height: 28px;
    padding: 0 4px;
}
.blocked-wave span {
    flex: 1;
    border-radius: 999px;
    background: #448A76;
    opacity: 0.85;
    animation: waveBounce 1.1s ease-in-out infinite;
}
.blocked-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.blocked-wave span:nth-child(2) { height: 55%; animation-delay: 0.05s; }
.blocked-wave span:nth-child(3) { height: 40%; animation-delay: 0.1s; }
.blocked-wave span:nth-child(4) { height: 75%; animation-delay: 0.15s; }
.blocked-wave span:nth-child(5) { height: 50%; animation-delay: 0.2s; }
.blocked-wave span:nth-child(6) { height: 90%; animation-delay: 0.25s; }
.blocked-wave span:nth-child(7) { height: 45%; animation-delay: 0.3s; }
.blocked-wave span:nth-child(8) { height: 70%; animation-delay: 0.35s; }
.blocked-wave span:nth-child(9) { height: 35%; animation-delay: 0.4s; }
.blocked-wave span:nth-child(10) { height: 85%; animation-delay: 0.45s; }
.blocked-wave span:nth-child(11) { height: 55%; animation-delay: 0.5s; }
.blocked-wave span:nth-child(12) { height: 65%; animation-delay: 0.55s; }
.blocked-wave span:nth-child(13) { height: 40%; animation-delay: 0.05s; }
.blocked-wave span:nth-child(14) { height: 80%; animation-delay: 0.1s; }
.blocked-wave span:nth-child(15) { height: 50%; animation-delay: 0.15s; }
.blocked-wave span:nth-child(16) { height: 95%; animation-delay: 0.2s; }
.blocked-wave span:nth-child(17) { height: 45%; animation-delay: 0.25s; }
.blocked-wave span:nth-child(18) { height: 70%; animation-delay: 0.3s; }
.blocked-wave span:nth-child(19) { height: 35%; animation-delay: 0.35s; }
.blocked-wave span:nth-child(20) { height: 60%; animation-delay: 0.4s; }
.blocked-wave span:nth-child(21) { height: 48%; animation-delay: 0.45s; }
.blocked-wave span:nth-child(22) { height: 78%; animation-delay: 0.5s; }
.blocked-wave span:nth-child(23) { height: 42%; animation-delay: 0.55s; }
.blocked-wave span:nth-child(24) { height: 58%; animation-delay: 0.6s; }

@keyframes waveBounce {
    0%, 100% { transform: scaleY(0.7); opacity: 0.65; }
    50% { transform: scaleY(1); opacity: 1; }
}

.blocked-deleted-card {
    background: #fff;
    border: 1.5px solid #fecdd3;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: left;
}

.blocked-deleted-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.blocked-deleted-label {
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
}
.blocked-deleted-time {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
}

.blocked-deleted-blur {
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
    filter: blur(5px);
    user-select: none;
    margin-bottom: 8px;
    max-height: 52px;
    overflow: hidden;
}

.blocked-deleted-hint {
    font-size: 12px;
    font-weight: 600;
    color: #e11d48;
}

.blocked-copy {
    font-size: 13.5px;
    line-height: 1.45;
    color: #374151;
    margin: 0 0 12px;
    text-align: left;
}
.blocked-copy strong {
    color: #ea580c;
    font-weight: 800;
}

.blocked-stats {
    background: #fff1f5;
    border: 1.5px solid #f9c2d0;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: left;
}

.blocked-stats-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #c0265c;
    margin-bottom: 10px;
    text-align: center;
}

.blocked-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    font-size: 12px;
    color: #374151;
}
.blocked-stats-grid strong {
    color: #111;
    font-weight: 800;
}

.btn-unlock-modal {
    margin-top: 2px;
}

/* Step 10 Risk Analysis & Sales Page */
#step-10 {
    background-color: #f7f6f2;
    position: relative;
}

#step-10 .sales-wrapper {
    padding: 12px 14px 32px;
    max-width: 480px;
    margin: 0 auto;
}

#step-10 .sales-content,
#step-10 .content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

#step-10 .urgency-alert {
    background-color: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
}

#step-10 .urgency-alert svg {
    color: #e11d48;
    flex-shrink: 0;
    margin-top: 1px;
}

#step-10 .urgency-text h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 2px;
    line-height: 1.35;
}

#step-10 .urgency-text p {
    font-size: 12px;
    color: #6b7280;
}

/* Horizontal profile card */
#step-10 .sales-profile-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #f1f1ef;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

#step-10 .sales-profile-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

#step-10 .sales-avatar-rings {
    position: relative;
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step-10 .sales-avatar-rings .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(244, 63, 94, 0.45);
    animation: sales-ring-pulse 2.4s ease-in-out infinite;
}

#step-10 .sales-avatar-rings .ring-outer {
    inset: -6px;
    border-color: rgba(244, 63, 94, 0.28);
    animation-delay: 0.35s;
}

#step-10 .sales-avatar-rings .ring-inner {
    inset: -2px;
    border-color: rgba(225, 29, 72, 0.55);
}

#step-10 .sales-avatar-rings .avatar-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    background: #e5e7eb;
    box-shadow: 0 0 0 3px #fff, 0 0 18px rgba(244, 63, 94, 0.35);
}

@keyframes sales-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 1; }
}

#step-10 .sales-profile-meta {
    flex: 1;
    min-width: 0;
}

#step-10 .profile-phone {
    font-size: 18px;
    font-weight: 800;
    color: #e11d48;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

#step-10 .profile-location {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-start;
}

#step-10 .profile-location svg {
    color: #9ca3af;
    flex-shrink: 0;
}

#step-10 .connection-active {
    font-size: 12.5px;
    font-weight: 600;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 6px;
}

#step-10 .connection-active .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

#step-10 .sync-badge {
    background-color: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

#step-10 .sync-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
}

#step-10 .main-headline {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.4;
    padding: 4px 4px 0;
    margin: 0;
}

#step-10 .main-headline .phone-redact {
    color: #ef4444;
}

#step-10 .main-headline .phone-redact.dots {
    letter-spacing: 2px;
}

#step-10 .main-headline .highlight-green {
    color: #059669;
}

/* Single pink stats container */
#step-10 .sales-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 16px;
    overflow: hidden;
    padding: 4px 0;
}

#step-10 .sales-stats .stat-box {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 8px;
    position: relative;
}

#step-10 .sales-stats .stat-box + .stat-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: #fecdd3;
}

#step-10 .sales-stats .stat-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 4px;
}

#step-10 .sales-stats .stat-box p {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.25;
}

#step-10 .scan-complete-banner {
    background: linear-gradient(180deg, #fff1f2 0%, #ffe4e6 100%);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
}

#step-10 .scan-complete-banner h3 {
    font-size: 15px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 4px;
}

#step-10 .scan-complete-banner p {
    font-size: 12.5px;
    color: #6b7280;
}

#step-10 .risk-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    width: 100%;
    text-align: left;
}

#step-10 .risk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#step-10 .risk-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: 0.3px;
}

#step-10 .risk-title svg {
    color: #dc2626;
}

#step-10 .risk-percentage {
    font-size: 26px;
    font-weight: 800;
    color: #dc2626;
}

#step-10 .progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}

#step-10 .progress-bar-fill {
    width: 87%;
    height: 100%;
    background: linear-gradient(90deg, #fb923c, #ef4444 55%, #dc2626);
    border-radius: 4px;
}

#step-10 .risk-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#step-10 .risk-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #4b5563;
}

#step-10 .risk-detail-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

#step-10 .risk-detail-item span:last-child {
    font-weight: 800;
    color: #dc2626;
    flex-shrink: 0;
}

/* Flagged contact */
#step-10 .flagged-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
}

#step-10 .flagged-avatar-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

#step-10 .flagged-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.08);
}

#step-10 .flagged-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
}

#step-10 .flagged-info {
    flex: 1;
    min-width: 0;
}

#step-10 .flagged-badge {
    font-size: 11px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

#step-10 .redact-bar {
    height: 10px;
    width: 78%;
    background: #111;
    border-radius: 3px;
    margin-bottom: 5px;
}

#step-10 .redact-bar.short {
    width: 55%;
}

#step-10 .flagged-stats {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

#step-10 .flagged-stats strong {
    color: #dc2626;
}

#step-10 .flagged-who-btn {
    flex-shrink: 0;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 10px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    min-width: 54px;
}

#step-10 .flagged-who-btn svg {
    stroke: #fbbf24;
}

/* Recovered cache */
#step-10 .recovered-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    width: 100%;
}

#step-10 .recovered-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

#step-10 .recovered-quote {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: #111;
    margin: 0 0 14px;
}

#step-10 .redact-inline {
    display: inline-block;
    width: 72px;
    height: 14px;
    background: #111;
    border-radius: 3px;
    vertical-align: -2px;
    margin: 0 2px;
}

#step-10 .recovered-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #9ca3af;
}

#step-10 .unlock-msg-btn {
    background: none;
    border: none;
    color: #16a34a;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
}

/* Shared section cards */
#step-10 .sales-section-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    text-align: left;
}

#step-10 .sales-section-header {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

#step-10 .sales-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff1f2;
    color: #e11d48;
}

#step-10 .sales-section-header h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2px;
}

#step-10 .sales-section-header p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.35;
}

/* WhatsApp blur preview */
#step-10 .wa-blur-preview {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    filter: blur(3.5px);
    user-select: none;
}

#step-10 .wa-bubble {
    height: 28px;
    border-radius: 12px;
    max-width: 72%;
}

#step-10 .wa-bubble.left {
    background: #e5e7eb;
    align-self: flex-start;
}

#step-10 .wa-bubble.right {
    background: #dcf8c6;
    align-self: flex-end;
    max-width: 60%;
}

#step-10 .wa-bubble.short {
    max-width: 48%;
    height: 22px;
}

#step-10 .wa-typing {
    align-self: flex-start;
    background: #fce7f3;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    gap: 4px;
}

#step-10 .wa-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ec4899;
}

#step-10 .suspicious-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

#step-10 .suspicious-header .exclaim {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

#step-10 .suspicious-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#step-10 .suspicious-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff7f7;
    border-radius: 12px;
    padding: 10px;
}

#step-10 .sus-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    filter: blur(4px);
    flex-shrink: 0;
    background: #e5e7eb;
}

#step-10 .sus-body {
    flex: 1;
    min-width: 0;
}

#step-10 .sus-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

#step-10 .sus-snippet {
    font-size: 11.5px;
    color: #6b7280;
    filter: blur(4.5px);
    white-space: nowrap;
    overflow: hidden;
    margin: 2px 0 6px;
    user-select: none;
}

#step-10 .sus-voice {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
    margin: 4px 0 6px;
}

#step-10 .voice-wave {
    width: 64px;
    height: 14px;
    background: repeating-linear-gradient(
        90deg,
        #dc2626 0 2px,
        transparent 2px 4px
    );
    border-radius: 2px;
    opacity: 0.85;
}

#step-10 .sus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

#step-10 .tag {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

#step-10 .tag.deleted {
    background: #ffe4e6;
    color: #be123c;
}

#step-10 .tag.suspicious {
    background: #ffedd5;
    color: #c2410c;
}

#step-10 .tag.evidence {
    background: #f3e8ff;
    color: #7e22ce;
}

#step-10 .sus-badge {
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 8px;
}

/* Media lock grid */
#step-10 .media-lock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

#step-10 .media-lock-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #e5e7eb;
}

#step-10 .media-lock-item.hero {
    grid-column: span 2;
    aspect-ratio: 16 / 11;
}

#step-10 .media-lock-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(14px);
    transform: scale(1.12);
}

#step-10 .media-lock-ico {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.18);
    pointer-events: none;
}

/* Dating */
#step-10 .dating-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#step-10 .dating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
}

#step-10 .dating-app-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #eee;
}

#step-10 .dating-app-icon.tinder { background: #ffe4e6; }
#step-10 .dating-app-icon.bumble { background: #fef9c3; }
#step-10 .dating-app-icon.hinge { background: #374151; color: #fff; font-size: 14px; }
#step-10 .dating-app-icon.onlyfans { background: #dbeafe; }

#step-10 .dating-info { flex: 1; min-width: 0; }

#step-10 .dating-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

#step-10 .status-pill {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

#step-10 .status-pill.scanned {
    background: #ffe4e6;
    color: #be123c;
}

#step-10 .status-pill.notfound {
    background: #f3f4f6;
    color: #6b7280;
}

#step-10 .dating-blur-lines {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#step-10 .dating-blur-lines span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    filter: blur(2px);
    width: 85%;
}

#step-10 .dating-blur-lines span:last-child { width: 60%; }

#step-10 .dating-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    filter: blur(4px);
    flex-shrink: 0;
}

/* Suspicious Locations Detected */
#step-10 .suspicious-locations-card {
    padding: 16px 14px 14px;
    border: 1px solid #fce7f3;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

#step-10 .sus-loc-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    text-align: left;
}

#step-10 .sus-loc-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #ffe4e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step-10 .sus-loc-titles h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 3px;
    letter-spacing: -0.2px;
}

#step-10 .sus-loc-titles p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.35;
}

#step-10 .sus-loc-titles strong {
    color: #e11d48;
    font-weight: 800;
}

#step-10 .sus-loc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#step-10 .sus-loc-row {
    position: relative;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px 12px;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
}

#step-10 .sus-loc-blur {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

#step-10 .sus-loc-thumb {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background-color: #d1d5db;
    background-size: cover;
    background-position: center;
}

#step-10 .sus-loc-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

#step-10 .sus-loc-lines span {
    display: block;
    height: 9px;
    border-radius: 4px;
    background: #9ca3af;
    width: 72%;
}

#step-10 .sus-loc-lines span:last-child {
    width: 48%;
    height: 8px;
    background: #b0b6bf;
}

#step-10 .sus-loc-flag {
    font-size: 14px;
    color: #e11d48;
    flex-shrink: 0;
    filter: none;
    opacity: 0.9;
}

#step-10 .sus-loc-lock {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    filter: grayscale(0) sepia(0.55) saturate(5) hue-rotate(5deg) brightness(1.05);
    line-height: 1;
}

#step-10 .sales-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ca8a04;
    font-size: 13.5px;
    font-weight: 700;
    padding: 4px 0 2px;
}

#step-10 .sales-rating .stars {
    letter-spacing: 1px;
    color: #eab308;
}

#step-10 .why-different-card {
    background: #ecfdf5;
    border-radius: 18px;
    padding: 18px 16px;
    text-align: left;
    width: 100%;
}

#step-10 .why-different-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

#step-10 .why-different-card .why-sub {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 14px;
}

#step-10 .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#step-10 .why-item {
    background: #fff;
    border-radius: 14px;
    padding: 14px 12px;
    border: 1px solid #d1fae5;
}

#step-10 .why-item .why-ico {
    font-size: 20px;
    margin-bottom: 6px;
}

#step-10 .why-item h4 {
    font-size: 13px;
    font-weight: 800;
    color: #15803d;
    margin-bottom: 2px;
}

#step-10 .why-item p {
    font-size: 11.5px;
    color: #6b7280;
}

/* Existing tool/cross/stealth scoped tweaks */
#step-10 .tool-check-card {
    background-color: #faf7f5;
    border: 1px solid #f0e6e0;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

#step-10 .tool-row-bad {
    background-color: #fff5f5;
    border: 1px solid #fecaca;
    border-left: 3px solid #ef4444;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #4b5563;
    text-align: left;
}

#step-10 .tool-row-bad svg { color: #ef4444; flex-shrink: 0; }

#step-10 .tool-row-good {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 3px solid #22c55e;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #166534;
    font-weight: 500;
    text-align: left;
}

#step-10 .tool-row-good svg { color: #22c55e; flex-shrink: 0; }

#step-10 .cross-card {
    background-color: #101827;
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

#step-10 .cross-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 6px;
}

#step-10 .cross-subtitle {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}

#step-10 .cross-item {
    font-size: 12.5px;
    color: #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

#step-10 .cross-item > span { color: #34d399; }
#step-10 .cross-item strong { color: #fbbf24; }

#step-10 .cross-blur-box {
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 12px;
    font-size: 12px;
    color: #fbbf24;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#step-10 .stealth-section {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

#step-10 .stealth-header { text-align: center; }
#step-10 .stealth-header h3 {
    font-size: 15px;
    font-weight: 800;
    color: #166534;
    margin-bottom: 4px;
}
#step-10 .stealth-header p { font-size: 12px; color: #4b5563; }

#step-10 .stealth-item {
    background-color: #ffffff;
    border: 1px solid #dcfce7;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#step-10 .stealth-item svg { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
#step-10 .stealth-item-text h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}
#step-10 .stealth-item-text p {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.4;
}

#step-10 .stealth-footer-box {
    background-color: #dcfce7;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: #166534;
}

/* Trust + compare + testimonial */
#step-10 .trust-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

#step-10 .trust-mini-card {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 12px;
    text-align: left;
}

#step-10 .trust-mini-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: #166534;
    margin-bottom: 4px;
}

#step-10 .trust-mini-card p {
    font-size: 11px;
    color: #4b5563;
    line-height: 1.35;
}

#step-10 .spy-compare-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #eee;
    width: 100%;
    text-align: left;
}

#step-10 .spy-compare-card > h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
    text-align: center;
}

#step-10 .spy-compare-sub {
    font-size: 11.5px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 12px;
}

#step-10 .spy-compare-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1f2937;
}

#step-10 .spy-compare-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

#step-10 .spy-compare-head span:first-child {
    background: #e5e7eb;
    color: #374151;
    padding: 8px 10px;
}

#step-10 .spy-compare-head span:last-child {
    background: #166534;
    color: #fff;
    padding: 8px 10px;
    text-align: center;
}

#step-10 .spy-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    font-size: 11.5px;
    border-top: 1px solid #374151;
}

#step-10 .spy-compare-row > span:first-child {
    background: #111827;
    color: #f3f4f6;
    padding: 10px;
    line-height: 1.3;
}

#step-10 .spy-compare-row > span.ok {
    background: #0f1a12;
    color: #4ade80;
    font-weight: 700;
    padding: 10px;
    display: flex;
    align-items: center;
}

#step-10 .spy-compare-note {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 10px;
    line-height: 1.4;
}

#step-10 .testimonial-quote {
    background: #ecfdf5;
    border-left: 4px solid #22c55e;
    border-radius: 12px;
    padding: 14px;
    text-align: left;
    width: 100%;
}

#step-10 .testimonial-quote p {
    font-style: italic;
    font-size: 13px;
    color: #1f2937;
    line-height: 1.45;
    margin-bottom: 8px;
}

#step-10 .testimonial-quote cite {
    font-size: 11.5px;
    color: #4b5563;
    font-style: normal;
}

#step-10 .used-by-banner {
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: #d97706;
    padding: 4px 8px;
}

/* Activity 24h */
#step-10 .activity-24-card {
    background: #faf6f3;
    border: 1px solid #f0e4dc;
    border-radius: 16px;
    padding: 14px;
    width: 100%;
    text-align: left;
}

#step-10 .activity-24-header {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 12px;
}

#step-10 .activity-24-header h3 {
    font-size: 13px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 2px;
}

#step-10 .activity-24-header p {
    font-size: 11.5px;
    color: #6b7280;
}

#step-10 .activity-24-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

#step-10 .activity-24-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

#step-10 .time-pill {
    background: #ffe4e6;
    color: #be123c;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

#step-10 .evt-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

#step-10 .evt-blur {
    font-size: 11px;
    color: #6b7280;
    filter: blur(3px);
    user-select: none;
    margin-top: 2px;
}

#step-10 .more-events-btn {
    width: 100%;
    background: #ffe4e6;
    color: #be123c;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

/* Pricing */
#step-10 .pricing-main-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-top: 6px;
}

#step-10 .pricing-main-subtitle {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}

#step-10 .plan-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    width: 100%;
}

#step-10 .plan-card.essentials-plan .plan-desc {
    order: -1;
    margin-bottom: 8px;
}

#step-10 .plan-card.popular {
    border: 2px solid #22c55e;
    background: #f0fdf4;
    margin-top: 18px;
    padding-top: 28px;
}

#step-10 .popular-banner {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px;
    border-radius: 18px 18px 0 0;
    letter-spacing: 0.3px;
}

#step-10 .best-value-badge {
    position: absolute;
    top: 36px;
    right: 12px;
    background: #4ade80;
    color: #14532d;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
}

#step-10 .plan-icon.bolt {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
}

#step-10 .plan-name {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

#step-10 .plan-desc {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 10px;
}

#step-10 .plan-price-box { margin-bottom: 12px; }

#step-10 .old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

#step-10 .new-price {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

#step-10 .save-line,
#step-10 .save-badge {
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    margin-top: 4px;
    display: block;
}

#step-10 .plan-limit {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

#step-10 .popular .save-badge {
    color: #166534;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

#step-10 .access-duration {
    background-color: #fff7ed;
    color: #9a3412;
    font-size: 12px;
    font-weight: 600;
    padding: 8px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 14px;
}

#step-10 .access-duration.lifetime {
    background-color: #dcfce7;
    color: #166534;
}

#step-10 .plan-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
    text-align: left;
    font-size: 12.5px;
    color: #4b5563;
}

#step-10 .plan-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

#step-10 .plan-feature-item.checked svg { color: #22c55e; flex-shrink: 0; }
#step-10 .plan-feature-item.unchecked {
    color: #9ca3af;
}
#step-10 .plan-feature-item.unchecked svg { color: #ef4444; flex-shrink: 0; }

#step-10 .plan-btn {
    background-color: #1e293b;
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.25);
}

#step-10 .plan-btn.navy {
    background-color: #1e293b;
}

#step-10 .plan-btn.green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

#step-10 .comparison-box {
    background-color: #101827;
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

#step-10 .comparison-title {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

#step-10 .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#step-10 .comp-column {
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

#step-10 .comp-column.without {
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

#step-10 .comp-column.with {
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

#step-10 .comp-header {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.4px;
}

#step-10 .comp-column.without .comp-header { color: #f87171; }
#step-10 .comp-column.with .comp-header { color: #34d399; }

#step-10 .comp-row {
    font-size: 11px;
    line-height: 1.3;
}

#step-10 .comp-column.without .comp-row { color: #fca5a5; }
#step-10 .comp-column.with .comp-row { color: #a7f3d0; }

/* Guarantee */
#step-10 .sales-guarantee {
    background: #fff;
    border: 1.5px solid #f9a8d4;
    border-radius: 18px;
    padding: 14px;
    width: 100%;
}

#step-10 .sales-guarantee .guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#step-10 .sales-guarantee .guarantee-item {
    background: #1f2937;
    border: none;
    border-radius: 14px;
    padding: 14px 12px;
    text-align: left;
}

#step-10 .guarantee-emoji {
    font-size: 22px;
    margin-bottom: 6px;
}

#step-10 .sales-guarantee .guarantee-item h5 {
    font-size: 12.5px;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 6px;
}

#step-10 .sales-guarantee .guarantee-item p {
    font-size: 11px;
    color: #d1d5db;
    line-height: 1.4;
}

#step-10 .guarantee-footnote {
    text-align: center;
    font-size: 11px;
    font-style: italic;
    color: #9ca3af;
    margin-top: 10px;
}

/* Videos */
#step-10 .real-results {
    width: 100%;
    text-align: center;
}

#step-10 .real-results h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

#step-10 .real-results > p {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 12px;
}

#step-10 .video-placeholders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#step-10 .video-ph {
    background: #1f2937;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step-10 .play-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
}

/* FAQ */
#step-10 .sales-faq {
    width: 100%;
}

#step-10 .sales-faq > h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

#step-10 .faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

#step-10 .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

#step-10 .faq-chevron {
    color: #9ca3af;
    font-size: 12px;
    transition: transform 0.2s;
}

#step-10 .faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

#step-10 .faq-a {
    display: none;
    padding: 0 14px 14px;
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.45;
    text-align: left;
}

#step-10 .faq-item.open .faq-a {
    display: block;
}

/* Security footer */
#step-10 .sales-security-footer {
    background: #1f2937;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    width: 100%;
}

#step-10 .sec-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

#step-10 .sec-badge {
    border: 1px solid #4ade80;
    color: #d1d5db;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
}

#step-10 .sales-security-footer p {
    font-size: 11.5px;
    color: #9ca3af;
    line-height: 1.45;
}

#step-10 .sales-security-footer strong {
    color: #fff;
}

/* Floating toast */
#step-10 .sales-toast {
    position: fixed;
    left: max(12px, calc(50% - 228px));
    bottom: 18px;
    z-index: 200;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 280px;
    animation: toast-in 0.35s ease;
}

#step-10 .sales-toast[hidden] {
    display: none !important;
}

#step-10 .toast-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

#step-10 .toast-text {
    font-size: 12px;
    color: #111;
    line-height: 1.35;
}

#step-10 .toast-text strong {
    color: #16a34a;
}

#step-10 .toast-time {
    font-size: 10.5px;
    color: #9ca3af;
    margin-top: 2px;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    #app-container {
        box-shadow: none;
    }
}
