/* ki·spezial — Cluster-Artikel · KI-Schema (Dark)
   Überschreibt blog.css für die Cluster-Tiefenartikel im dunklen AI-Theme.
   Einbinden NACH assets/blog.css und assets/ai-theme.css.
   Nutzt die Palette/Variablen aus ai-theme.css (--ink, --cyan, --violet …). */

/* ===========================================================
   BREADCRUMB
   =========================================================== */
.breadcrumb {
    padding: 26px 56px 0;
    font-size: 13px;
    color: var(--txt-faint);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.breadcrumb a { color: var(--txt-dim); text-decoration: none; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--cyan-soft); }
.breadcrumb span { color: var(--txt-faint); }

/* ===========================================================
   ARTIKEL-HERO
   =========================================================== */
.blog-hero {
    padding: 56px 56px 72px;
    background:
        radial-gradient(820px 480px at 82% -12%, rgba(139,92,246,0.20), transparent 62%),
        radial-gradient(760px 460px at 8% 4%, rgba(0,177,235,0.16), transparent 64%),
        linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 70%, var(--ink) 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -55%; right: -18%;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(0,177,235,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.blog-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--txt-dim); margin-bottom: 32px;
    text-decoration: none; transition: color .2s ease;
}
.blog-back:hover { color: var(--cyan-soft); }
.blog-back svg { width: 16px; height: 16px; }
.blog-hero-content { position: relative; z-index: 1; max-width: 900px; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.blog-tag {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--cyan-soft);
    background: rgba(0,177,235,0.12);
    padding: 6px 14px;
    border: 1px solid rgba(0,177,235,0.32);
    border-radius: 100px;
}
.blog-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--txt-faint); }
.blog-meta-item svg { width: 14px; height: 14px; opacity: 0.8; }
.blog-hero h1 {
    font-size: 46px; font-weight: 800; color: #fff;
    line-height: 1.12; margin-bottom: 22px; letter-spacing: -1.6px;
}
.blog-hero-intro {
    font-size: 18px; color: var(--txt-dim); line-height: 1.75; max-width: 720px;
}

/* ===========================================================
   LAYOUT
   =========================================================== */
.blog-layout {
    display: grid; grid-template-columns: 1fr 280px; gap: 64px;
    padding: 64px 56px; align-items: start;
    background: var(--ink);
}
.blog-main { max-width: 760px; }
.blog-sidebar { position: sticky; top: 96px; }

/* ===========================================================
   ARTIKEL-TYPOGRAFIE
   =========================================================== */
.blog-content p {
    font-size: 16.5px; color: var(--txt-dim); line-height: 1.85; margin-bottom: 22px;
}
.blog-content h2 {
    font-size: 28px; font-weight: 700; color: #fff;
    margin: 56px 0 20px; padding-top: 34px;
    border-top: 1px solid var(--line);
    letter-spacing: -0.6px;
}
.blog-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.blog-content h3 {
    font-size: 20px; font-weight: 700; color: #fff; margin: 34px 0 14px;
}
.blog-content strong { color: #fff; font-weight: 600; }
.blog-content a {
    color: var(--cyan-soft); text-decoration: none;
    border-bottom: 1px solid rgba(0,177,235,0.35);
    transition: color .2s ease, border-color .2s ease;
}
.blog-content a:hover { color: #fff; border-color: var(--cyan); }

/* Listen */
.blog-content ul, .blog-content ol { margin: 22px 0; padding-left: 0; list-style: none; }
.blog-content li {
    font-size: 16px; color: var(--txt-dim); line-height: 1.75;
    padding: 13px 0 13px 34px; position: relative;
    border-bottom: 1px solid var(--line);
}
.blog-content li::before {
    content: ''; position: absolute; left: 0; top: 21px;
    width: 8px; height: 8px; background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,177,235,0.55);
}
.blog-content li:last-child { border-bottom: none; }
.blog-content li strong { color: #fff; }
.blog-content ol { counter-reset: step; }
.blog-content ol li::before {
    content: counter(step); counter-increment: step;
    width: 24px; height: 24px; top: 13px;
    background: var(--grad); color: #fff;
    font-size: 12px; font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px -4px rgba(0,177,235,0.6);
}

/* ===========================================================
   CODE
   =========================================================== */
.blog-content code {
    background: rgba(0,177,235,0.10);
    color: var(--cyan-soft);
    padding: 2px 7px; border-radius: 5px;
    border: 1px solid rgba(0,177,235,0.20);
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 13.5px;
}
.blog-content pre {
    background: var(--ink-3);
    padding: 22px 24px; border-radius: 14px;
    overflow-x: auto; margin: 26px 0;
    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--cyan);
    box-shadow: 0 20px 50px -28px rgba(0,0,0,0.85);
}
.blog-content pre code {
    background: none !important; padding: 0; border: none;
    color: rgba(255,255,255,0.88);
    display: block; line-height: 1.65; font-size: 13px;
}

/* ===========================================================
   CALLOUTS / NOTIZEN
   =========================================================== */
.blog-highlight, .blog-warning, .blog-info, .blog-example,
.placeholder-notice {
    padding: 24px 28px; margin: 36px 0;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.025);
}
.blog-highlight p, .blog-warning p, .blog-info p,
.blog-example p, .placeholder-notice p {
    margin-bottom: 0; font-size: 15.5px; line-height: 1.8; color: var(--txt-dim);
}
.blog-highlight strong, .blog-warning strong, .blog-info strong,
.blog-example strong, .placeholder-notice strong { color: #fff; }

.blog-highlight {
    border-left: 3px solid var(--cyan);
    background: linear-gradient(135deg, rgba(0,177,235,0.10), rgba(0,177,235,0.02));
}
.blog-info {
    border-left: 3px solid var(--violet);
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(139,92,246,0.02));
}
.blog-warning {
    border-left: 3px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255,107,107,0.10), rgba(255,107,107,0.02));
}
.blog-example {
    border-left: 3px solid var(--green);
    background: linear-gradient(135deg, rgba(40,200,64,0.10), rgba(40,200,64,0.02));
}
.placeholder-notice {
    border-left: 3px solid #f5a623;
    background: linear-gradient(135deg, rgba(245,166,35,0.10), rgba(245,166,35,0.02));
}

/* ===========================================================
   PILLAR-BACK-BANNER
   =========================================================== */
.pillar-back-banner {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 22px; margin: 0 0 36px 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(0,177,235,0.06));
    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--violet);
    font-size: 14px; color: var(--txt-dim);
}
.pillar-back-banner svg { width: 20px; height: 20px; color: var(--violet-soft); flex-shrink: 0; }
.pillar-back-banner a {
    color: var(--cyan-soft) !important; font-weight: 600;
    border: none !important; text-decoration: none;
}
.pillar-back-banner a:hover { color: #fff !important; }

/* ===========================================================
   TABELLEN
   =========================================================== */
.pillar-table,
.comparison-table, .cost-table, .feature-table {
    width: 100%; border-collapse: collapse; margin: 32px 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--line);
    border-radius: 14px; overflow: hidden;
    font-size: 14.5px;
}
.pillar-table th, .pillar-table td,
.comparison-table th, .comparison-table td,
.cost-table th, .cost-table td,
.feature-table th, .feature-table td {
    padding: 14px 16px; text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.pillar-table th,
.comparison-table th, .cost-table th, .feature-table th {
    background: rgba(255,255,255,0.04);
    color: var(--cyan-soft);
    font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.6px;
}
.pillar-table td,
.comparison-table td, .cost-table td, .feature-table td {
    color: var(--txt-dim);
}
.pillar-table tr:hover td,
.comparison-table tr:hover td, .cost-table tr:hover td, .feature-table tr:hover td {
    background: rgba(0,177,235,0.05);
}
.pillar-table tr:last-child td,
.comparison-table tr:last-child td, .cost-table tr:last-child td, .feature-table tr:last-child td {
    border-bottom: none;
}
.pillar-table code {
    background: rgba(0,177,235,0.10); color: var(--cyan-soft);
    padding: 2px 6px; border-radius: 5px;
    border: 1px solid rgba(0,177,235,0.20); font-size: 13px;
}
.comparison-table .highlight, .cost-table .highlight { background: rgba(0,177,235,0.07); }
.cost-table .cost-cloud { color: var(--violet-soft); font-weight: 600; }
.cost-table .cost-onprem { color: var(--cyan-soft); font-weight: 600; }
@media (max-width: 768px) {
    .pillar-table { display: block; overflow-x: auto; }
}

/* ===========================================================
   INTERNE LINK-CARDS
   =========================================================== */
.cluster-links {
    margin: 36px 0; display: grid;
    grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.cluster-link {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line) !important;
    text-decoration: none !important;
    color: var(--txt) !important;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.cluster-link:hover {
    border-color: rgba(0,177,235,0.45) !important;
    background: rgba(0,177,235,0.05);
    transform: translateY(-2px);
}
.cluster-link-icon {
    flex-shrink: 0; width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,177,235,0.18), rgba(139,92,246,0.18));
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan-soft);
}
.cluster-link-icon svg { width: 18px; height: 18px; }
.cluster-link-text { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--txt); }
@media (max-width: 640px) { .cluster-links { grid-template-columns: 1fr; } }

/* ===========================================================
   LEAD-MAGNET-BOX
   =========================================================== */
.lead-magnet {
    margin: 48px 0; padding: 36px;
    border-radius: 20px;
    position: relative; overflow: hidden;
    color: #fff;
    background:
        radial-gradient(420px 280px at 88% 8%, rgba(139,92,246,0.30), transparent 70%),
        linear-gradient(135deg, #0c1320, var(--ink-3));
    border: 1px solid var(--line-strong);
}
.lead-magnet::before {
    content: ''; position: absolute;
    top: -60%; right: -15%; width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0,177,235,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.lead-magnet-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr auto;
    gap: 32px; align-items: center;
}
.lead-magnet-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--cyan-soft); margin-bottom: 12px;
    display: inline-flex; align-items: center; gap: 9px;
}
.lead-magnet-label::before {
    content: ''; width: 8px; height: 8px;
    background: var(--cyan); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,177,235,0.20);
}
.lead-magnet h3 {
    font-size: 24px; font-weight: 700; color: #fff !important;
    margin: 0 0 10px 0 !important; line-height: 1.3;
    letter-spacing: -0.3px; border: none !important; padding: 0 !important;
}
.lead-magnet p {
    font-size: 15px !important; color: var(--txt-dim) !important;
    line-height: 1.65 !important; margin: 0 !important; max-width: 520px;
}
.lead-magnet-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 12px;
    background: var(--grad); color: #fff !important;
    font-size: 14px; font-weight: 700;
    text-decoration: none !important; border: none !important;
    white-space: nowrap;
    box-shadow: 0 12px 34px -10px rgba(0,177,235,0.55);
    transition: transform .22s ease, box-shadow .22s ease;
}
.lead-magnet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px -10px rgba(139,92,246,0.6);
}
.lead-magnet-btn svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
    .lead-magnet { padding: 26px; }
    .lead-magnet-inner { grid-template-columns: 1fr; gap: 22px; }
    .lead-magnet h3 { font-size: 20px !important; }
}

/* ===========================================================
   PILLAR-CTA
   =========================================================== */
.pillar-cta {
    margin-top: 64px; padding: 56px 48px;
    text-align: center; position: relative; overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(600px 340px at 20% 0%, rgba(0,177,235,0.26), transparent 65%),
        radial-gradient(600px 340px at 80% 100%, rgba(139,92,246,0.28), transparent 65%),
        linear-gradient(135deg, #0c1320, var(--ink-3));
}
.pillar-cta::before {
    content: ''; position: absolute;
    top: -40%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.pillar-cta-inner { position: relative; z-index: 1; }
.pillar-cta h3 {
    font-size: 30px; font-weight: 800; color: #fff;
    margin-bottom: 14px; letter-spacing: -0.8px;
}
.pillar-cta p {
    font-size: 16px; color: var(--txt-dim);
    margin: 0 auto 28px; max-width: 560px; line-height: 1.7;
}
.pillar-cta .btn,
.pillar-cta .btn-primary, .pillar-cta .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 26px; font-size: 14px; font-weight: 700;
    border-radius: 12px; text-decoration: none;
    border: 1px solid transparent; transition: all .22s ease;
}
.pillar-cta .btn-primary {
    background: var(--grad) !important; color: #fff !important;
    box-shadow: 0 12px 34px -10px rgba(0,177,235,0.55);
}
.pillar-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px -10px rgba(139,92,246,0.6);
}
.pillar-cta .btn-secondary {
    background: rgba(255,255,255,0.05) !important;
    color: #fff !important;
    border-color: var(--line-strong) !important;
}
.pillar-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.09) !important;
    border-color: var(--cyan) !important;
}

/* ===========================================================
   TABLE OF CONTENTS
   =========================================================== */
.toc {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
}
.toc-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--cyan-soft); margin-bottom: 16px;
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 10px; }
.toc-list a {
    font-size: 14px; color: var(--txt-dim);
    display: block; line-height: 1.5;
    text-decoration: none; transition: color .2s ease;
}
.toc-list a:hover { color: var(--cyan-soft); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list details {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 10px;
    padding: 18px 22px;
    transition: border-color .2s ease;
}
.faq-list details[open] { border-color: rgba(0,177,235,0.4); }
.faq-list summary {
    cursor: pointer; font-size: 16px; font-weight: 600; color: #fff;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+'; font-size: 22px; color: var(--cyan);
    font-weight: 300; transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
    margin: 14px 0 0 0 !important;
    font-size: 15px !important; color: var(--txt-dim);
    line-height: 1.75 !important;
}

/* ===========================================================
   STEP-CARDS
   =========================================================== */
.step-card {
    padding: 24px; margin: 16px 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-left: 3px solid var(--violet);
    transition: border-color .25s ease, background .25s ease;
}
.step-card:hover {
    border-color: var(--line-strong);
    border-left-color: var(--violet);
    background: rgba(139,92,246,0.05);
}
.step-meta {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--violet-soft); margin-bottom: 8px;
}
.step-card h4 {
    font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 10px 0;
}
.step-card p { color: var(--txt-dim); }

/* ===========================================================
   CHECKLIST
   =========================================================== */
.checklist {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px; margin: 40px 0;
}
.checklist-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.checklist ul { margin: 0; }
.checklist li { border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: none; }

/* ===========================================================
   RELATED ARTICLES
   =========================================================== */
.related-section {
    padding: 64px 56px;
    background: var(--ink-3);
    border-top: 1px solid var(--line);
}
.related-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--cyan-soft); margin-bottom: 32px;
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.related-card:hover {
    border-color: rgba(0,177,235,0.4);
    background: rgba(0,177,235,0.04);
    transform: translateY(-4px);
}
.related-card-tag {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--cyan-soft); margin-bottom: 12px;
}
.related-card h4 {
    font-size: 17px; font-weight: 700; color: #fff;
    line-height: 1.4; margin-bottom: 8px;
}
.related-card p { font-size: 14px; color: var(--txt-dim); line-height: 1.6; }

/* ===========================================================
   SHARE BOX
   =========================================================== */
.share-box {
    margin-top: 32px; padding: 24px;
    border: 1px solid var(--line); border-radius: 16px;
    background: rgba(255,255,255,0.025);
}
.share-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--cyan-soft); margin-bottom: 16px;
}
.share-links { display: flex; gap: 12px; }
.share-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    transition: all .2s ease;
}
.share-link:hover { background: var(--grad); border-color: transparent; }
.share-link svg { width: 18px; height: 18px; color: var(--txt-dim); }
.share-link:hover svg { color: #fff; }

/* ===========================================================
   SERVICE-LINKS (falls genutzt)
   =========================================================== */
.service-links {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px; margin: 40px 0;
}
.service-links-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--cyan-soft); margin-bottom: 20px;
}
.service-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-links .service-link-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color .2s ease, background .2s ease;
}
.service-links .service-link-item:hover {
    border-color: rgba(0,177,235,0.45);
    background: rgba(0,177,235,0.05);
}
.service-links .service-link-item svg { width: 20px; height: 20px; color: var(--cyan-soft); flex-shrink: 0; }
.service-links .service-link-item span { font-size: 14px; font-weight: 500; color: var(--txt); }

/* Example-Box (alternativer Stil) */
.example-box {
    background: linear-gradient(135deg, rgba(40,200,64,0.10), rgba(40,200,64,0.02));
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    border-radius: 14px;
    padding: 24px 28px; margin: 36px 0;
}
.example-box h4 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 12px 0; }
.example-box p { font-size: 15px; color: var(--txt-dim); margin: 0; line-height: 1.7; }
.example-box pre {
    font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.85);
    white-space: pre-wrap; margin: 0;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    background: var(--ink-3);
    border: 1px solid var(--line-strong);
    padding: 16px; border-radius: 10px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
    .breadcrumb { padding: 22px 32px 0; }
    .blog-hero { padding: 44px 32px 60px; }
    .blog-layout { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
    .blog-sidebar { position: static; }
    .related-section { padding: 56px 32px; }
    .related-grid { grid-template-columns: 1fr; }
    .service-links-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .breadcrumb { padding: 18px 20px 0; }
    .blog-hero { padding: 36px 20px 52px; }
    .blog-hero h1 { font-size: 30px; letter-spacing: -1px; }
    .blog-hero-intro { font-size: 16px; }
    .blog-layout { padding: 40px 20px; gap: 36px; }
    .blog-main { max-width: 100%; }
    .blog-content p { font-size: 16px; }
    .blog-content h2 { font-size: 23px; margin: 44px 0 16px; padding-top: 26px; }
    .blog-content h3 { font-size: 18px; }
    .blog-content li { font-size: 15px; }
    .blog-content pre { padding: 16px; }
    .blog-highlight, .blog-warning, .blog-info, .blog-example,
    .placeholder-notice { padding: 20px 22px; margin: 28px 0; }
    .pillar-cta { padding: 40px 24px; }
    .pillar-cta h3 { font-size: 24px; }
    .related-section { padding: 40px 20px; }
    .checklist, .service-links { padding: 24px; }
}
