/* ============================================================
   LEVARIX RISIKOANALYSE — DESIGN SYSTEM (LIGHT / GREEN)
   v1.2.0
============================================================ */

/* ─── RESET & BASE ─── */
.lvx-risk-wrapper *,
.lvx-risk-wrapper *::before,
.lvx-risk-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lvx-risk-wrapper {
    --lvx-bg:         #ffffff;
    --lvx-surface:    #f8fdf9;
    --lvx-surface-2:  #f0faf3;
    --lvx-border:     rgba(0,0,0,0.08);
    --lvx-border-2:   rgba(0,0,0,0.13);
    --lvx-text:       #0f172a;
    --lvx-text-muted: #475569;
    --lvx-text-dim:   #94a3b8;
    --lvx-primary:    #16a34a;
    --lvx-primary-2:  #15803d;
    --lvx-accent:     #22c55e;
    --lvx-green:      #16a34a;
    --lvx-yellow:     #d97706;
    --lvx-orange:     #ea580c;
    --lvx-red:        #dc2626;
    --lvx-critical:   #b91c1c;
    --lvx-radius:     18px;
    --lvx-radius-sm:  12px;
    --lvx-shadow:     0 4px 32px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    --lvx-shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lvx-text);
    background: var(--lvx-bg);
    border-radius: var(--lvx-radius);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--lvx-shadow);
    border: 1px solid rgba(22,163,74,0.15);
    position: relative;
}

/* ─── HEADER ─── */
.lvx-header {
    position: relative;
    text-align: center;
    padding: 52px 40px 40px;
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    border-bottom: 1px solid rgba(22,163,74,0.12);
    overflow: hidden;
}

/* Decorative circles */
.lvx-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.lvx-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lvx-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.25);
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lvx-header-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lvx-green);
    border-radius: 50%;
    animation: lvx-pulse 2s infinite;
}

@keyframes lvx-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.lvx-header-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: var(--lvx-text);
    position: relative;
    z-index: 1;
}

.lvx-gradient-text {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lvx-header-sub {
    color: var(--lvx-text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.lvx-header-stats {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(22,163,74,0.1);
    position: relative;
    z-index: 1;
}

.lvx-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
}

.lvx-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--lvx-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.lvx-stat-label {
    font-size: 11px;
    color: var(--lvx-text-dim);
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lvx-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(22,163,74,0.15);
}

/* ─── PROGRESS BAR ─── */
.lvx-progress-bar-wrap {
    padding: 24px 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--lvx-border);
}

.lvx-progress-track {
    height: 4px;
    background: #e2e8f0;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.lvx-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lvx-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}

.lvx-pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: default;
}

.lvx-pstep-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lvx-pstep-dot span {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.3s;
}

.lvx-pstep-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.lvx-pstep.active .lvx-pstep-dot {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}
.lvx-pstep.active .lvx-pstep-dot span { color: #fff; }
.lvx-pstep.active .lvx-pstep-label { color: #16a34a; font-weight: 700; }

.lvx-pstep.completed .lvx-pstep-dot {
    background: #16a34a;
    border-color: transparent;
}
.lvx-pstep.completed .lvx-pstep-dot span { display: none; }
.lvx-pstep.completed .lvx-pstep-dot::after {
    content: '✓';
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}
.lvx-pstep.completed .lvx-pstep-label { color: #16a34a; }

/* ─── STEPS ─── */
.lvx-steps-container { background: var(--lvx-bg); }

.lvx-step {
    display: none;
    animation: lvxStepIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lvx-step.active { display: block; }

@keyframes lvxStepIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.lvx-step-inner { padding: 36px 40px; }

.lvx-question-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--lvx-text);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--lvx-border);
}

/* ─── QUESTION BLOCKS ─── */
.lvx-question-block { margin-bottom: 32px; }

.lvx-question-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--lvx-text);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lvx-q-num {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── OPTIONS GRID ─── */
.lvx-options-grid { display: grid; gap: 10px; }

.lvx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.lvx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lvx-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── OPTION CARD ─── */
.lvx-opt {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--lvx-radius-sm);
    padding: 16px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.18s ease;
    position: relative;
    overflow: hidden;
    color: var(--lvx-text);
    font-family: inherit;
    box-shadow: var(--lvx-shadow-sm);
}

.lvx-opt:hover {
    border-color: rgba(22,163,74,0.4);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.1), 0 2px 6px rgba(0,0,0,0.05);
    background: #f8fdf9;
}

.lvx-opt.selected {
    border-color: var(--lvx-primary);
    background: #f0fdf4;
    box-shadow: 0 0 0 1px #16a34a, 0 4px 16px rgba(22,163,74,0.2);
}

.lvx-opt.selected .lvx-opt-text { color: #15803d; }

/* Checkmark on selected */
.lvx-opt.selected::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: var(--lvx-primary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 18px;
    text-align: center;
}

.lvx-opt-icon {
    font-size: 24px;
    line-height: 1;
}

.lvx-opt-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--lvx-text);
    line-height: 1.3;
    transition: color 0.2s;
}

.lvx-opt-sub {
    font-size: 11px;
    color: var(--lvx-text-dim);
    line-height: 1.3;
}

/* Row variant */
.lvx-opt.lvx-opt-row {
    flex-direction: row;
    text-align: left;
    padding: 14px 16px;
    gap: 14px;
    align-items: flex-start;
}

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

.lvx-opt.lvx-opt-row div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* ─── NAVIGATION ─── */
.lvx-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--lvx-border);
}

.lvx-nav-result { margin-top: 16px; }

.lvx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.lvx-btn-primary:hover:not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}

.lvx-btn-primary:active:not(.disabled) { transform: translateY(0); }

.lvx-btn-primary.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.lvx-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--lvx-text-muted);
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lvx-btn-ghost:hover {
    color: var(--lvx-text);
    border-color: #cbd5e1;
    background: #f8fafc;
}

/* ─── RESULT: GAUGE ─── */
.lvx-result-hero {
    text-align: center;
    padding: 10px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lvx-gauge-wrap {
    width: 260px;
    max-width: 100%;
}

.lvx-gauge-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.lvx-gauge-track { }

.lvx-gauge-arc {
    transition: stroke-dashoffset 0.05s linear, stroke 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(22,163,74,0.25));
}

.lvx-gauge-score {
    font-size: 36px;
    font-weight: 800;
    fill: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -2px;
}

.lvx-gauge-unit {
    font-size: 11px;
    fill: #94a3b8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lvx-result-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 1.5px solid transparent;
}

.lvx-result-badge.low      { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.lvx-result-badge.medium   { background: #fefce8; border-color: #fde047; color: #a16207; }
.lvx-result-badge.high     { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.lvx-result-badge.critical { background: #fef2f2; border-color: #fca5a5; color: #b91c1c; }

/* ─── RECOMMENDATION CARDS ─── */
.lvx-recommendations { margin-bottom: 32px; }

.lvx-rec-card {
    border-radius: var(--lvx-radius-sm);
    padding: 20px;
    border: 1.5px solid;
    animation: lvxFadeUp 0.4s ease;
}

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

.lvx-rec-low      { background: #f0fdf4; border-color: #86efac; }
.lvx-rec-medium   { background: #fefce8; border-color: #fde68a; }
.lvx-rec-high     { background: #fff7ed; border-color: #fed7aa; }
.lvx-rec-critical { background: #fef2f2; border-color: #fca5a5; }

.lvx-rec-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.lvx-rec-header .lvx-rec-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.lvx-rec-header strong { display: block; font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.lvx-rec-header span { font-size: 14px; color: #475569; }

.lvx-rec-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }

.lvx-rec-list li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.5;
}

.lvx-rec-list li::before {
    content: '→';
    color: var(--lvx-primary);
    font-size: 13px;
    flex-shrink: 0;
}

/* ─── CONTACT SECTION ─── */
.lvx-contact-section {
    background: var(--lvx-surface-2);
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: var(--lvx-radius);
    padding: 32px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.lvx-contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #16a34a);
    background-size: 200%;
    animation: lvxShimmer 3s linear infinite;
}

@keyframes lvxShimmer {
    from { background-position: 0%; }
    to   { background-position: 200%; }
}

.lvx-contact-header { margin-bottom: 24px; }

.lvx-contact-header h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--lvx-text);
}

.lvx-contact-header p { font-size: 14px; color: var(--lvx-text-muted); line-height: 1.6; }

/* ─── FORM ─── */
.lvx-contact-form { display: flex; flex-direction: column; gap: 14px; }

.lvx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.lvx-form-group { display: flex; flex-direction: column; gap: 6px; }

.lvx-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--lvx-text-muted);
}

.lvx-form-group input,
.lvx-form-group textarea {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--lvx-radius-sm);
    color: var(--lvx-text);
    font-family: inherit;
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    resize: vertical;
}

.lvx-form-group input::placeholder,
.lvx-form-group textarea::placeholder {
    color: #cbd5e1;
}

.lvx-form-group input:focus,
.lvx-form-group textarea:focus {
    border-color: var(--lvx-primary);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}

.lvx-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.lvx-privacy-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--lvx-text-dim);
}

.lvx-privacy-note svg { flex-shrink: 0; opacity: 0.6; }

/* ─── SUBMIT BUTTON ─── */
.lvx-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(22,163,74,0.35);
    letter-spacing: -0.01em;
}

.lvx-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(22,163,74,0.45);
}
.lvx-btn-submit:active { transform: translateY(0); }
.lvx-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ─── SPINNER ─── */
.lvx-spinner { animation: lvxSpin 0.8s linear infinite; }

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

/* ─── SUCCESS STATE ─── */
.lvx-success {
    text-align: center;
    padding: 48px 20px;
    animation: lvxFadeUp 0.4s ease;
}

.lvx-success-icon {
    width: 72px;
    height: 72px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--lvx-green);
    animation: lvxBounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.lvx-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--lvx-text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.lvx-success p {
    font-size: 14px;
    color: var(--lvx-text-muted);
    max-width: 360px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
    .lvx-header           { padding: 32px 20px 28px; }
    .lvx-step-inner       { padding: 24px 20px; }
    .lvx-progress-bar-wrap{ padding: 18px 20px 0; }
    .lvx-pstep-label      { display: none; }
    .lvx-contact-section  { padding: 24px 18px; }
    .lvx-form-row         { grid-template-columns: 1fr; }
    .lvx-grid-3           { grid-template-columns: repeat(2, 1fr); }
    .lvx-grid-4           { grid-template-columns: repeat(2, 1fr); }
    .lvx-grid-2           { grid-template-columns: 1fr; }
    .lvx-form-footer      { flex-direction: column; align-items: flex-start; }
    .lvx-btn-submit       { width: 100%; justify-content: center; }
    .lvx-nav              { flex-direction: column-reverse; gap: 10px; }
    .lvx-btn-primary,
    .lvx-btn-ghost        { width: 100%; justify-content: center; }
}

@media (max-width: 440px) {
    .lvx-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER — BREIT (WIDE) — LIGHT GREEN THEME
============================================================ */

.lvx-cta-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ─── WIDE BANNER ─── */
.lvx-cta-breit {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow:
        0 4px 32px rgba(22,163,74,0.1),
        0 1px 3px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.lvx-cta-breit-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.lvx-cta-breit-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22,163,74,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,163,74,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.lvx-cta-breit-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    gap: 0;
    min-height: 320px;
}

.lvx-cta-breit-left { padding: 48px 48px 48px 52px; }

.lvx-cta-breit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.3);
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.lvx-cta-pulse {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: lvx-pulse 2s infinite;
}

.lvx-cta-breit-headline {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.2;
}

.lvx-cta-breit-sub {
    font-size: 16px;
    color: #475569;
    margin: 0 0 22px;
    max-width: 440px;
    line-height: 1.6;
}

.lvx-cta-breit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 28px;
}

.lvx-cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.lvx-cta-feature svg { color: #16a34a; flex-shrink: 0; }

.lvx-cta-breit-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lvx-cta-breit-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* ─── RIGHT VISUAL ─── */
.lvx-cta-breit-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 40px 0;
    height: 100%;
}

.lvx-cta-visual {
    position: relative;
    width: 260px;
    height: 260px;
}

.lvx-cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lvx-cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: lvxRingPulse 3s ease-in-out infinite;
}

.lvx-cta-ring-1 {
    width: 120px;
    height: 120px;
    border-color: rgba(22,163,74,0.5);
    background: rgba(22,163,74,0.08);
    animation-delay: 0s;
}
.lvx-cta-ring-2 {
    width: 172px;
    height: 172px;
    border-color: rgba(22,163,74,0.25);
    animation-delay: 0.5s;
}
.lvx-cta-ring-3 {
    width: 228px;
    height: 228px;
    border-color: rgba(22,163,74,0.12);
    animation-delay: 1s;
}

@keyframes lvxRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 0.7; }
}

.lvx-cta-shield-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    color: #16a34a;
    filter: drop-shadow(0 0 12px rgba(22,163,74,0.4));
}

.lvx-cta-shield-icon svg { width: 100%; height: 100%; }

.lvx-cta-stat-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(22,163,74,0.12), 0 2px 6px rgba(0,0,0,0.05);
    animation: lvxFloat 4s ease-in-out infinite;
}

.lvx-cta-stat-card-1 { top: 10px; right: -10px; animation-delay: 0s; }
.lvx-cta-stat-card-2 { bottom: 10px; left: -20px; animation-delay: 2s; }

@keyframes lvxFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.lvx-cta-sc-num {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1;
}

.lvx-cta-sc-label {
    font-size: 11px;
    color: #64748b;
    max-width: 120px;
    line-height: 1.3;
}

/* ─── SHARED CTA BUTTON ─── */
.lvx-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(22,163,74,0.35);
}

.lvx-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(22,163,74,0.45);
    color: #fff;
    text-decoration: none;
}

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

.lvx-cta-btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.lvx-cta-btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
}

/* ─── RESPONSIVE WIDE ─── */
@media (max-width: 860px) {
    .lvx-cta-breit-inner { grid-template-columns: 1fr; }
    .lvx-cta-breit-right { display: none; }
    .lvx-cta-breit-left  { padding: 36px 28px; }
}

@media (max-width: 560px) {
    .lvx-cta-breit-left { padding: 28px 20px; }
    .lvx-cta-breit-headline { font-size: 22px; }
    .lvx-cta-btn-lg { width: 100%; justify-content: center; }
    .lvx-cta-breit-actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CTA BANNER — SCHMAL (NARROW) — LIGHT GREEN THEME
============================================================ */

.lvx-cta-schmal {
    position: relative;
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(22,163,74,0.22);
    border-radius: 20px;
    overflow: hidden;
    padding: 32px 26px;
    text-align: center;
    box-shadow:
        0 4px 24px rgba(22,163,74,0.12),
        0 1px 4px rgba(0,0,0,0.05);
    max-width: 320px;
    margin: 0 auto;
}

.lvx-cta-schmal-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.lvx-cta-schmal-badge {
    display: inline-block;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.3);
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lvx-cta-schmal-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: #fff;
    border: 1.5px solid rgba(22,163,74,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    box-shadow: 0 4px 16px rgba(22,163,74,0.2);
}

.lvx-cta-schmal-icon svg { width: 30px; height: 30px; }

.lvx-cta-schmal-headline {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 9px;
    line-height: 1.25;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lvx-cta-schmal-sub {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: #475569;
    margin: 0 0 20px;
    line-height: 1.55;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lvx-cta-schmal-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: 12px;
    padding: 13px 8px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(22,163,74,0.08);
}

.lvx-cta-schmal-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 3px;
}

.lvx-cta-schmal-stat strong {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lvx-cta-schmal-stat span {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lvx-cta-schmal-divider {
    width: 1px;
    height: 26px;
    background: rgba(22,163,74,0.15);
}

.lvx-cta-schmal-privacy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #94a3b8;
    margin: 12px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Top accent line */
.lvx-cta-schmal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    z-index: 2;
}
