/* =====================================================
   BIURO RACHUNKOWE LAUTERBACH — wspólny arkusz stylów
   Wszystkie strony używają tych samych zmiennych i komponentów.
   ===================================================== */

/* --- Reset i CSS variables --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Kolory */
  --bg: #faf6ef;
  --bg-card: #ffffff;
  --bg-soft: #f1ebdc;
  --green: #2d4a3a;
  --green-bright: #3d6650;
  --terracotta: #b86b4a;
  --terracotta-bright: #c97a59;
  --text: #2a2620;
  --text-muted: #6b6359;
  --border: #e6dec7;
  --border-strong: #d4c8a8;

  /* Typografia */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --container-padding: 24px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Domyślne typo */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--green);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
p { color: var(--text-muted); }
a { color: var(--green); }

img { max-width: 100%; height: auto; display: block; }

/* --- Helpers --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.serif { font-family: var(--font-serif); }
.muted { color: var(--text-muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =====================================================
   NAVIGATION (powtarzana na każdej stronie)
   ===================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}
.nav__logo-mark {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__logo-text { color: var(--green); }
.nav__logo-text span { color: var(--terracotta); }

/* Fallback: jeśli logo.png się nie załaduje, schowamy obraz aby nie pokazywać ikony "broken image" */
.nav__logo-mark[src=""], .nav__logo-mark:not([src]) { display: none; }

.nav__links {
  display: flex; gap: 36px;
  list-style: none;
}
.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover { color: var(--green); }
.nav__links a.active {
  color: var(--green);
  border-bottom-color: var(--terracotta);
}
.nav__cta {
  background: var(--green);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}

/* Hamburger button — widoczny tylko na mobile */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--green);
  position: relative;
  transition: transform 0.2s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute; left: 0;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

/* =====================================================
   BUTTONY
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.btn--primary {
  background: var(--green);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--bg-card);
  color: var(--green);
  border: 1.5px solid var(--border-strong);
}
.btn--secondary:hover {
  border-color: var(--green);
}
.btn--terracotta {
  background: var(--terracotta);
  color: white;
}
.btn--terracotta:hover {
  background: var(--terracotta-bright);
  transform: translateY(-1px);
}

/* =====================================================
   HERO (różne warianty na różnych stronach)
   ===================================================== */
.hero {
  padding: 100px 0 80px;
}
.hero--split .hero__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero--centered {
  text-align: center;
}
.hero--centered .hero__inner {
  max-width: 760px; margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  background: var(--bg-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero__lead {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero--centered .hero__lead { margin-left: auto; margin-right: auto; }
.hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero--centered .hero__ctas { justify-content: center; }

/* Hero abstract visual (zamiast zdjęcia osobistego) */
.hero__visual {
  aspect-ratio: 4/5;
  border-radius: 200px 200px 24px 24px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, #ddd2b1 60%, var(--terracotta) 140%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 74, 58, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 40px;
}
.hero__visual-logo {
  width: auto;
  height: 206px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(45, 74, 58, 0.18));
}
.hero__visual-number {
  font-family: var(--font-serif);
  font-size: 180px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero__visual-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 90px 0; }
.section--soft { background: var(--bg-soft); }
.section--green { background: var(--green); color: var(--bg); }
.section--green h2, .section--green h3 { color: var(--bg); }
.section--green p { color: rgba(250, 246, 239, 0.8); }

.section__eyebrow {
  display: inline-block;
  background: var(--bg-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.section--soft .section__eyebrow,
.section--green .section__eyebrow {
  background: var(--bg-card);
  color: var(--green);
}
.section__title {
  margin-bottom: 24px;
  max-width: 700px;
}
.section__lead {
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 56px;
}
.section--centered { text-align: center; }
.section--centered .section__title,
.section--centered .section__lead { margin-left: auto; margin-right: auto; }
.section--centered .section__ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px;
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust {
  background: var(--bg-soft);
  padding: 56px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.trust__item h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--green);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.trust__item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* =====================================================
   KARTY (usługi, opinie, etc.)
   ===================================================== */
.cards {
  display: grid;
  gap: 28px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.cards--4 .card { padding: 28px 24px; }
.cards--4 .card h3 { font-size: 19px; }
.cards--4 .card p { font-size: 14px; }

.card {
  padding: 36px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 74, 58, 0.08);
  border-color: var(--border-strong);
}
.card__icon {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  color: var(--green);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 600;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.card p {
  font-size: 15px;
  line-height: 1.7;
}
.card__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 2px;
}
.card__link:hover { color: var(--terracotta); }

/* =====================================================
   PROCESS (3 kroki)
   ===================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding-top: 16px;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process__step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.55;
}
.testimonial__author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--bg-soft);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
}
.testimonial__name {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.testimonial__role {
  font-size: 13px;
  color: var(--text-muted);
}
.testimonials-note {
  display: block;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* =====================================================
   FAQ (collapsible)
   ===================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--terracotta);
  font-weight: 400;
  transition: transform 0.2s;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* =====================================================
   TOC — quick nav (Przejdź do...) na stronie usług
   ===================================================== */
.toc {
  background: var(--bg-soft);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
.toc__title {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 700;
}
.toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  background: var(--bg-card);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.15s, color 0.2s;
  font-weight: 500;
  line-height: 1.3;
}
.toc__list a:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateX(2px);
}
.toc__list a.toc__list-item--highlighted {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
  font-weight: 600;
}
.toc__list a.toc__list-item--highlighted:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--bg);
  transform: translateX(2px);
}

/* =====================================================
   SERVICE DETAIL (uslugi.html)
   ===================================================== */
.service {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service:last-of-type { border-bottom: none; }
.service__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.service__icon {
  width: 80px; height: 80px;
  background: var(--bg-soft);
  color: var(--green);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}
.service__meta h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}
.service__badge {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card__badge {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service__meta p {
  font-size: 15px;
}
.service__content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text);
}
.service__list {
  list-style: none;
  margin-top: 16px;
}
.service__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 16px;
}
.service__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 18px;
}

/* =====================================================
   CONTACT (kontakt.html)
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-block {
  background: var(--bg-card);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-block__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.contact-block__value {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
  word-break: break-word;
}
.contact-block__value:hover { color: var(--terracotta); }
.contact-block__note {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-info-list {
  list-style: none;
  margin-top: 24px;
}
.contact-info-list li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
}
.contact-info-list strong {
  color: var(--text);
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}

/* =====================================================
   MAP (Google Maps iframe na kontakt.html)
   ===================================================== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 32px rgba(45, 74, 58, 0.10);
  aspect-ratio: 4/3;
  min-height: 460px;
  background: var(--bg-soft);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =====================================================
   TIMELINE (o-mnie.html)
   ===================================================== */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--border-strong);
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -28px; top: 8px;
  width: 10px; height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline__year {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.timeline__item h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* =====================================================
   CONTENT (długi tekst, np. polityka prywatności)
   ===================================================== */
.content {
  max-width: 760px;
  margin: 0 auto;
}
.content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}
.content h2:first-child { margin-top: 0; }
.content p, .content li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.75;
}
.content ul, .content ol {
  margin: 12px 0 20px 24px;
  color: var(--text);
}
.content a { color: var(--terracotta); }
.content strong { color: var(--green); }

/* =====================================================
   FOOTER (powtarzany)
   ===================================================== */
.footer {
  background: var(--green);
  color: rgba(250, 246, 239, 0.8);
  padding: 70px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  font-family: var(--font-serif);
  color: var(--bg);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer p, .footer a {
  color: rgba(250, 246, 239, 0.75);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
}
.footer a:hover { color: var(--bg); text-decoration: underline; }
.footer ul { list-style: none; }
.footer__bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.15);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(250, 246, 239, 0.6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}

/* =====================================================
   COOKIE BANNER (z RODO)
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(45, 74, 58, 0.18);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  z-index: 200;
  max-width: 880px;
  margin: 0 auto;
  transform: translateY(120%);
  transition: transform 0.35s ease-out;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.cookie-banner a { color: var(--terracotta); }
.cookie-banner__btn {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.cookie-banner__btn:hover { background: var(--green-bright); }

/* =====================================================
   RESPONSIVE — MOBILE FIRST FIXES
   ===================================================== */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__toggle { display: flex; }
  .nav__cta { padding: 9px 16px; font-size: 13px; }

  /* Na mobile ukrywamy tekstową nazwę obok logo, zostaje sam mark */
  .nav__logo-text { display: none; }
  .nav__logo-mark { height: 34px; }

  /* Mapa Google na mobile — mniejsza, nie dominuje całego ekranu */
  .map-container {
    min-height: 0;       /* znosimy desktopowy minimalny 460px */
    aspect-ratio: 4/3;   /* przy szerokości 375px → ~280px wysokości */
  }

  .hero { padding: 56px 0; }
  .hero--split .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual {
    max-width: 280px;
    margin: 0 auto;
    padding: 20px 20px 24px;
  }
  .hero__visual-logo { height: 100px; }
  .hero__visual-number { font-size: 68px; }
  .hero__visual-label { font-size: 11px; letter-spacing: 0.15em; }

  .section { padding: 60px 0; }

  .trust__grid,
  .cards--3, .cards--2, .cards--4,
  .process,
  .contact-grid,
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  .service__layout { grid-template-columns: 1fr; gap: 24px; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
    bottom: 12px; left: 12px; right: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
