/* ═══════════════════════════════════════════════════════
   beratung.css – Styles für schnittstellenberatung.html
   und individualsoftware.html
═══════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────── */
.brt-hero {
    padding: 96px 0 80px;
    background: linear-gradient(135deg, #fff8f2 0%, #fff 60%, #fdf4ff 100%);
    border-bottom: 1px solid var(--border);
}
.brt-hero--purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #fff 60%, #fff8f2 100%);
}
.brt-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.brt-hero-text .section-badge {
    margin-bottom: 16px;
}
.brt-hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    hyphens: auto;
}
.brt-hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.brt-hero-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    width: fit-content;
}
.brt-price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-orange);
}
.brt-price-tag span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}
.brt-price-note {
    font-size: 0.82rem;
    color: var(--text-faint);
}
.brt-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.brt-hero-reassure {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

/* ── HERO VISUAL CARD ────────────────────────────── */
.brt-visual-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.brt-visual-card--purple {
    border-color: rgba(139,92,246,0.2);
    background: linear-gradient(135deg, #faf8ff, white);
}
.brt-visual-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.brt-visual-topics {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.brt-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.brt-topic .fa-check-circle { color: #16a34a; font-size: 0.8rem; }
.brt-visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 12px;
}
.brt-vp-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-orange);
}
.brt-vp-amount small {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.brt-vp-note {
    font-size: 0.75rem;
    color: var(--text-faint);
    display: block;
}
.brt-visual-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand-orange);
    color: white;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.brt-visual-btn:hover {
    background: var(--brand-orange-dark, #e67700);
    transform: translateY(-1px);
}

/* ── PROZESS MINI (Hero Individual) ─────────────── */
.brt-process-mini {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.brt-pmini-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
}
.brt-pmini-step.brt-pmini--active .brt-pmini-num {
    background: #8b5cf6;
    color: white;
}
.brt-pmini-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.brt-pmini-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}
.brt-pmini-text span {
    font-size: 0.78rem;
    color: var(--text-faint);
}
.brt-pmini-connector {
    width: 2px;
    height: 12px;
    background: rgba(139,92,246,0.15);
    margin-left: 13px;
}

/* ── SECTIONS ────────────────────────────────────── */
.brt-section { padding: 80px 0; }
.brt-section--light { background: var(--bg-light, #f8fafc); }
.brt-section--white { background: white; }

/* ── AUDIENCE GRID ───────────────────────────────── */
.brt-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.brt-audience-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.brt-audience-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.brt-audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.brt-audience-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.brt-audience-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ── ICON COLOR VARIANTS ─────────────────────────── */
.brt-icon--orange { background: rgba(255,148,0,0.1); color: var(--brand-orange); }
.brt-icon--blue   { background: rgba(37,99,235,0.08); color: #2563eb; }
.brt-icon--green  { background: rgba(22,163,74,0.08); color: #16a34a; }
.brt-icon--purple { background: rgba(139,92,246,0.08); color: #8b5cf6; }

/* ── LIST ────────────────────────────────────────── */
.brt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.brt-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}
.brt-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 700;
}

/* ── STEPS (Schnittstellenberatung Ablauf) ───────── */
.brt-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
.brt-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-orange), rgba(255,148,0,0.1));
}
.brt-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0 0 40px 0;
    position: relative;
}
.brt-step:last-child { padding-bottom: 0; }
.brt-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255,148,0,0.15);
}
.brt-step-body {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    flex: 1;
    margin-top: 4px;
}
.brt-step-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.brt-step-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}
.brt-step-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    display: inline-block;
}
.brt-tag--green  { background: rgba(22,163,74,0.1);  color: #15803d; }
.brt-tag--blue   { background: rgba(37,99,235,0.08); color: #1d4ed8; }
.brt-tag--orange { background: rgba(255,148,0,0.1);  color: #c45500; }
.brt-tag--purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.brt-step-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.15s;
}
.brt-step-link:hover { gap: 10px; }

/* ── INFO BOX ────────────────────────────────────── */
.brt-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(37,99,235,0.05);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.brt-info-box i { color: #2563eb; flex-shrink: 0; margin-top: 2px; }

/* ── TOPICS GRID ─────────────────────────────────── */
.brt-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.brt-topic-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.brt-topic-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.brt-topic-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.brt-topic-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.brt-topic-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── PRICING BLOCK ───────────────────────────────── */
.brt-pricing-block {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
.brt-pricing-card {
    background: white;
    border: 2px solid var(--brand-orange);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(255,148,0,0.1);
}
.brt-pricing-card--purple {
    border-color: #8b5cf6;
    box-shadow: 0 8px 32px rgba(139,92,246,0.1);
}
.brt-pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.brt-pricing-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}
.brt-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.brt-pa-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-orange);
}
.brt-pricing-card--purple .brt-pa-big { color: #8b5cf6; }
.brt-pa-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.brt-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brt-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.brt-pricing-list li .fa-check {
    color: #16a34a;
    margin-top: 2px;
    flex-shrink: 0;
}
.brt-pricing-free {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.brt-pricing-free i { color: #16a34a; margin-top: 2px; flex-shrink: 0; }
.brt-pricing-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ── FAQ ─────────────────────────────────────────── */
.brt-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.brt-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.brt-faq-item:first-child { border-top: 1px solid var(--border); }
.brt-faq-q {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: default;
    margin-bottom: 8px;
}
.brt-faq-q i { color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; }
.brt-faq-a {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding-left: 22px;
}
.brt-faq-a a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}
.brt-faq-a a:hover { text-decoration: underline; }

/* ── CTA SECTION ─────────────────────────────────── */
.brt-cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.brt-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.brt-cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.brt-cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.brt-cta-sub {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    font-size: 0.87rem !important;
    color: rgba(255,255,255,0.5) !important;
}
.brt-cta-sub a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 600;
}
.brt-cta-sub a:hover { color: white; text-decoration: underline; }

/* ── USP BAR (Individualsoftware) ────────────────── */
.brt-usp-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.brt-usp-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.brt-usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.brt-usp-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── PROCESS STEPS (Individualsoftware) ──────────── */
.brt-process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}
.brt-pstep {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: flex-start;
}
.brt-pstep-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.brt-pstep-content {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
}
.brt-pstep-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.brt-pstep-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.brt-pstep-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
}
.brt-pstep-content p:last-of-type { margin-bottom: 0; }

/* ── HIGHLIGHT BOX ───────────────────────────────── */
.brt-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fffbf0, #fff);
    border: 1.5px solid rgba(255,148,0,0.25);
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 14px;
}
.brt-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,148,0,0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.brt-highlight-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.brt-highlight-text p {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

/* ── DECISION GRID ───────────────────────────────── */
.brt-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}
.brt-decision-card {
    background: var(--bg-light, #f8fafc);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.brt-decision-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.brt-decision-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.brt-decision-card p {
    font-size: 0.8rem !important;
    color: var(--text-faint) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* ── EXAMPLES GRID ───────────────────────────────── */
.brt-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.brt-example-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.brt-example-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.brt-example-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.brt-example-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.brt-example-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.brt-example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.brt-example-tags span {
    background: rgba(255,148,0,0.08);
    border: 1px solid rgba(255,148,0,0.2);
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .brt-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .brt-audience-grid,
    .brt-topics-grid,
    .brt-examples-grid { grid-template-columns: repeat(2, 1fr); }
    .brt-pricing-block { grid-template-columns: 1fr; }
    .brt-pricing-card { max-width: 460px; }
    .brt-decision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .brt-hero { padding: 64px 0 48px; }
    .brt-hero-text h1 { font-size: 2rem; }
    .brt-audience-grid,
    .brt-topics-grid,
    .brt-examples-grid { grid-template-columns: 1fr; }
    .brt-steps::before { display: none; }
    .brt-step { flex-direction: column; gap: 12px; }
    .brt-pstep { grid-template-columns: 1fr; }
    .brt-pstep-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .brt-usp-sep { display: none; }
    .brt-usp-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 16px; }
    .brt-pricing-block { grid-template-columns: 1fr; }
}
