.c4mulo5-newsletter-gate { padding: 80px 0; }

.c4mulo5-newsletter-gate::before,
.c4mulo5-newsletter-gate::after,
.c4m5-nlg-wrap::before,
.c4m5-nlg-wrap::after,
.c4m5-nlg-content::before,
.c4m5-nlg-content::after {
    display: none !important;
    content: none !important;
}

.c4m5-nlg-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.c4m5-nlg-wrap::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 168, 75, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.c4m5-nlg-content {
    padding: 48px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.c4m5-nlg-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fef9ed;
    color: #92750e;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.c4m5-nlg-headline {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1d2327;
}

.c4m5-nlg-subheadline {
    margin: 0 0 28px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.55;
}

/* Form */
.c4m5-nlg-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
}

.c4m5-nlg-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c4m5-nlg-fieldlabel {
    font-size: 0.78rem;
    font-weight: 600;
    color: #50575e;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.c4m5-nlg-fieldlabel span[aria-label] {
    color: #dc2626;
}

.c4m5-nlg-input {
    padding: 12px 14px;
    border: 2px solid #e5ebf0;
    border-radius: 8px;
    font-size: 1rem;
    color: #1d2327;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}
.c4m5-nlg-input:focus {
    outline: none;
    border-color: #c8a84b;
    box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
}

.c4m5-nlg-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #50575e;
}
.c4m5-nlg-privacy input {
    margin: 4px 0 0;
    flex: 0 0 auto;
}
.c4m5-nlg-privacy a {
    color: #1a5490;
    text-decoration: underline;
}

/* Honeypot (versteckt) */
.c4m5-nlg-honeypot {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.c4m5-nlg-submit {
    padding: 14px 32px;
    background: #c8a84b;
    color: #1d2327;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
}
.c4m5-nlg-submit:hover:not(:disabled) {
    background: #1a5490;
    color: #ffffff;
    transform: translateY(-1px);
}
.c4m5-nlg-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.c4m5-nlg-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    border-left: 3px solid #dc2626;
}

/* Success */
.c4m5-nlg-success {
    padding: 48px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: c4m5-nlg-fade 0.4s ease;
}
@keyframes c4m5-nlg-fade {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.c4m5-nlg-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #e7f7ed;
    color: #0f766e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.c4m5-nlg-success-headline {
    margin: 0 0 18px;
    color: #1d2327;
    font-size: 1.4rem;
    font-weight: 700;
}

.c4m5-nlg-code-box {
    display: inline-flex;
    align-items: stretch;
    border: 2px dashed #c8a84b;
    background: #fef9ed;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    max-width: 100%;
}

.c4m5-nlg-code {
    padding: 14px 22px;
    font-family: ui-monospace, "SFMono-Regular", "Menlo", monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d2327;
    letter-spacing: 0.1em;
    background: transparent;
    border: none;
    user-select: all;
}

.c4m5-nlg-copy {
    padding: 0 18px;
    background: #c8a84b;
    color: #1d2327;
    border: none;
    border-left: 2px dashed #b89640;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}
.c4m5-nlg-copy:hover {
    background: #b89640;
}
.c4m5-nlg-copy.is-copied {
    background: #0f766e;
    color: #ffffff;
}

.c4m5-nlg-success-text {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Layout-Variante: Hero */
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero { padding: 100px 20px; }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-wrap {
    max-width: 800px;
    background: linear-gradient(135deg, #1a5490 0%, #29aae4 100%);
    color: #ffffff;
}
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-headline,
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-success-headline { color: #ffffff; }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-subheadline { color: rgba(255, 255, 255, 0.9); }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-fieldlabel { color: rgba(255, 255, 255, 0.85); }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-input {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-privacy { color: rgba(255, 255, 255, 0.9); }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-privacy a { color: #fef9ed; }
.c4mulo5-newsletter-gate.c4m5-nlg-layout-hero .c4m5-nlg-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1a5490;
}

/* Stil: Minimal */
.c4mulo5-newsletter-gate.c4m5-nlg-style-minimal .c4m5-nlg-wrap {
    background: transparent;
    box-shadow: none;
    border: 1px solid #e5ebf0;
}
.c4mulo5-newsletter-gate.c4m5-nlg-style-minimal .c4m5-nlg-wrap::before {
    display: none !important;
}

@media (max-width: 600px) {
    .c4m5-nlg-content,
    .c4m5-nlg-success { padding: 32px 24px; }
    .c4m5-nlg-headline { font-size: 1.5rem; }
    .c4m5-nlg-code { font-size: 1.1rem; padding: 12px 14px; }
    .c4m5-nlg-copy { padding: 0 12px; font-size: 0.78rem; }
}
