:root {
    --bg-primary: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2235;
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-green: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #1e293b;
    --danger: #ff4444;
    --warning: #ffaa00;
    --success: #00ff88;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.audit-app {
    max-width: 680px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.audit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo-link { text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--neon-cyan); letter-spacing: 1px; }
.logo-badge {
    font-size: 10px;
    background: rgba(0,243,255,0.1);
    color: var(--neon-cyan);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0,243,255,0.2);
}

.language-selector select {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.global-progress {
    padding: 12px 20px 0;
}

.global-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.global-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.global-progress-text {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.audit-main {
    padding: 20px;
}

.quiz-section, .interaction-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-section.active, .interaction-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.quiz-container {
}

.step-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.question-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.options-grid.single-col {
    grid-template-columns: 1fr;
}

.option-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.option-btn:hover {
    border-color: rgba(0,243,255,0.4);
    background: var(--bg-card-hover);
}

.option-btn.selected {
    border-color: var(--neon-cyan);
    background: rgba(0,243,255,0.08);
    box-shadow: 0 0 16px rgba(0,243,255,0.15);
}

.option-icon { font-size: 22px; flex-shrink: 0; }
.option-text { font-weight: 500; }

.checkbox-grid {
    gap: 10px;
}

.checkbox-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.checkbox-btn:hover {
    border-color: rgba(0,243,255,0.4);
    background: var(--bg-card-hover);
}

.checkbox-btn input[type="checkbox"] {
    display: none;
}

.checkbox-btn:has(input:checked) {
    border-color: var(--neon-cyan);
    background: rgba(0,243,255,0.08);
}

.checkbox-icon { font-size: 20px; flex-shrink: 0; }
.checkbox-text { font-weight: 500; color: var(--text-primary); }

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 8px;
}

.nav-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.nav-btn.back {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.nav-btn.back:hover { border-color: var(--text-secondary); }

.nav-btn.next {
    background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
    color: #000;
    font-weight: 700;
}

.nav-btn.next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn.next:not(:disabled):hover {
    box-shadow: 0 0 20px rgba(0,243,255,0.3);
    transform: translateY(-1px);
}

.arrow { margin-left: 4px; }

.interaction-container {
    text-align: center;
    padding: 40px 0;
}

.loading-animation {
    padding: 60px 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.loading-subtext {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress-fill {
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: width 0.05s linear;
}

.profile-badge-container {
    animation: fadeIn 0.5s ease;
}

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

.profile-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.badge-icon { font-size: 22px; }

.social-proof-line {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-number {
    color: var(--neon-cyan);
    font-weight: 700;
}

.block-complete-badge {
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--neon-green);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
    color: #000;
}

.cta-button.primary:hover {
    box-shadow: 0 0 24px rgba(0,243,255,0.3);
    transform: translateY(-2px);
}

.inter2-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.health-score-container {
    margin-bottom: 32px;
}

.health-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
}

.health-circle svg {
    width: 100%;
    height: 100%;
}

.health-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.health-score-value span {
    font-size: 36px;
    font-weight: 800;
    color: var(--neon-cyan);
}

.health-score-value small {
    font-size: 14px;
    color: var(--text-muted);
}

.health-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.health-breakdown {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.health-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.health-item + .health-item { border-top: 1px solid var(--border-color); }

.health-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.health-status { font-weight: 700; margin-left: auto; }

.testimonial-card {
    background: var(--bg-card);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.testimonial-author {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.transition-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.before-after-container {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ba-column {
    flex: 1;
    padding: 24px 16px;
}

.ba-before {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.2);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.ba-after {
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.2);
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.ba-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ba-before .ba-title { color: var(--danger); }
.ba-after .ba-title { color: var(--success); }

.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: var(--bg-card);
    flex-shrink: 0;
}

.ba-vs {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.ba-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-item {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.ba-icon { font-size: 16px; flex-shrink: 0; }

.roi-highlight {
    background: linear-gradient(135deg, rgba(0,243,255,0.1), rgba(188,19,254,0.1));
    border: 1px solid rgba(0,243,255,0.3);
    color: var(--neon-cyan);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.q12-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.q12-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-primary);
}

.q12-btn:hover { transform: translateY(-2px); }

.q12-yes:hover, .q12-yes.selected { border-color: var(--neon-green); background: rgba(0,255,136,0.06); box-shadow: 0 0 20px rgba(0,255,136,0.15); }
.q12-maybe:hover, .q12-maybe.selected { border-color: var(--neon-cyan); background: rgba(0,243,255,0.06); box-shadow: 0 0 20px rgba(0,243,255,0.15); }
.q12-later:hover, .q12-later.selected { border-color: var(--warning); background: rgba(255,170,0,0.06); box-shadow: 0 0 20px rgba(255,170,0,0.15); }

.q12-icon { font-size: 24px; }
.q12-main { font-size: 17px; font-weight: 700; }
.q12-sub { font-size: 13px; color: var(--text-secondary); }

.lead-form-container {
    text-align: center;
}

.form-badge {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.form-group input::placeholder { color: var(--text-muted); }

.submit-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 17px;
    padding: 16px;
}

.privacy-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.thank-you-container {
    padding: 80px 20px;
}

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.audit-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.audit-footer p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .audit-app { max-width: 100%; }
    .audit-main { padding: 16px; }
    .question-title { font-size: 20px; }
    .options-grid { grid-template-columns: 1fr; }
    .option-btn { padding: 14px; }
    .before-after-container { flex-direction: column; }
    .ba-before { border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-right: 1px solid rgba(255,68,68,0.2); border-bottom: none; }
    .ba-after { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-left: 1px solid rgba(0,255,136,0.2); border-top: none; }
    .ba-divider { width: 100%; height: 30px; }
    .health-circle { width: 120px; height: 120px; }
    .health-score-value span { font-size: 28px; }
    .nav-btn { padding: 10px 18px; font-size: 14px; }
}
