/* ═══════════════════════════════════════════════════════
   XrBeratung.css – Seite 55
   ═══════════════════════════════════════════════════════ */

:root {
    --accent: #128c46;
    --accent-dark: #0a5c2e;
    --accent2: #9EC5A8;
    --dark: #1a1a1a;
    --muted: #6b7280;
    --light: #f2f3f4;
    --white: #ffffff;
    --pad: 70px;
}

/* ══ HERO ══ */
.xrb-hero {
    background: var(--accent);
    padding: 60px var(--pad) 50px;
    position: relative; overflow: hidden;
    width: 100%; box-sizing: border-box;
}
.xrb-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
            radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
            radial-gradient(ellipse 30% 50% at 0% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.xrb-hero::after {
    content: 'VDC'; position: absolute;
    right: -20px; top: 50%; transform: translateY(-50%);
    font-size: 18rem; font-weight: 700;
    color: rgba(255,255,255,0.04);
    letter-spacing: -0.05em; line-height: 1; pointer-events: none;
}
.xrb-hero-inner { position: relative; z-index: 1; }
.xrb-hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.xrb-hero-label::before {
    content: ''; width: 28px; height: 1.5px; background: rgba(255,255,255,0.4);
}
.xrb-hero-inner h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white);
    line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; margin-top: 0;
}
.xrb-hero-text {
    font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7;
    max-width: 100%; margin-bottom: 32px;
}
.xrb-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.xrb-meta-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px; padding: 6px 14px;
    font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.85);
}
.xrb-hero-clip {
    height: 60px; background: var(--accent);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    margin-bottom: -1px; width: 100%;
}

/* ══ BODY ══ */
.xrb-body { padding: 60px var(--pad) 80px; background: #e6e7e8; }

/* ══ SECTIONS ══ */
.xrb-section {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 20px;
}
.xrb-section-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.xrb-section h2 {
    font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 14px;
}
.xrb-section p {
    font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}

/* Themen Grid */
.xrb-themen-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 4px;
}
.xrb-thema {
    background: var(--light); border-radius: 8px;
    padding: 12px 14px; font-size: 0.8rem; color: var(--dark);
    display: flex; align-items: flex-start; gap: 8px;
}
.xrb-thema::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: 5px;
}

/* Booking iframe */
.xrb-booking-wrap {
    margin-top: 20px; border-radius: 10px;
    overflow: hidden; border: 1px solid #e0e0e0;
}
.xrb-booking-wrap iframe {
    display: block; width: 100%; border: none; min-height: 600px;
}

/* ══ CTA ══ */
.xrb-cta {
    background: var(--accent); padding: 72px var(--pad);
    position: relative; overflow: hidden;
}
.xrb-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 40% 60% at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 55%);
}
.xrb-cta-inner {
    position: relative; z-index: 1; display: flex;
    align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.xrb-cta h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--white); }
.xrb-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; }
.xrb-btn-white {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--white); color: var(--accent);
    font-size: 0.9rem; font-weight: 700;
    text-decoration: none; padding: 13px 28px;
    border-radius: 8px; white-space: nowrap; flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}
.xrb-btn-white:hover { background: #f0faf4; transform: translateY(-2px); }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .xrb-themen-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    :root { --pad: 24px; }
    .xrb-themen-grid { grid-template-columns: 1fr; }
    .xrb-cta-inner { flex-direction: column; align-items: flex-start; }
}