/* =========================================================
   Decision-App — Mobile-first Styling
   Brand: Gold #C9A84C, Dark #0d0d0d, Text #f0ece4
   ========================================================= */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #f0ece4;
    line-height: 1.6;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 120% 80% at 10% 15%, rgba(116, 140, 105, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 85% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 100% at 50% 5%, rgba(240, 236, 228, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 70% 50% at 75% 25%, rgba(240, 236, 228, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 20% 85%, rgba(116, 140, 105, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 40% 40% at 60% 55%, rgba(201, 168, 76, 0.08) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-color: #0d0d0d;
}

a {
    color: #C9A84C;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    min-height: 100dvh;
}

/* --- Typography --- */

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #f0ece4;
}

h1 em {
    font-style: italic;
    color: #C9A84C;
}

h2 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1.25rem;
    color: #f0ece4;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #f0ece4;
}

p {
    margin-bottom: 1rem;
}

/* --- Pages --- */

.page {
    padding: 2.5rem 0 3rem;
}

/* --- Brand Mark --- */

.brand-mark {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.flow-check-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}

/* --- Buttons --- */

.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #C9A84C;
    color: #0d0d0d;
}

.btn-primary:hover {
    background-color: #d4b85e;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #C9A84C;
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(201, 168, 76, 0.1);
    border-color: #C9A84C;
}

.btn-full {
    display: block;
    width: 100%;
}

/* --- Hint Text --- */

.hint {
    font-size: 0.8rem;
    color: rgba(240, 236, 228, 0.4);
    margin-top: 1rem;
}

/* --- Error --- */

.error-msg {
    background-color: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(192, 57, 43, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* =========================================================
   START PAGE
   ========================================================= */

.page-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
}

.page-start .flow-check-label {
    margin-bottom: 1rem;
}

.page-start h1 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.page-start .subtitle {
    font-size: 1rem;
    color: rgba(240, 236, 228, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.page-start .btn {
    margin-bottom: 0.5rem;
}

/* =========================================================
   QUESTION PAGE
   ========================================================= */

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: #C9A84C;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-label {
    font-size: 0.8rem;
    color: rgba(240, 236, 228, 0.4);
    margin-bottom: 2rem;
}

.question-subtitle {
    font-size: 0.9rem;
    color: rgba(240, 236, 228, 0.5);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: rgba(116, 140, 105, 0.15);
    border: 1px solid rgba(116, 140, 105, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-card:hover {
    border-color: rgba(116, 140, 105, 0.6);
    background-color: rgba(116, 140, 105, 0.25);
}

.option-card.selected,
.option-card:has(input:checked) {
    border-color: #748c69;
    background-color: rgba(116, 140, 105, 0.3);
}

.option-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(240, 236, 228, 0.25);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.option-card input[type="radio"]:checked {
    border-color: #C9A84C;
    background-color: #C9A84C;
}

.option-card input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: #0d0d0d;
    border-radius: 50%;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.option-text {
    font-size: 1rem;
    font-weight: 500;
    color: #f0ece4;
}

.option-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(240, 236, 228, 0.5);
    line-height: 1.4;
}

.back-link {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(240, 236, 228, 0.4);
    text-decoration: none;
    margin-top: 0.5rem;
}

.back-link:hover {
    color: #C9A84C;
}

/* =========================================================
   TEASER PAGE
   ========================================================= */

.teaser-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #C9A84C;
    background-color: rgba(201, 168, 76, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.teaser-erklaerung {
    font-size: 1.05rem;
    color: rgba(240, 236, 228, 0.7);
    margin-bottom: 1.5rem;
}

.teaser-preview {
    background-color: rgba(240, 236, 228, 0.04);
    border-left: 3px solid #C9A84C;
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.teaser-preview p {
    color: rgba(240, 236, 228, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.email-capture {
    background-color: rgba(240, 236, 228, 0.04);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(240, 236, 228, 0.1);
}

.input-email {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid rgba(240, 236, 228, 0.15);
    border-radius: 8px;
    background-color: rgba(240, 236, 228, 0.06);
    color: #f0ece4;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-email:focus {
    border-color: #C9A84C;
}

.input-email::placeholder {
    color: rgba(240, 236, 228, 0.35);
}

/* =========================================================
   LOADING PAGE
   ========================================================= */

.page-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    text-align: center;
}

.loading-container {
    max-width: 320px;
}

.loading-spinner {
    margin: 0 auto 2rem;
    width: 48px;
    height: 48px;
}

.spinner-ring {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201, 168, 76, 0.15);
    border-top-color: #C9A84C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.page-loading h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.loading-text {
    color: rgba(240, 236, 228, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    min-height: 1.5em;
    transition: opacity 0.3s ease;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(240, 236, 228, 0.2);
    transition: color 0.4s ease;
}

.loading-step.active {
    color: #C9A84C;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(240, 236, 228, 0.15);
    flex-shrink: 0;
    transition: background-color 0.4s ease;
}

.loading-step.active .step-dot {
    background-color: #C9A84C;
}

/* =========================================================
   CONFIRM PAGE
   ========================================================= */

.page-confirm {
    text-align: center;
    padding-top: 4rem;
}

.confirm-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.confirm-text {
    font-size: 1.1rem;
    color: rgba(240, 236, 228, 0.7);
    margin-bottom: 2rem;
}

.confirm-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto 2rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(240, 236, 228, 0.8);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #C9A84C;
    color: #0d0d0d;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================================
   RESULTS PAGE
   ========================================================= */

.stage-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}

/* --- Deep Questions Form --- */

.deep-form {
    margin-top: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0ece4;
    margin-bottom: 0.5rem;
}

.form-group textarea {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    border: 1px solid rgba(240, 236, 228, 0.15);
    border-radius: 8px;
    background-color: rgba(240, 236, 228, 0.06);
    color: #f0ece4;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

.form-group textarea:focus {
    border-color: #C9A84C;
}

.form-group textarea::placeholder {
    color: rgba(240, 236, 228, 0.3);
    font-size: 0.9rem;
}

.page-results h1 {
    margin-bottom: 2rem;
}

.result-block {
    background-color: rgba(240, 236, 228, 0.04);
    border: 1px solid rgba(240, 236, 228, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.result-block-highlight {
    border: 1px solid rgba(201, 168, 76, 0.4);
    background-color: rgba(201, 168, 76, 0.06);
}

.result-block-cta {
    background-color: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    text-align: center;
}

.result-block-cta .block-label {
    color: #C9A84C;
}

.result-block-cta .result-text {
    color: rgba(240, 236, 228, 0.8);
}

.block-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}

.result-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(240, 236, 228, 0.8);
    margin-bottom: 0;
}

.sofort-tool-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(240, 236, 228, 0.8);
    white-space: pre-line;
}

/* --- Tool Hinweis --- */

.tool-hinweis {
    font-size: 0.9rem;
    color: rgba(240, 236, 228, 0.5);
    background-color: rgba(240, 236, 228, 0.04);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-style: italic;
}

/* --- Empfehlungen --- */

.empfehlungen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empfehlung-card {
    background-color: rgba(240, 236, 228, 0.04);
    border: 1px solid rgba(240, 236, 228, 0.08);
    padding: 1.25rem;
    border-radius: 10px;
}

.empfehlung-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f0ece4;
    margin-bottom: 0.25rem;
}

.empfehlung-preis {
    font-size: 0.85rem;
    color: #C9A84C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empfehlung-pitch {
    font-size: 0.9rem;
    color: rgba(240, 236, 228, 0.6);
    margin-bottom: 0.75rem;
}

.empfehlung-card .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.affiliate-hinweis {
    display: block;
    font-size: 0.75rem;
    color: rgba(240, 236, 228, 0.3);
    margin-top: 0.5rem;
}

/* =========================================================
   RESULTS PAGE — 8 Module
   ========================================================= */

/* --- X-Ray Grid --- */

.xray-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.xray-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    background-color: rgba(240, 236, 228, 0.04);
    border-radius: 8px;
}

.xray-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(240, 236, 228, 0.4);
}

.xray-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f0ece4;
}

/* --- Confidence Bar --- */

.confidence-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A84C, #d4b85e);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.confidence-label {
    font-size: 0.8rem;
    color: rgba(240, 236, 228, 0.4);
    margin-bottom: 0;
}

/* --- Result Subtitle --- */

.result-subtitle {
    font-size: 0.95rem;
    color: rgba(240, 236, 228, 0.5);
    margin-bottom: 1rem;
}

/* --- Contrast Block (Diagnose) --- */

.result-block-contrast {
    background-color: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.result-block-contrast .block-label {
    color: #C9A84C;
}

.result-block-contrast h3 {
    color: #C9A84C;
    margin-bottom: 0.5rem;
}

.result-block-contrast .result-text {
    color: rgba(240, 236, 228, 0.85);
}

.training-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.training-cta p {
    font-size: 0.95rem;
    color: rgba(240, 236, 228, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.training-cta .btn {
    font-size: 0.85rem;
}

.mismatch-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
}

.mismatch-note p {
    font-size: 0.9rem;
    color: #C9A84C;
    margin-bottom: 0;
    font-style: italic;
}

/* --- Coach Comment --- */

.coach-comment {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background-color: rgba(201, 168, 76, 0.06);
    border-left: 3px solid #C9A84C;
    border-radius: 0 8px 8px 0;
}

.coach-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #C9A84C;
    margin-bottom: 0.5rem;
}

.coach-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(240, 236, 228, 0.7);
    margin-bottom: 0;
}

/* --- Haupthebel --- */

.hebel-title {
    font-size: 1.25rem;
    color: #C9A84C;
    margin-bottom: 0.5rem;
}

.hebel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    background-color: rgba(201, 168, 76, 0.12);
    color: #C9A84C;
    border-radius: 20px;
}

.quick-win-plan {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.quick-win-plan h3 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.step-list {
    padding-left: 1.25rem;
}

.step-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(240, 236, 228, 0.8);
    margin-bottom: 0.5rem;
}

.step-list li a {
    color: #C9A84C;
}

/* --- Warning Block (Fokuswarnung) --- */

.result-block-warning {
    background-color: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.result-block-warning .block-label {
    color: #C9A84C;
}

.result-block-warning h3 {
    color: #f0ece4;
}

/* --- Next Actions --- */

.next-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.next-action-card {
    padding: 1rem 1.25rem;
    background-color: rgba(240, 236, 228, 0.04);
    border: 1px solid rgba(240, 236, 228, 0.08);
    border-radius: 10px;
}

.next-action-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f0ece4;
    margin-bottom: 0.5rem;
}

.next-action-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* --- Produkt Primary hervorheben --- */

.empfehlung-primary {
    border: 1px solid rgba(201, 168, 76, 0.4);
    background-color: rgba(201, 168, 76, 0.06);
}

.empfehlung-reason {
    font-size: 0.85rem;
    color: #C9A84C;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.empfehlung-tool {
    background-color: rgba(240, 236, 228, 0.06);
}

/* =========================================================
   UPGRADE BLOCK (KI-Formular als Mini-Tool)
   ========================================================= */

.upgrade-block {
    background-color: rgba(240, 236, 228, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.upgrade-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d0d0d;
    background-color: #C9A84C;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.upgrade-headline {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f0ece4;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.upgrade-sub {
    font-size: 0.95rem;
    color: rgba(240, 236, 228, 0.6);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.upgrade-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.upgrade-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f0ece4;
    margin-bottom: 0.4rem;
}

.upgrade-field textarea {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    border: 1px solid rgba(240, 236, 228, 0.15);
    border-radius: 10px;
    background-color: rgba(240, 236, 228, 0.06);
    color: #f0ece4;
    resize: none;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.upgrade-field textarea:focus {
    border-color: #C9A84C;
    background-color: rgba(240, 236, 228, 0.08);
}

.upgrade-field textarea::placeholder {
    color: rgba(240, 236, 228, 0.3);
    font-size: 0.88rem;
}

.btn-upgrade {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    color: #0d0d0d;
    background-color: #C9A84C;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}

.btn-upgrade:hover {
    background-color: #d4b85e;
    transform: translateY(-1px);
}

.btn-upgrade:active {
    transform: translateY(0);
}

.btn-upgrade:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.upgrade-micro {
    font-size: 0.8rem;
    color: rgba(240, 236, 228, 0.4);
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* --- Upgrade Loading Animation --- */

.upgrade-loading {
    text-align: center;
    padding: 1.5rem 0;
}

.upgrade-loading-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0ece4;
    margin-bottom: 1.5rem;
}

.upgrade-progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.upgrade-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C9A84C, #d4b85e);
    border-radius: 4px;
    transition: width 2.5s ease;
}

.upgrade-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.upgrade-step {
    font-size: 0.85rem;
    color: rgba(240, 236, 228, 0.2);
    transition: color 0.4s ease;
}

.upgrade-step.active {
    color: #C9A84C;
}

/* --- KI-Ergebnis Blocks --- */

.ki-block {
    margin-bottom: 1.5rem;
}

.ki-block:last-child {
    margin-bottom: 0;
}

.ki-tool {
    padding: 1rem 1.25rem;
    background-color: rgba(201, 168, 76, 0.06);
    border-radius: 8px;
}

/* =========================================================
   RESPONSIVE — Desktop Enhancement
   ========================================================= */

@media (min-width: 600px) {
    .app-container {
        max-width: 560px;
        padding: 0 32px;
    }

    h1 {
        font-size: 2rem;
    }

    .page {
        padding: 3.5rem 0 4rem;
    }

    .page-start h1 {
        font-size: 2.75rem;
    }
}
