/**
 * SALSA v3.0 - Premium Dashboard CSS
 * Dark theme, wizard UX, action-focused
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Syne:wght@600;700;800&display=swap');

:root {
    --bg: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-input: #0f0f0f;
    --border: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.12);
    --lime: #c4f53b;
    --lime-glow: rgba(196, 245, 59, 0.15);
    --lime-soft: rgba(196, 245, 59, 0.08);
    --orange: #ff9f43;
    --orange-soft: rgba(255, 159, 67, 0.12);
    --red: #ff6b6b;
    --red-soft: rgba(255, 107, 107, 0.12);
    --blue: #54a0ff;
    --blue-soft: rgba(84, 160, 255, 0.12);
    --purple: #a55eea;
    --teal: #00d2d3;
    --white: #ffffff;
    --text: #e0e0e0;
    --text-secondary: #888888;
    --text-muted: #555555;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
}

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

/* ===== BASE ===== */
#salsa-app {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.salsa-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    min-height: 100vh;
}

/* ===== SCREENS ===== */
.screen {
    display: none;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

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

/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.back-btn:hover {
    background: var(--bg-card);
    color: var(--white);
}

.step-indicator {
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
}

.step-dots {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    justify-content: flex-end;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-elevated);
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime-glow);
}

.step-dot.done {
    background: var(--lime);
    opacity: 0.4;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--lime);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.logo h1 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: -2px;
    letter-spacing: 0.5px;
}

/* ===== WELCOME ===== */
.welcome {
    margin-bottom: 40px;
}

.welcome h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.welcome p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===== ACTION GRID ===== */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.action-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lime-soft) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.action-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.action-card:hover::before {
    opacity: 1;
}

.action-card.primary {
    background: linear-gradient(135deg, rgba(196, 245, 59, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(196, 245, 59, 0.2);
}

.action-card.primary:hover {
    border-color: rgba(196, 245, 59, 0.4);
    box-shadow: 0 8px 40px var(--lime-glow);
}

.action-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

.action-icon.lime { background: var(--lime); }
.action-icon.orange { background: linear-gradient(135deg, var(--orange), var(--red)); }
.action-icon.blue { background: var(--blue); }
.action-icon.purple { background: var(--purple); }

.action-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
}

.action-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
}

.action-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: all 0.3s;
}

.action-card:hover .action-arrow {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg);
    transform: translateX(4px);
}

.action-badge {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    position: relative;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title .icon {
    font-size: 28px;
}

/* ===== WIZARD ===== */
.wizard-title {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wizard-title .icon {
    font-size: 40px;
}

.wizard-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.wizard-footer {
    margin-top: 48px;
    display: flex;
    justify-content: flex-end;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 4px var(--lime-glow);
}

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

.form-input.textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--lime-soft);
    border: 1px solid rgba(196, 245, 59, 0.2);
    border-radius: var(--radius);
    margin-top: 24px;
}

.form-hint .icon {
    font-size: 22px;
    flex-shrink: 0;
}

.form-hint p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--lime);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--lime-glow);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--lime);
    color: var(--white);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

/* ===== CLIENT CARDS ===== */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.client-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.client-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.client-card.selected {
    border-color: var(--lime);
    background: linear-gradient(180deg, var(--lime-soft) 0%, var(--bg-card) 100%);
}

.client-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg);
}

.client-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bg);
    margin: 0 auto 16px;
    transition: all 0.2s;
}

.client-avatar.lime { background: var(--lime); }
.client-avatar.orange { background: var(--orange); }
.client-avatar.blue { background: var(--blue); }
.client-avatar.purple { background: var(--purple); }
.client-avatar.teal { background: var(--teal); }

.client-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.client-industry {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.client-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

.client-card-add {
    border-style: dashed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.client-card-add:hover {
    border-color: var(--lime);
}

.client-card-add .plus {
    width: 56px;
    height: 56px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: all 0.2s;
}

.client-card-add:hover .plus {
    background: var(--lime);
    color: var(--bg);
}

.client-card-add span {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== OBJECTIVE CARDS ===== */
.objective-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.objective-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.objective-card:hover {
    border-color: var(--border-light);
}

.objective-card.selected {
    border-color: var(--lime);
    background: linear-gradient(90deg, var(--lime-soft) 0%, var(--bg-card) 50%);
    padding: 28px;
}

.objective-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-elevated);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.objective-card.selected .objective-icon {
    background: var(--lime);
    width: 72px;
    height: 72px;
}

.objective-content {
    flex: 1;
}

.objective-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.objective-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.objective-check {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 14px;
    transition: all 0.2s;
}

.objective-card.selected .objective-check {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg);
}

/* ===== PLATFORM CARDS ===== */
.platform-section {
    margin-bottom: 32px;
}

.platform-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.platform-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.platform-card.required {
    border-color: rgba(255, 159, 67, 0.4);
}

.platform-card.selected {
    border-color: var(--lime);
    background: var(--lime-soft);
}

.platform-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--bg);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.platform-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.platform-card.selected .platform-check {
    opacity: 1;
    transform: scale(1);
}

.platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
}

.platform-icon.meta { background: linear-gradient(135deg, #0081fb, #00c2ff); }
.platform-icon.google { background: linear-gradient(135deg, #4285f4, #34a853); }
.platform-icon.analytics { background: linear-gradient(135deg, #e37400, #f9ab00); }
.platform-icon.shopify { background: linear-gradient(135deg, #96bf48, #5e8e3e); }
.platform-icon.email { background: linear-gradient(135deg, #ff6b6b, #ee5a5a); }
.platform-icon.crm { background: linear-gradient(135deg, #ff7a59, #ff5c35); }
.platform-icon.tiktok { background: linear-gradient(135deg, #69c9d0, #ee1d52); }
.platform-icon.linkedin { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.platform-icon.microsoft { background: linear-gradient(135deg, #00a4ef, #7fba00); }
.platform-icon.pinterest { background: linear-gradient(135deg, #e60023, #bd081c); }
.platform-icon.custom { background: linear-gradient(135deg, #6c757d, #888888); }

.platform-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}

.platform-status {
    font-size: 12px;
    color: var(--text-muted);
}

.platform-card.selected .platform-status {
    color: var(--lime);
}

.platform-file {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.progress-value {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lime);
}

.progress-bar {
    height: 10px;
    background: var(--bg-elevated);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lime), #a8d930);
    border-radius: 5px;
    transition: width 0.5s ease;
}

/* ===== ANALYSIS TYPES ===== */
.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.type-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.type-card:hover {
    border-color: var(--border-light);
}

.type-card.selected {
    border-color: var(--lime);
    background: var(--lime-soft);
}

.type-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.type-card.selected .type-checkbox {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg);
}

.type-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.type-name {
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
}

/* ===== SUMMARY CARD ===== */
.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-secondary);
    font-size: 15px;
}

.summary-value {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

/* ===== LAUNCH SECTION ===== */
.launch-section {
    background: linear-gradient(135deg, var(--lime-soft) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(196, 245, 59, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    margin-top: 32px;
}

.launch-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.launch-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

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

/* ===== CLIENT LIST ===== */
.client-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.client-list-item:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.client-list-item .client-avatar {
    margin: 0;
    width: 52px;
    height: 52px;
    font-size: 17px;
    border-radius: 14px;
}

.client-list-info {
    flex: 1;
}

.client-list-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
    font-size: 16px;
}

.client-list-industry {
    font-size: 13px;
    color: var(--text-muted);
}

.client-list-stats {
    text-align: right;
}

.client-list-analyses {
    font-size: 13px;
    color: var(--text-secondary);
}

.client-list-roas {
    font-size: 14px;
    color: var(--lime);
    font-weight: 600;
}

.client-list-arrow {
    color: var(--text-muted);
    font-size: 20px;
}

/* ===== HEALTH SCORE ===== */
.health-score {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.health-gauge {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    position: relative;
}

.health-gauge svg {
    transform: rotate(-90deg);
}

.health-gauge-bg {
    fill: none;
    stroke: var(--bg-elevated);
    stroke-width: 12;
}

.health-gauge-fill {
    fill: none;
    stroke: var(--lime);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.health-gauge-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.health-value {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
}

.health-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.health-status {
    font-size: 16px;
    color: var(--lime);
    font-weight: 600;
}

/* ===== RECOMMENDATIONS ===== */
.reco-header {
    background: linear-gradient(135deg, var(--lime-soft) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(196, 245, 59, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.reco-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reco-header-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reco-header-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.reco-impact {
    text-align: right;
}

.reco-impact-value {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--lime);
}

.reco-impact-label {
    font-size: 12px;
    color: var(--text-muted);
}

.reco-progress {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.reco-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reco-progress-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.reco-progress-count {
    font-size: 13px;
    color: var(--lime);
    font-weight: 600;
}

.reco-progress-bar {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: 4px;
    overflow: hidden;
}

.reco-progress-fill {
    height: 100%;
    background: var(--lime);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Reco Sections */
.reco-section {
    margin-bottom: 28px;
}

.reco-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reco-section-badge {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.reco-section-badge.urgent { background: var(--red); }
.reco-section-badge.important { background: var(--orange); }
.reco-section-badge.optimize { background: var(--blue); }

.reco-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.reco-section-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: auto;
}

/* Reco Items */
.reco-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.reco-item:hover {
    border-color: var(--border-light);
}

.reco-item.done {
    opacity: 0.5;
}

.reco-item.done .reco-text {
    text-decoration: line-through;
}

.reco-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reco-checkbox {
    width: 26px;
    height: 26px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
    color: transparent;
}

.reco-checkbox:hover {
    border-color: var(--lime);
}

.reco-item.done .reco-checkbox {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg);
}

.reco-content {
    flex: 1;
}

.reco-text {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.6;
}

.reco-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reco-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reco-impact-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
}

.reco-impact-tag.negative {
    color: var(--red);
}

/* Reco Actions Bar */
.reco-actions-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.reco-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.reco-action-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--border-light);
}

.reco-action-btn.monday {
    border-color: rgba(255, 51, 102, 0.3);
}

.reco-action-btn.monday:hover {
    background: rgba(255, 51, 102, 0.1);
    border-color: #ff3366;
}

.reco-action-btn.pdf {
    border-color: rgba(239, 68, 68, 0.3);
}

.reco-action-btn.pdf:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* View Toggle */
.reco-view-toggle {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-left: auto;
}

.reco-view-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.reco-view-btn.active {
    background: var(--bg-elevated);
    color: var(--white);
}

.reco-view-btn:hover:not(.active) {
    color: var(--text);
}

/* Reco Item Enhanced */
.reco-item-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.reco-item-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.reco-item-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}

.reco-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    padding: 6px 12px;
    border-radius: 20px;
}

.reco-tag.impact {
    color: var(--lime);
    background: var(--lime-soft);
}

.reco-tag.deadline {
    color: var(--orange);
    background: var(--orange-soft);
}

.reco-tag.responsible {
    color: var(--blue);
    background: var(--blue-soft);
}

/* Subtasks */
.reco-tasks {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.reco-tasks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.reco-tasks-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reco-tasks-count {
    font-size: 12px;
    color: var(--lime);
}

.reco-task {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.reco-task:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reco-task-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    font-size: 11px;
    color: transparent;
}

.reco-task-checkbox:hover {
    border-color: var(--lime);
}

.reco-task.done .reco-task-checkbox {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--bg);
}

.reco-task-text {
    font-size: 14px;
    color: var(--text);
}

.reco-task.done .reco-task-text {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Simple View (List mode) */
.reco-list-view .reco-item {
    padding: 16px 20px;
}

.reco-list-view .reco-item-description,
.reco-list-view .reco-tasks,
.reco-list-view .reco-item-footer {
    display: none;
}

.reco-list-view .reco-item-title {
    margin-bottom: 0;
    font-size: 14px;
}

.reco-list-view .reco-meta {
    margin-top: 8px;
}

/* PDF Export Styles - Hidden on screen */
@media print {
    .reco-actions-bar,
    .reco-view-toggle,
    .wizard-footer {
        display: none !important;
    }
}

/* ===== LOADING ===== */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.loading-spinner {
    width: 64px;
    height: 64px;
    border: 4px solid var(--border);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

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

.loading-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== RESULT BOX ===== */
.result-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 24px;
}

.result-container h2 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.result-container h3 {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--lime);
    margin: 28px 0 12px;
}

.result-container p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.result-container ul,
.result-container ol {
    margin: 12px 0;
    padding-left: 24px;
}

.result-container li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.result-container strong {
    color: var(--white);
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    color: var(--white);
    background: var(--bg-card);
}

.tab.active {
    color: var(--lime);
    background: var(--lime-soft);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--lime);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    border-color: var(--red);
}

.toast-icon {
    font-size: 20px;
}

.toast-message {
    font-size: 15px;
    color: var(--white);
}

/* ===== ANALYSIS DASHBOARD ===== */
.dashboard-analysis {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* KPI Row */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.kpi-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--lime);
    transition: transform 0.2s, box-shadow 0.2s;
}

.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.kpi-card.blue { border-left-color: #60a5fa; }
.kpi-card.green { border-left-color: #4ade80; }
.kpi-card.orange { border-left-color: #fb923c; }
.kpi-card.purple { border-left-color: #c084fc; }

.kpi-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-content {
    flex: 1;
}

.kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
}

.kpi-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.kpi-change {
    font-size: 12px;
    margin-top: 4px;
}

.kpi-change.positive { color: #4ade80; }
.kpi-change.negative { color: #f87171; }

/* Main Dashboard Area */
.dashboard-main {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
}

.chart-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
}

.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-card-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
}

.legend-dot.blue { background: #60a5fa; }
.legend-dot.lime { background: var(--lime); }

/* Bar Chart */
.chart-container {
    height: 200px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 0 20px;
    gap: 24px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
}

.bar-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar {
    width: 48px;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 0.5s ease;
    min-height: 20px;
}

.bar.lime { background: linear-gradient(180deg, var(--lime) 0%, rgba(196, 245, 59, 0.4) 100%); }
.bar.blue { background: linear-gradient(180deg, #60a5fa 0%, rgba(96, 165, 250, 0.4) 100%); }
.bar.purple { background: linear-gradient(180deg, #c084fc 0%, rgba(192, 132, 252, 0.4) 100%); }
.bar.teal { background: linear-gradient(180deg, #2dd4bf 0%, rgba(45, 212, 191, 0.4) 100%); }
.bar.orange { background: linear-gradient(180deg, #fb923c 0%, rgba(251, 146, 60, 0.4) 100%); }

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.bar-label {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Stats Sidebar */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(196, 245, 59, 0.15) 0%, rgba(196, 245, 59, 0.05) 100%);
    border: 1px solid rgba(196, 245, 59, 0.3);
}

.stat-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.metric-icon {
    font-size: 20px;
}

.metric-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--lime);
    font-family: 'Space Grotesk', sans-serif;
}

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

/* Insights Section */
.insights-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
}

.insights-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 20px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid var(--lime);
}

.insight-card.success { border-left-color: #4ade80; }
.insight-card.warning { border-left-color: #fb923c; }
.insight-card.info { border-left-color: #60a5fa; }

.insight-icon {
    font-size: 20px;
}

.insight-text {
    font-size: 13px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }
    
    .stats-sidebar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kpi-row {
        grid-template-columns: 1fr;
    }
    
    .stats-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .bar-chart {
        padding: 0;
    }
    
    .bar {
        width: 32px;
    }
}

/* ===== ANALYSIS SECTIONS ===== */
.result-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.result-actions {
    display: flex;
    gap: 12px;
}

.analysis-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.analysis-section-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid var(--lime);
}

.analysis-section-card.blue { border-left-color: #60a5fa; }
.analysis-section-card.green { border-left-color: #4ade80; }
.analysis-section-card.orange { border-left-color: #fb923c; }
.analysis-section-card.purple { border-left-color: #c084fc; }
.analysis-section-card.red { border-left-color: #f87171; }
.analysis-section-card.teal { border-left-color: #2dd4bf; }
.analysis-section-card.lime { border-left-color: var(--lime); }

.section-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-card-icon {
    font-size: 24px;
}

.section-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.section-card-content {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.section-card-content p {
    margin: 0 0 12px 0;
}

.section-card-content strong {
    color: var(--white);
}

.section-card-content .styled-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.section-card-content .styled-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-card-content .styled-list li:last-child {
    border-bottom: none;
}

.section-card-content .styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--lime);
}

.section-card-content .metric {
    color: var(--lime);
    font-weight: 600;
}

.section-card-content .list-num {
    color: var(--lime);
    font-weight: 600;
    margin-right: 4px;
}

/* Full width for certain sections */
.analysis-section-card:first-child,
.analysis-section-card:last-child {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .analysis-sections {
        grid-template-columns: 1fr;
    }
    
    .analysis-section-card:first-child,
    .analysis-section-card:last-child {
        grid-column: span 1;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

/* ===== CLIENT DETAIL ===== */
.client-detail-header {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-detail-avatar {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
}

.client-detail-info {
    flex: 1;
}

.client-detail-name {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.client-detail-industry {
    color: var(--text-muted);
    font-size: 14px;
}

.client-detail-stats {
    display: flex;
    gap: 24px;
}

.client-stat {
    text-align: center;
}

.client-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--lime);
}

.client-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabs-container {
    margin-bottom: 24px;
}

.tabs {
    display: flex;
    gap: 8px;
    background: var(--card-bg);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}

.tab {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.tab.active {
    background: var(--lime);
    color: var(--dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
}

.dashboard-card.full-width {
    grid-column: span 2;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dashboard-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.dashboard-card-change {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dashboard-card-change.positive {
    color: #4ade80;
}

.dashboard-card-change.negative {
    color: #f87171;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.kpi-item {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.kpi-item .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.kpi-item .label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Mini Chart Placeholder */
.mini-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(196, 245, 59, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--lime) 0%, rgba(196, 245, 59, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 10px;
}

/* Client Info Form */
.info-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-section {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 20px;
}

.info-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 13px;
}

.info-value {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.info-actions {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
}

/* ===== UTILITIES ===== */
.hidden { display: none !important; }
.text-lime { color: var(--lime); }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .salsa-container {
        padding: 16px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-title {
        font-size: 26px;
    }
    
    .welcome h2 {
        font-size: 28px;
    }
    
    .reco-header-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .reco-impact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .client-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .step-indicator {
        text-align: left;
    }
    
    .step-dots {
        justify-content: flex-start;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
}
