/* =============================================================================
   ByteKraft — site.css
   Hard reset: sans-serif SaaS aesthetic. Inter only. Blue + neutral palette.
   Fonts are self-hosted (DSGVO-konform, no Google Fonts CDN).
   ========================================================================== */

/* Self-hosted Inter — place woff2 files in /fonts/ before deployment.
   Download once from https://rsms.me/inter/ (Inter 4.0 variable or static weights).
   Required files:
     fonts/Inter-Regular.woff2      (400)
     fonts/Inter-Medium.woff2       (500)
     fonts/Inter-SemiBold.woff2     (600)
     fonts/Inter-Bold.woff2         (700)
     fonts/JetBrainsMono-Regular.woff2  (400, optional)
*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Inter-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
}

:root {
  /* Colors */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F4F4F5;
  --bg-tertiary: #FFFFFF;
  --text-primary: #0A0A0A;
  --text-secondary: #52525B;
  --text-tertiary: #A1A1AA;
  --border-default: #E4E4E7;
  --border-strong: #D4D4D8;
  --accent-primary: #2563EB;
  --accent-primary-hover: #1D4ED8;
  --accent-subtle: #EFF6FF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', Menlo, 'Courier New', monospace;

  /* Layout */
  --max-content: 1200px;
  --pad-side-desktop: 40px;
  --pad-side-mobile: 20px;
  --pad-section-desktop: 96px;
  --pad-section-mobile: 64px;
  --header-height: 64px;

  /* Motion */
  --t-hover: 150ms ease;
  --t-slow: 200ms ease-out;
  --ease-out: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px 0; }
ul { margin: 0 0 16px 0; padding-left: 20px; }
li { margin-bottom: 8px; }

/* Focus ring, global */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent-primary); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 500; z-index: 100;
}
.skip-link:focus { top: 16px; }

/* ---------- Type scale ---------- */
.hero-title {
  font-size: 40px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 32px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}
h2, .h2 {
  font-size: 24px; line-height: 1.25; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 16px 0;
}
h3, .h3 {
  font-size: 20px; line-height: 1.3; font-weight: 600; margin: 0 0 12px 0;
}
.body-large { font-size: 18px; line-height: 1.6; }
.small { font-size: 14px; line-height: 1.5; color: var(--text-secondary); }
.label {
  font-size: 13px; line-height: 1.4; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary);
}
code, .code {
  font-family: var(--font-mono); font-size: 14px; line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-title { font-size: 64px; }
  h1, .h1 { font-size: 48px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--pad-side-mobile);
  padding-right: var(--pad-side-mobile);
}
@media (min-width: 768px) {
  .container { padding-left: var(--pad-side-desktop); padding-right: var(--pad-side-desktop); }
}

.section { padding-top: var(--pad-section-mobile); padding-bottom: var(--pad-section-mobile); }
@media (min-width: 768px) {
  .section { padding-top: var(--pad-section-desktop); padding-bottom: var(--pad-section-desktop); }
}
.section.alt { background: var(--bg-secondary); }
.section.white { background: var(--bg-tertiary); }

/* Section entry anim */
.section-in { animation: fadeUp 400ms var(--ease-out) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dot pattern overlay */
.dot-bg {
  position: relative;
  background-image: radial-gradient(circle, rgba(161, 161, 170, 0.4) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 15px;
  padding: 12px 24px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: background var(--t-hover), border-color var(--t-hover), box-shadow var(--t-hover);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent-primary); color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 2px 4px rgba(37,99,235,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: var(--accent-primary-hover);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 4px 10px rgba(37,99,235,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-secondary {
  background: var(--bg-tertiary); color: var(--text-primary);
  border-color: var(--border-default);
}
.btn-secondary:hover {
  background: var(--bg-secondary); border-color: var(--border-strong);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  background: var(--bg-secondary); color: var(--text-secondary);
}
.badge-blue { background: var(--accent-subtle); color: var(--accent-primary); }
.badge-green { background: #ECFDF5; color: var(--success); }
.badge-amber { background: #FEF3C7; color: var(--warning); }

/* ---------- Card ---------- */
.card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 24px;
  transition: border-color var(--t-hover), box-shadow var(--t-hover);
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.card h3 { margin-top: 12px; }

/* ---------- Form ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--text-primary); margin-bottom: 6px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans); font-size: 15px; line-height: 1.5;
  color: var(--text-primary);
  transition: border-color var(--t-hover), box-shadow var(--t-hover);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.form-check input { margin-top: 3px; }
.form-check label { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.form-check a { color: var(--accent-primary); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-height);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-default);
}
.site-header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.brand .bar {
  display: inline-block; width: 1px; height: 20px; background: var(--border-strong);
}
.nav-links { display: none; gap: 28px; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  padding: 6px 2px; position: relative; transition: color var(--t-hover);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--accent-primary); border-radius: 1px;
}
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 8px; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); }
@media (min-width: 900px) { .burger { display: none; } }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--bg-tertiary); border-left: 1px solid var(--border-default);
  transform: translateX(100%); transition: transform var(--t-slow);
  z-index: 60; padding: 24px; display: flex; flex-direction: column; gap: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10, 10, 10, 0.4);
  opacity: 0; pointer-events: none; transition: opacity var(--t-slow); z-index: 55;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer a { font-size: 16px; color: var(--text-primary); font-weight: 500; }
.drawer .drawer-close { align-self: flex-end; background: transparent; border: 0; cursor: pointer; font-size: 20px; color: var(--text-secondary); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  padding: 64px var(--pad-side-mobile) 32px;
}
@media (min-width: 768px) { .site-footer { padding-left: var(--pad-side-desktop); padding-right: var(--pad-side-desktop); } }
.site-footer-inner {
  max-width: var(--max-content); margin: 0 auto;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.site-footer h4 { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin: 0 0 16px 0; }
.site-footer .col a { display: block; color: var(--text-primary); font-size: 14px; margin-bottom: 10px; transition: color var(--t-hover); }
.site-footer .col a:hover { color: var(--accent-primary); }
.footer-tagline { color: var(--text-secondary); font-size: 14px; line-height: 1.55; max-width: 280px; }
.footer-bottom {
  max-width: var(--max-content); margin: 48px auto 0;
  padding-top: 32px; border-top: 1px solid var(--border-default);
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; justify-content: space-between;
  font-size: 13px; color: var(--text-secondary);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }

/* ---------- Hero ---------- */
.hero {
  padding-top: 64px; padding-bottom: 64px;
  position: relative;
}
@media (min-width: 768px) { .hero { padding-top: 96px; padding-bottom: 96px; } }
.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.eyebrow-accent {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--accent-primary);
  margin-bottom: 20px;
}
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--text-secondary); max-width: 640px; margin: 0 0 32px 0; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; font-size: 13px; color: var(--text-tertiary); }
.hero-meta .sep { width: 1px; height: 12px; background: var(--border-strong); }

/* ---------- Product mockup (hero illustration) ---------- */
.mockup {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06), 0 2px 6px rgba(10,10,10,0.04);
  overflow: hidden;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--border-default);
  background: var(--bg-secondary);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-dot.r { background: #FCA5A5; }
.mockup-dot.y { background: #FDE68A; }
.mockup-dot.g { background: #A7F3D0; }
.mockup-tab {
  margin-left: 12px; background: var(--bg-tertiary); border: 1px solid var(--border-default);
  padding: 4px 12px; border-radius: 6px; font-size: 12px; color: var(--text-primary);
}
.mockup-body { padding: 20px; display: grid; gap: 16px; }
.mockup-table { border: 1px solid var(--border-default); border-radius: 8px; overflow: hidden; }
.mockup-table .row {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr;
  padding: 10px 14px; font-size: 13px;
  border-bottom: 1px solid var(--border-default);
}
.mockup-table .row:last-child { border-bottom: 0; }
.mockup-table .row.head { background: var(--bg-secondary); color: var(--text-secondary); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.mockup-chart {
  border: 1px solid var(--border-default); border-radius: 8px; padding: 14px;
}
.mockup-chart .bars { display: flex; align-items: end; gap: 8px; height: 70px; margin-top: 10px; }
.mockup-chart .bar { flex: 1; background: var(--accent-subtle); border-radius: 3px 3px 0 0; position: relative; }
.mockup-chart .bar.solid { background: var(--accent-primary); }
.mockup-agent {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-default); border-radius: 8px; padding: 12px 14px;
  font-size: 13px;
}
.mockup-agent .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-secondary); padding: 48px 20px; text-align: center; }
@media (min-width: 768px) { .trust-strip { padding: 48px 40px; } }
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 24px; color: var(--text-tertiary); font-weight: 500; font-size: 14px;
  margin-top: 20px;
}
.trust-row .sep { width: 1px; height: 14px; background: var(--border-default); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: 1fr; }
.grid.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid.cols-5 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid.cols-5 { grid-template-columns: repeat(3, 1fr); } }

.sec-head { margin-bottom: 40px; }
.sec-head .label { margin-bottom: 12px; display: inline-block; color: var(--accent-primary); }
.sec-head p { color: var(--text-secondary); font-size: 18px; max-width: 640px; margin-top: 12px; }

/* Service cards: lead line, body, link */
.svc-card .small-link { display: inline-block; margin-top: 12px; color: var(--accent-primary); font-weight: 500; font-size: 14px; }
.svc-card .small-link:hover { text-decoration: underline; }

/* Branche card icon frame */
.bra-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--accent-subtle); color: var(--accent-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bra-icon svg { width: 22px; height: 22px; }

/* Vorgehen timeline */
.vorgehen { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 980px) { .vorgehen { grid-template-columns: repeat(4, 1fr); position: relative; } }
.vorgehen::before {
  content: ''; display: none;
}
@media (min-width: 980px) {
  .vorgehen::before {
    display: block; position: absolute; left: 40px; right: 40px; top: 34px;
    height: 1px; background: var(--border-default); z-index: 0;
  }
}
.vor-step { position: relative; z-index: 1; }
.vor-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-tertiary); border: 1px solid var(--border-strong);
  font-size: 13px; font-weight: 600;
  margin-bottom: 14px;
}

/* Case cards */
.case-card .meta-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.case-card .result-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 4px; }
.case-card .small-link { display: inline-block; margin-top: 12px; color: var(--accent-primary); font-weight: 500; font-size: 14px; }

/* Unternehmen teaser two-column */
.two-col { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }

/* FAQ details */
.faq-list { display: grid; gap: 12px; }
.faq {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default); border-radius: 10px;
  padding: 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--text-secondary); font-size: 20px; font-weight: 400; }
.faq[open] summary::after { content: '−'; }
.faq .ans { padding: 0 24px 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* Final CTA band */
.cta-band { padding: 96px 20px; background: var(--bg-tertiary); text-align: center; position: relative; }
@media (min-width: 768px) { .cta-band { padding: 96px 40px; } }
.cta-band h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band p { color: var(--text-secondary); font-size: 18px; max-width: 560px; margin: 0 auto 28px; }
.cta-band .small-note { color: var(--text-tertiary); font-size: 13px; margin-top: 14px; }

/* Page header for interior pages */
.page-head { padding-top: 64px; padding-bottom: 32px; }
@media (min-width: 768px) { .page-head { padding-top: 96px; padding-bottom: 48px; } }
.page-head .lead { font-size: 18px; color: var(--text-secondary); max-width: 720px; margin-top: 16px; }

/* Leistungen deep sections */
.lei-sec { padding: 64px 0; border-top: 1px solid var(--border-default); }
@media (min-width: 768px) { .lei-sec { padding: 96px 0; } }
.lei-sec .promise { font-size: 18px; line-height: 1.6; color: var(--text-primary); max-width: 720px; margin-bottom: 24px; font-weight: 500; }
.lei-sec p { max-width: 720px; color: var(--text-secondary); font-size: 16px; }
.deliverables { margin: 24px 0; max-width: 720px; padding-left: 0; list-style: none; }
.deliverables li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  font-size: 15px; color: var(--text-primary);
}
.deliverables li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent-primary); font-weight: 600;
}
.callout {
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px; padding: 24px; margin-top: 24px; max-width: 720px;
  font-size: 15px; color: var(--text-primary); line-height: 1.6;
}

/* Outcome tiles (big numbers) */
.outcome-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .outcome-grid { grid-template-columns: repeat(3, 1fr); } }
.outcome {
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  border-radius: 12px; padding: 28px;
}
.outcome .big { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent-primary); }
.outcome .lbl { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin: 12px 0 8px; }
.outcome .exp { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* Placeholder blocks */
.placeholder {
  border: 1px dashed var(--border-strong); border-radius: 10px;
  padding: 24px; color: var(--text-tertiary);
  background: var(--bg-secondary);
  font-family: var(--font-mono); font-size: 13px; line-height: 1.6;
  margin: 16px 0;
}
.placeholder strong { color: var(--text-secondary); font-family: var(--font-sans); }

/* Kontakt */
.kontakt-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .kontakt-grid { grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; } }
.kontakt-grid h3 { margin-top: 0; }
.kontakt-step { display: flex; gap: 14px; margin-bottom: 16px; }
.kontakt-step .n {
  flex: 0 0 28px; height: 28px; width: 28px; border-radius: 50%;
  background: var(--bg-secondary); color: var(--text-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
}
.kontakt-step p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.kontakt-address { font-size: 15px; line-height: 1.7; color: var(--text-primary); margin-bottom: 16px; }

/* Prose layout (legal pages) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 40px; margin-bottom: 12px; font-size: 22px; }
.prose p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
.prose p.addr { color: var(--text-primary); }
