/* ============================================================
   WashPro — system wizualny
   Czysty, techniczny. Dużo bieli, jeden żywy czerwony akcent.
   ============================================================ */

:root {
  /* Neutrals — cool, slightly blue */
  --bg:        #ffffff;
  --surface:   oklch(0.984 0.005 240);
  --surface-2: oklch(0.963 0.008 240);
  --ink:       oklch(0.23 0.018 245);
  --ink-soft:  oklch(0.41 0.016 245);
  --muted:     oklch(0.55 0.012 245);
  --line:      oklch(0.91 0.008 240);
  --line-soft: oklch(0.945 0.006 240);

  /* Accent — vivid red (GraphicLine-style) */
  --accent:      oklch(0.625 0.215 27);
  --accent-deep: oklch(0.545 0.205 27);
  --accent-ink:  oklch(0.45 0.16 27);
  --accent-soft: oklch(0.962 0.03 27);
  --accent-line: oklch(0.86 0.10 27);

  --ink-900:   oklch(0.20 0.022 250);

  /* Type */
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px oklch(0.22 0.018 250 / 0.05), 0 8px 28px oklch(0.22 0.018 250 / 0.07);
  --shadow-lg: 0 2px 6px oklch(0.22 0.018 250 / 0.06), 0 24px 60px oklch(0.22 0.018 250 / 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 28px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink-900);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-on-accent { background: #fff; color: var(--accent-deep); }
.btn-on-accent:hover { background: oklch(0.965 0.015 28); transform: translateY(-2px); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink-900);
  color: oklch(0.80 0.01 245);
  font-size: 13.5px;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  gap: 20px;
}
.topbar a { color: inherit; transition: color .15s ease; }
.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-contact a, .topbar-contact span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-contact svg { width: 14px; height: 14px; color: var(--accent); }
.topbar-contact a:hover { color: #fff; }
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 7px;
  display: grid; place-items: center;
  background: oklch(0.30 0.014 250);
}
.topbar-social a:hover { background: var(--accent); color: #fff; }
.topbar-social svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(1 0 0 / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}
.brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: grid;
  place-items: center;
  position: relative;
}
.brand .mark svg { width: 18px; height: 18px; }
.brand b { color: var(--accent-deep); font-weight: 800; }
.brand-logo { height: 30px; width: auto; display: block; }
.site-footer .brand { display: inline-flex; }
.site-footer .brand-logo { height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink-900); background: var(--surface-2); }
.nav-links a.active { color: var(--accent-deep); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--accent-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px; height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: 96px; }
.section-sm { padding-block: 64px; }
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink-900); color: oklch(0.92 0.008 245); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}

/* ---------- Image placeholder (clean upload-slot look) ---------- */
.ph {
  position: relative;
  background-color: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--muted);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1.5px dashed var(--line);
  border-radius: 8px;
}
.ph::after {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  text-align: center;
  max-width: 80%;
}
.ph-accent {
  background-color: var(--accent-soft);
  border-color: var(--accent-line);
}
.ph-accent::before { border-color: var(--accent-line); }
.ph-accent::after { color: var(--accent-deep); border-color: var(--accent-line); }

/* Real photo dropped into a placeholder slot */
.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  z-index: 2;
}
.ph:has(img) { border-style: solid; }
.ph:has(img)::before,
.ph:has(img)::after { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 72px; padding-bottom: 88px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  margin-top: 22px;
}
.hero h1 .g { color: var(--accent-deep); }
.hero-lead {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 30ch;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  aspect-ratio: 4 / 4.4;
}
.hero-media .ph { position: absolute; inset: 0; }
.hero-badge {
  position: absolute;
  left: -22px;
  bottom: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-badge .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent-deep);
}
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1; }
.hero-badge .s { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Trust strip */
.trust {
  margin-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 30px 4px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.trust-item:last-child { border-right: none; }
.trust-item .n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.trust-item .n span { color: var(--accent-deep); }
.trust-item .l {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-line); }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card .ico svg { width: 27px; height: 27px; }
.card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.card h3 { font-size: 21px; margin: 14px 0 10px; }
.card p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.card .more {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card .more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   FEATURE / ADVANTAGE
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .chk {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-top: 1px;
}
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list .ft { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink-900); }
.feature-list .fd { font-size: 14.5px; color: var(--muted); margin-top: 3px; }

.media-tall { aspect-ratio: 3 / 3.5; }
.media-wide { aspect-ratio: 4 / 3; }
.media-tall .ph, .media-wide .ph { position: absolute; inset: 0; }
.media-tall, .media-wide { position: relative; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.step .sn {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
}
.step .bar { height: 3px; width: 40px; background: var(--accent); margin: 16px 0 18px; border-radius: 2px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--accent);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent-deep), transparent 60%);
  opacity: 0.55;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: oklch(0.95 0.025 28); margin-top: 14px; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-band .eyebrow { color: oklch(0.93 0.045 28); }
.cta-band .eyebrow::before { background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: oklch(0.74 0.01 245);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid oklch(0.32 0.014 250);
}
.site-footer .brand { color: #fff; font-size: 23px; }
.footer-about { margin-top: 18px; font-size: 15px; max-width: 30ch; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 15px; color: oklch(0.74 0.01 245); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  font-size: 13.5px;
  color: oklch(0.58 0.01 245);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .mono { font-family: var(--font-mono); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.crumbs {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: center;
}
.crumbs a:hover { color: var(--accent-deep); }
.crumbs .sep { color: var(--line); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 20px;
  max-width: 16ch;
}
.page-hero p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============================================================
   OFERTA — detailed service rows
   ============================================================ */
.offer-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding-block: 60px;
  border-bottom: 1px solid var(--line);
}
.offer-row:last-child { border-bottom: none; }
.offer-row.flip .offer-media { order: 2; }
.offer-media { position: relative; aspect-ratio: 4 / 3.2; }
.offer-media .ph { position: absolute; inset: 0; }
.offer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.offer-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 14px 0 16px; }
.offer-body p { color: var(--ink-soft); font-size: 16.5px; }
.offer-points {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: grid; gap: 11px;
}
.offer-points li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-soft); }
.offer-points .chk { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.offer-points .chk svg { width: 13px; height: 13px; }

/* ============================================================
   REALIZACJE — gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.gallery-item { position: relative; }
.gallery-item .ph { aspect-ratio: 4 / 3; }
.gallery-item.tall .ph { aspect-ratio: 4 / 5.4; }
.gallery-item .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
}
.gallery-item .meta .t { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink-900); }
.gallery-item .meta .c { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

/* filter chips */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   O NAS — values
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.value {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
}
.value .ico { width: 46px; height: 46px; border-radius: 11px; background: #fff; border: 1px solid var(--line); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 18px; }
.value .ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 19px; margin-bottom: 9px; }
.value p { font-size: 15px; color: var(--muted); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-cards { display: grid; gap: 14px; margin-top: 8px; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-card .ico { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.contact-card .ico svg { width: 23px; height: 23px; }
.contact-card .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-card .v { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink-900); margin-top: 4px; }
.contact-card .v.sm { font-size: 15px; font-weight: 600; font-family: var(--font-body); line-height: 1.5; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.consent { display: flex; gap: 11px; font-size: 13px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.consent input { margin-top: 3px; flex: none; }
.form-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent-deep);
  display: none;
}
.form-note.show { display: block; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .d { color: var(--ink-soft); font-weight: 600; }
.hours-list .h { font-family: var(--font-mono); color: var(--muted); }
.hours-list .closed { color: oklch(0.60 0.10 25); }

/* ============================================================
   FAQ (mini accordion)
   ============================================================ */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-900);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--accent-deep);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  color: var(--ink-soft);
  font-size: 16px;
}
.faq-a p { padding-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 13px 12px; font-size: 16px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { aspect-ratio: 4 / 3; max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .offer-row, .offer-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .offer-row.flip .offer-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar-inner { height: auto; padding: 9px 0; }
  .topbar-contact { gap: 16px; font-size: 12.5px; flex-wrap: wrap; }
  .topbar-contact span { display: none; }
  .topbar-social { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .wrap { padding-inline: 20px; }
  .cards, .cards-4, .steps, .values, .gallery { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; }
  .cta-band { padding: 32px 22px; }
}
