/* Gründungsberater Checkout — CTA Button Styles
   Passt sich an beide Landing-Page-Designs an (dark + light). */

.gb-cta-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

/* ------------------------------------------------------------------
   Basis-Button
   ------------------------------------------------------------------ */
.gb-cta-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.15s;
    cursor: pointer;
    line-height: 1;
    text-align: center;
}

.gb-cta-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ------------------------------------------------------------------
   Größen
   ------------------------------------------------------------------ */
.gb-cta--default {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

.gb-cta--large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.gb-cta--small {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* ------------------------------------------------------------------
   Stile
   ------------------------------------------------------------------ */

/* Primary — Grün (passt zu Gründungsberater.net) */
.gb-cta--primary {
    background: #1a6b3c;
    color: #ffffff !important;
    border: none;
}

.gb-cta--primary:hover {
    background: #2d9c5a;
    color: #ffffff !important;
}

/* Secondary — Dunkel (passt zu Businesscenter Niederrhein dark theme) */
.gb-cta--secondary {
    background: #00d4a0;
    color: #0a0e1a !important;
    border: none;
}

.gb-cta--secondary:hover {
    opacity: 0.88;
    color: #0a0e1a !important;
}

/* Outline — transparent mit Rahmen */
.gb-cta--outline {
    background: transparent;
    color: currentColor !important;
    border: 1.5px solid currentColor;
}

.gb-cta--outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------------------------------
   Badge (Ratenzahlung-Hinweis)
   ------------------------------------------------------------------ */
.gb-cta-badge {
    display: inline-block;
    background: rgba(26, 107, 60, 0.1);
    color: #1a6b3c;
    border: 1px solid rgba(26, 107, 60, 0.25);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

/* ------------------------------------------------------------------
   Lade-Spinner (innerhalb Button)
   ------------------------------------------------------------------ */
.gb-cta-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: gb-spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

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

.gb-cta-btn[data-loading="1"] {
    opacity: 0.75;
    cursor: wait;
    pointer-events: none;
}

/* ------------------------------------------------------------------
   Preis-Anzeige
   ------------------------------------------------------------------ */
.gb-cta-price {
    font-size: 0.78rem;
    color: inherit;
    opacity: 0.6;
}
