/* ================================================================
   PRODUKT PAGE – css/produkt.css
   ================================================================ */

/* ── Sticky Sub-Nav ─────────────────────────────────────────── */
.prod-subnav {
    position: sticky; top: 58px; z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    /* Fallback: auch als fixed positionieren wenn sticky nicht greift */
}
.prod-subnav.is-fixed {
    position: fixed; top: 58px; left: 0; right: 0;
    z-index: 200;
}
.prod-subnav-link {
    padding: 14px 18px; font-size: 0.855rem; font-weight: 500;
    color: var(--text-muted); text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.prod-subnav-link:hover { color: var(--text); }
.prod-subnav-link.active {
    color: var(--brand-orange); border-bottom-color: var(--brand-orange); font-weight: 600;
}
/* Preise & Pläne – outline pill, ganz rechts */
.prod-subnav-link--plans {
    margin-left: auto; padding: 8px 18px;
    background: transparent; color: var(--brand-orange) !important;
    border-radius: 50px; font-weight: 600;
    border: 1.5px solid rgba(255,148,0,0.4) !important;
    border-bottom: 1.5px solid rgba(255,148,0,0.4) !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    align-self: center;
    display: flex; align-items: center; gap: 7px;
    text-decoration: none; white-space: nowrap;
}
.prod-subnav-link--plans:hover {
    background: rgba(255,148,0,0.07);
    border-color: rgba(255,148,0,0.7) !important;
    transform: translateY(-1px);
}

/* Sub-Nav: nav-container ohne fixe Höhe, full-width inner */
.prod-subnav .nav-container {
    height: auto;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 24px;
}
.prod-subnav-inner {
    flex: 1;
    display: flex; gap: 0; align-items: center;
    padding: 0; overflow-x: auto;
    scrollbar-width: none;
}
.prod-subnav-inner::-webkit-scrollbar { display: none; }
/* Logo-Platzhalter in der Sub-Nav: passt erste Link-Position unter Produkt */
.prod-subnav-logo-spacer {
    flex-shrink: 0;
    /* Breite wird per JS gesetzt – Fallback: 0 */
    width: 0;
    display: block;
}

.prod-section-anchor { display: block; height: 0; pointer-events: none; }

/* ── Prod Hero ──────────────────────────────────────────────── */
.prod-hero {
    padding: 80px 0 72px;
    background: linear-gradient(160deg, #f8faff 0%, #fff8f0 55%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
}
.prod-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.prod-hero-text { max-width: 540px; }
.prod-hero-text h1 { font-size: 2.5rem; font-weight: 800; color: var(--text); margin: 16px 0 20px; line-height: 1.2; }
.prod-hero-lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.prod-hero-sub  { font-size: 0.92rem; color: var(--text-faint); line-height: 1.7; margin-bottom: 28px; }
.prod-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Integration Teaser Block ───────────────────────────────── */
.prod-integration-teaser {
    padding: 88px 0 80px;
    background: linear-gradient(180deg, #f0f4ff 0%, #fff8f0 60%, #ffffff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.int-teaser-inner {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center;
}
.section-badge--green {
    background: rgba(22,163,74,0.08); color: #15803d;
    border: 1px solid rgba(22,163,74,0.18);
}
.int-teaser-text h2 {
    font-size: 2rem; font-weight: 800; color: var(--text);
    margin: 16px 0 16px; line-height: 1.25;
}
.int-teaser-text p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px;
}
.int-teaser-pills {
    display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px;
}
.int-pill {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.875rem; color: var(--text-muted);
}
.int-pill i { font-size: 0.7rem; flex-shrink: 0; }
.int-pill--green i { color: #16a34a; }

/* Code blocks */
.code-block {
    border-radius: 14px; overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 0;
}
.code-block-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    background: #f1f3f6; border-bottom: 1px solid var(--border);
}
.code-block-bar--green { background: #f0fdf4; border-bottom-color: rgba(22,163,74,0.2); }
.code-block-dots { display: flex; gap: 5px; }
.code-block-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: #d1d5db;
}
.code-block-dots span:nth-child(1) { background: #f87171; }
.code-block-dots span:nth-child(2) { background: #fbbf24; }
.code-block-dots span:nth-child(3) { background: #34d399; }
.code-block-title {
    font-size: 0.72rem; font-weight: 600; color: var(--text-faint);
    margin-left: 4px;
}
.code-block-pre {
    margin: 0; padding: 20px 20px;
    font-family: 'Courier New', 'Menlo', monospace;
    font-size: 0.8rem; line-height: 1.7;
    overflow-x: auto;
}
.code-block-pre--before { background: #fafafa; }
.code-block-pre--after  { background: #f0fdf4; }
.code-comment { color: #9ca3af; font-style: italic; }
.code-str     { color: #ef4444; }
.code-str-green { color: #16a34a; font-weight: 600; }

.code-block-arrow {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 0;
    font-size: 0.82rem; font-weight: 600; color: var(--text-faint);
}
.code-block-arrow i {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gradient); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 3px 10px rgba(255,148,0,0.3);
}
.code-block-note {
    margin-top: 14px;
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 16px;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.18);
    border-radius: 10px;
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.55;
}
.code-block-note i { color: #16a34a; margin-top: 1px; flex-shrink: 0; }
.inline-code {
    font-family: 'Courier New', monospace; font-size: 0.85em;
    background: rgba(99,102,241,0.08); color: #4f5ad2;
    padding: 2px 7px; border-radius: 5px;
    border: 1px solid rgba(99,102,241,0.15);
}

@media (max-width: 900px) {
    .int-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Architecture Diagram ───────────────────────────────────── */
.arch-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 0;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.arch-node {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 12px; border-radius: 14px; text-align: center;
}
.arch-node--saas  { background: rgba(99,102,241,0.06); border: 1.5px solid rgba(99,102,241,0.18); }
.arch-node--gw    { background: rgba(255,148,0,0.06); border: 2px solid rgba(255,148,0,0.3); box-shadow: 0 4px 20px rgba(255,148,0,0.1); }
.arch-node--datev { background: rgba(34,197,94,0.05); border: 1.5px solid rgba(34,197,94,0.2); }
.arch-node--datev2 {
    grid-column: 5; grid-row: 3;
    background: rgba(34,197,94,0.05); border: 1.5px solid rgba(34,197,94,0.2);
    margin-top: 0;
}
.arch-node-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.arch-node--saas  .arch-node-icon { background: rgba(99,102,241,0.1);  color: #4f5ad2; }
.arch-node--gw    .arch-node-icon { background: rgba(255,148,0,0.12); color: var(--brand-orange); }
.arch-node--datev .arch-node-icon,
.arch-node--datev2 .arch-node-icon { background: rgba(34,197,94,0.1); color: #16a34a; }
.arch-node-icon--gw { background: rgba(255,148,0,0.1) !important; border: 1px solid rgba(255,148,0,0.2); }
.arch-node-label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.arch-node-sub   { font-size: 0.68rem; color: var(--text-faint); }

.arch-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 4px; }
.arch-arrow-line {
    width: 56px; height: 2px; background: linear-gradient(90deg, rgba(255,148,0,0.3), rgba(255,148,0,0.7));
    border-radius: 2px; position: relative; overflow: hidden;
}
.arch-arrow-dot {
    position: absolute; top: -3px; left: -12px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand-orange);
    animation: archDotMove 2s linear infinite;
}
@keyframes archDotMove { from { left: -10px; } to { left: calc(100% + 10px); } }
.arch-arrow-label { font-size: 0.62rem; color: var(--text-faint); white-space: nowrap; }

.arch-arrow--down {
    grid-column: 5; grid-row: 2;
    flex-direction: column; justify-content: center; padding: 4px 0;
}
.arch-arrow-line--v {
    width: 2px; height: 36px; background: linear-gradient(180deg, rgba(34,197,94,0.4), rgba(34,197,94,0.8));
    border-radius: 2px; position: relative; overflow: hidden;
}
.arch-arrow-dot--v {
    position: absolute; left: -3px; top: -8px;
    animation: archDotMoveV 1.8s linear infinite;
}
@keyframes archDotMoveV { from { top: -8px; } to { top: calc(100% + 8px); } }

/* ── What We Take Over ──────────────────────────────────────── */
.prod-takes-over {
    padding: 88px 0 80px;
    background: #fff;
}
.takes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.takes-card {
    background: #f8faff;
    border: 1.5px solid var(--border);
    border-radius: 16px; padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.takes-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: rgba(255,148,0,0.22);
}
.takes-icon {
    width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
    background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #4f5ad2;
}
.takes-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.takes-card p  { font-size: 0.835rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Vergleich ──────────────────────────────────────────────── */
.prod-compare {
    padding: 112px 0 104px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.compare-table-wrap {
    overflow-x: auto; border-radius: 16px;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.compare-table {
    width: 100%; border-collapse: collapse;
    background: white;
}
.compare-table thead { background: linear-gradient(135deg, #f8faff, #fff8f0); }
.compare-table th, .compare-table td {
    padding: 14px 20px; text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}
.compare-th-feature { font-weight: 700; color: var(--text); width: 22%; }
.compare-th-without { color: #dc2626; font-weight: 700; }
.compare-th-with    { color: #16a34a; font-weight: 700; }
.compare-th-without i, .compare-th-with i { margin-right: 6px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,148,0,0.02); }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-bad { color: #b91c1c; }
.compare-good { color: #15803d; font-weight: 500; }
.compare-bad::before  { content: "✗ "; font-weight: 700; }
.compare-good::before { content: "✓ "; font-weight: 700; }

/* ── Pricing ────────────────────────────────────────────────── */
.prod-pricing {
    padding: 88px 0 80px;
    background: #fff;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    align-items: start;
}
.pricing-card {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 20px; padding: 32px 28px; position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-3px);
}
.pricing-card--featured {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 36px rgba(255,148,0,0.15);
    background: linear-gradient(160deg,#fff8f0,#fff);
}
.pricing-popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: white;
    font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
    letter-spacing: 0.04em; white-space: nowrap;
    box-shadow: 0 3px 12px rgba(255,148,0,0.35);
}
.pricing-tier { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pricing-price { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pricing-per   { font-size: 0.85rem; font-weight: 400; color: var(--text-faint); }
.pricing-desc  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.55; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.pricing-features {
    list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px;
}
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.855rem; color: var(--text-muted);
}
.pricing-features li i { color: #16a34a; font-size: 0.78rem; flex-shrink: 0; }
.pricing-feat--no { opacity: 0.45; }
.pricing-feat--no i { color: #9ca3af !important; }

/* ── Onboarding Section ─────────────────────────────────────── */
.prod-onboarding {
    padding: 112px 0 104px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.onb-steps-row {
    display: flex; align-items: flex-start; gap: 0;
    margin-bottom: 64px; position: relative;
}
.onb-step {
    flex: 1; text-align: center; padding: 0 16px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.onb-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(255,148,0,0.3);
}
.onb-step-icon {
    width: 52px; height: 52px; border-radius: 15px;
    background: rgba(99,102,241,0.08); border: 1.5px solid rgba(99,102,241,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #4f5ad2;
}
.onb-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0; }
.onb-step p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.onb-step-arrow {
    display: flex; align-items: center; padding-top: 34px;
    color: var(--text-faint); font-size: 1.1rem; flex-shrink: 0;
}

.onb-ways-header { margin-bottom: 32px; }
.onb-ways-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.onb-ways-header p  { font-size: 0.95rem; color: var(--text-muted); max-width: 720px; line-height: 1.65; }

.onb-ways-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    margin-bottom: 64px;
}
.onb-way-card {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 20px; padding: 32px 28px;
}
.onb-way-card--orange {
    background: linear-gradient(145deg, #fff8f0, #fff);
    border-color: rgba(255,148,0,0.3);
}
.onb-way-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
    padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.onb-way-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.onb-way-icon--blue   { background: rgba(99,102,241,0.1);  color: #4f5ad2; border: 1px solid rgba(99,102,241,0.18); }
.onb-way-icon--orange { background: rgba(255,148,0,0.12); color: var(--brand-orange); border: 1px solid rgba(255,148,0,0.22); }
.onb-way-title { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.onb-way-sub   { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }

.onb-way-steps {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
}
.onb-way-steps li {
    display: flex; gap: 14px; align-items: flex-start;
}
.onb-way-step-num {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: rgba(99,102,241,0.1); color: #4f5ad2;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800; border: 1px solid rgba(99,102,241,0.2);
    margin-top: 1px;
}
.onb-way-step-num--orange {
    background: rgba(255,148,0,0.12); color: var(--brand-orange); border-color: rgba(255,148,0,0.25);
}
.onb-way-steps li strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.onb-way-steps li span  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.onb-api-hint {
    display: flex; align-items: center; gap: 10px;
    margin-top: 20px; padding: 12px 16px;
    background: rgba(255,148,0,0.06); border: 1px solid rgba(255,148,0,0.18);
    border-radius: 10px; font-size: 0.82rem; color: var(--text-muted);
}
.onb-api-hint i { color: var(--brand-orange); }
.onb-api-hint a { color: var(--brand-orange); font-weight: 600; text-decoration: none; }
.onb-api-hint a:hover { text-decoration: underline; }

.onb-meta-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.onb-meta-card {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
}
.onb-meta-card--orange { background: linear-gradient(145deg,#fff8f0,#fff); border-color: rgba(255,148,0,0.3); }
.onb-meta-icon {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: 16px;
    background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #4f5ad2;
}
.onb-meta-icon--green  { background: rgba(22,163,74,0.08);  color: #16a34a; border-color: rgba(22,163,74,0.15); }
.onb-meta-icon--orange { background: rgba(255,148,0,0.1);  color: var(--brand-orange); border-color: rgba(255,148,0,0.2); }
.onb-meta-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.onb-meta-card p  { font-size: 0.855rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 14px; }
.onb-meta-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 600; color: #4f5ad2; text-decoration: none;
}
.onb-meta-link:hover { text-decoration: underline; }
.onb-req-list {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;
}
.onb-req-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.84rem; color: var(--text-muted);
}
.onb-req-list li i { color: #16a34a; font-size: 0.75rem; flex-shrink: 0; width: 14px; }
.onb-meta-card--orange .onb-req-list li i { color: var(--brand-orange); }

/* ── Monitoring ─────────────────────────────────────────────── */
.prod-monitoring {
    padding: 88px 0 80px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.mon-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.mon-card {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 20px; padding: 32px 28px;
    transition: box-shadow 0.2s;
}
.mon-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.mon-card-icon {
    width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.mon-card-icon--blue   { background: rgba(99,102,241,0.08); color: #4f5ad2; border: 1px solid rgba(99,102,241,0.15); }
.mon-card-icon--purple { background: rgba(139,92,246,0.08); color: #7c3aed; border: 1px solid rgba(139,92,246,0.15); }
.mon-card-icon--orange { background: rgba(255,148,0,0.1);  color: var(--brand-orange); border: 1px solid rgba(255,148,0,0.2); }
.mon-card-icon--green  { background: rgba(22,163,74,0.08); color: #16a34a; border: 1px solid rgba(22,163,74,0.15); }
.mon-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 14px; }
.mon-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 16px; }
.mon-list {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px;
}
.mon-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.855rem; color: var(--text-muted);
}
.mon-list li i { font-size: 0.55rem; color: #4f5ad2; flex-shrink: 0; }

/* Log Mockup */
.mon-portal-mockup {
    border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden;
    margin-top: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.mon-mockup-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; background: #f1f3f5; border-bottom: 1px solid var(--border);
}
.mon-mockup-url {
    font-size: 0.68rem; color: #64748b; margin-left: 8px;
    display: flex; align-items: center; gap: 4px;
}
.mon-mockup-body { padding: 0; }
.mon-log-row {
    display: flex; align-items: center; gap: 0;
    padding: 8px 14px; border-bottom: 1px solid #f1f5f9; font-size: 0.76rem;
}
.mon-log-row:last-child { border-bottom: none; }
.mon-log-row:hover { background: #f8faff; }
.mon-log-ok  { }
.mon-log-err { background: #fff5f5; }
.mon-log-status { width: 38px; flex-shrink: 0; font-weight: 700; font-size: 0.72rem; }
.mon-log-status--ok  { color: #16a34a; }
.mon-log-status--err { color: #dc2626; }
.mon-log-ep     { flex: 1; color: #334155; font-family: 'Courier New', monospace; font-size: 0.73rem; }
.mon-log-lat    { width: 48px; color: #94a3b8; text-align: right; flex-shrink: 0; }
.mon-log-kanzlei{ width: 72px; color: #94a3b8; text-align: right; flex-shrink: 0; }

/* ── Security Section ───────────────────────────────────────── */
.prod-security {
    padding: 88px 0 80px;
    background: #fff;
}
.sec-certs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 56px;
}
.sec-cert-card {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 18px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 0; align-items: flex-start;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.sec-cert-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,0.09);
    border-color: rgba(255,148,0,0.25);
    transform: translateY(-3px);
}
.sec-cert-card--featured {
    grid-column: span 2;
    background: linear-gradient(145deg, #f8faff 0%, #fff 100%);
    border-color: rgba(99,102,241,0.22);
}
.sec-cert-icon {
    width: 48px; height: 48px; border-radius: 14px;
    flex-shrink: 0; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.sec-cert-icon--blue   { background: rgba(99,102,241,0.08); color: #4f5ad2; border: 1px solid rgba(99,102,241,0.15); }
.sec-cert-icon--purple { background: rgba(139,92,246,0.08); color: #7c3aed; border: 1px solid rgba(139,92,246,0.15); }
.sec-cert-icon--orange { background: rgba(255,148,0,0.1);  color: var(--brand-orange); border: 1px solid rgba(255,148,0,0.2); }
.sec-cert-icon--green  { background: rgba(22,163,74,0.08); color: #16a34a; border: 1px solid rgba(22,163,74,0.15); }
.sec-cert-tag {
    display: inline-block;
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--brand-orange); background: rgba(255,148,0,0.08);
    border: 1px solid rgba(255,148,0,0.18);
    padding: 3px 9px; border-radius: 20px;
    margin-bottom: 10px;
}
.sec-cert-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0 0 10px; line-height: 1.35; }
.sec-cert-body p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 6px; }
.sec-cert-detail  { font-size: 0.76rem; color: var(--text-faint); }

.sec-trust-banner {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #f8faff, #fff8f0);
    border: 1.5px solid var(--border); border-radius: 16px;
}
.sec-trust-banner-icon {
    width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0;
    background: rgba(255,148,0,0.1); border: 1px solid rgba(255,148,0,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--brand-orange);
}
.sec-trust-banner-text { flex: 1; }
.sec-trust-banner-text strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.sec-trust-banner-text span   { font-size: 0.85rem; color: var(--text-muted); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .takes-grid       { grid-template-columns: repeat(2, 1fr); }
    .sec-certs-grid   { grid-template-columns: repeat(2, 1fr); }
    .sec-cert-card--featured { grid-column: span 1; }
}
@media (max-width: 768px) {
    .prod-hero-inner  { grid-template-columns: 1fr; gap: 40px; }
    .prod-hero-text h1{ font-size: 1.8rem; }
    .arch-diagram     { grid-template-columns: 1fr; padding: 20px; }
    .arch-arrow, .arch-arrow--down { display: none; }
    .arch-node--datev2 { grid-column: 1; grid-row: auto; }
    .takes-grid       { grid-template-columns: 1fr; }
    .pricing-grid     { grid-template-columns: 1fr; }
    .onb-ways-grid    { grid-template-columns: 1fr; }
    .onb-meta-grid    { grid-template-columns: 1fr; }
    .mon-grid         { grid-template-columns: 1fr; }
    .sec-certs-grid   { grid-template-columns: 1fr; }
    .sec-cert-card    { flex-direction: column; }
    .sec-trust-banner { flex-direction: column; text-align: center; }
    .onb-steps-row    { flex-direction: column; align-items: center; gap: 24px; }
    .onb-step-arrow   { transform: rotate(90deg); }
    .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.78rem; }
}
