:root {
    --max-width: 1100px;
    --accent-start: #black;
    --accent-end: #06b6d4;
    --muted: #6b7280;
    --bg: #ffffff;
}

/* CTA wrapper */
.cta-hero {
    background: black;
    padding: clamp(28px, 5vw, 56px) 16px;
    display: flex;
    justify-content: center;
}

/* inner layout */
.cta-inner {
    width: 100%;
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: center;
    background: var(--bg);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(2, 6, 23, 0.06);
}

/* responsive */
@media (max-width:900px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-visual {
        order: -1;
        height: 140px;
        border-radius: 10px;
        overflow: hidden;
    }
}

/* text */
.cta-content h2 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.05;
}

.cta-content p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
}

/* actions */
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: none;
    border: 1px solid transparent;
}

.btn:focus {
    outline: 3px solid rgba(99, 102, 241, 0.18);
    outline-offset: 3px;
}

.btn-primary {
    background: black;
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(3, 7, 18, 0.09);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-start);
    border: 1px solid rgba(79, 70, 229, 0.12);
}

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

/* icon size */
.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* note */
.cta-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/* visual */
.cta-visual svg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
}

/* gleiche Styles wie vorher, plus Ergänzung für Punkteplan */
.punkteplan-preview {
    background: rgba(99, 102, 241, 0.04);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: 15px;
}

.punkteplan-preview h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.punkteplan-preview ul {
    margin: 0 0 16px;
    padding-left: 20px;
    list-style: none;
}

.punkteplan-preview li {
    margin-bottom: 4px;
    line-height: 1.4;
}

.btn-outline {
    background: transparent;
    color: var(--accent-start);
    border: 1px solid var(--accent-start);
}

.btn-outline:hover {
    background: var(--accent-start);
    color: black;
    transform: translateY(-2px);
}