/* Serwis AUTO-MOTIV — motyw (baza: /assets/demo.css) */
:root {
  --ink: #0f1720;
  --ink-soft: #5c6a78;
  --paper: #ffffff;
  --bg: #f4f6f8;
  --line: #dfe5eb;
  --brand: #ea6a12;
  --brand-dark: #c4530a;
  --brand-soft: #fdf0e5;
  --accent: #0e7c66;
  --font-head: "Sora", system-ui, sans-serif;
  --head-weight: 800;
  --radius: 10px;
  --radius-lg: 16px;
  --hero-veil: linear-gradient(180deg, rgba(8,14,20,.8), rgba(8,14,20,.55) 42%, rgba(8,14,20,.92));
}
h1, h2 { letter-spacing: -0.03em; }
.brand-mark { border-radius: 10px; }
.eyebrow::before { content: "▚ "; }
.section-alt { background: var(--paper); }

/* pasek zaufania */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.trust li { background: var(--paper); padding: 24px 20px; display: flex; gap: 13px; align-items: center; font-size: .93rem; font-weight: 600; }
.trust li span { font-size: 1.5rem; line-height: 1; }

/* kroki procesu */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 28px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: color-mix(in srgb, var(--brand) 22%, transparent); line-height: 1; display: block; margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; font-size: 1.08rem; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* cennik jako tabela */
.rate-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; font-size: .96rem; }
.rate-table th, .rate-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table thead th { background: var(--ink); color: #fff; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.rate-table tbody tr:last-child th, .rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table tbody tr:hover { background: var(--brand-soft); }
.rate-table td:last-child { text-align: right; font-weight: 700; color: var(--brand); white-space: nowrap; }
.rate-table .sub { display: block; font-weight: 400; font-size: .84rem; color: var(--ink-soft); margin-top: 2px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
