/* =========================================================
   Czysta Kostka — global stylesheet
   Mycie ciśnieniowe, Nowy Sącz i okolice
   ========================================================= */

:root {
  --brand:        #0c6e9c;   /* water blue */
  --brand-dark:   #084c6e;
  --brand-light:  #e7f3fa;
  --accent:       #16a34a;   /* clean green */
  --accent-dark:  #128040;
  --ink:          #16242e;   /* main text */
  --muted:        #56707e;   /* secondary text */
  --line:         #dce6ec;   /* borders */
  --bg:           #ffffff;
  --bg-soft:      #f4f8fb;
  --bg-deep:      #0b3b54;
  --star:         #f5a623;
  --radius:       14px;
  --radius-sm:    10px;
  --shadow:       0 6px 24px rgba(11, 59, 84, 0.08);
  --shadow-lg:    0 14px 40px rgba(11, 59, 84, 0.14);
  --maxw:         1140px;
  --header-h:     72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--brand { background: var(--bg-deep); color: #eaf4fa; }
.section--brand h2, .section--brand h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-head p { color: var(--muted); margin: 0; }
.section--brand .section-head p { color: #bcd7e6; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section--brand .eyebrow { color: #7fcdee; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(22,163,74,.28); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(12,110,156,.28); }
.btn--brand:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { background: #eef7fc; color: var(--brand-dark); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: #fff; color: var(--brand-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
}
.main-nav a:hover { background: var(--brand-light); text-decoration: none; color: var(--brand-dark); }
.main-nav a.is-active { color: var(--brand-dark); background: var(--brand-light); }
.main-nav a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  margin-top: 3px;
}

.header-cta { display: inline-flex; gap: 10px; align-items: center; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--brand-dark); white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(127,205,238,.35), transparent 60%),
    linear-gradient(160deg, #0c6e9c 0%, #084c6e 100%);
  color: #eaf6fc;
  padding: 70px 0 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.hero__content { max-width: 760px; }
.hero h1 { color: #fff; }

/* Single-column intro block (used where a side image was removed) */
.lead-block { max-width: 880px; }
.hero p { color: #d6ecf6; font-size: 1.15rem; }
.hero .btn-row { margin-top: 26px; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 8px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .95rem;
}
.hero__rating .stars { color: var(--star); letter-spacing: 2px; }
.hero__rating a { color: #fff; font-weight: 700; }

/* ---------- Trust badges ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
.trust__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.trust__item strong { display: block; color: var(--brand-dark); }
.trust__item span { font-size: .9rem; color: var(--muted); }
.trust__ic { font-size: 1.6rem; line-height: 1; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3 { color: var(--brand-dark); }
.card p:last-child { margin-bottom: 0; }
.card__ic {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card .tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  color: var(--accent-dark); background: #e7f7ee;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step__num {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; }

/* ---------- Service-area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(11,59,84,.05);
}
.chip::before { content: "📍"; font-size: .9rem; }
.chip--muted { background: var(--bg-soft); color: var(--muted); font-weight: 500; }
.chip--muted::before { content: "•"; }

/* ---------- Pricing tables ---------- */
.price-block { margin-bottom: 34px; }
.price-block h3 {
  color: var(--brand-dark);
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.price-table thead th {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 800; color: var(--brand-dark); white-space: nowrap; }
.price-note {
  font-size: .92rem; color: var(--muted);
  margin-top: 10px; padding-left: 2px;
}

.notice {
  background: var(--brand-light);
  border: 1px solid #bfe0f0;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--ink);
}
.notice--warn {
  background: #fff7ec;
  border-color: #f3d9a8;
  border-left-color: var(--star);
}

/* ---------- Rating box (opinie) ---------- */
.rating-box {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.rating-score { font-size: 3rem; font-weight: 800; color: var(--brand-dark); line-height: 1; }
.rating-stars { color: var(--star); font-size: 1.4rem; letter-spacing: 3px; }
.rating-meta { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--brand); line-height: 1; }
.faq-q[aria-expanded="true"]::after { content: "–"; }
.faq-a {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: none; }
.info-list .ic {
  flex: none; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand-dark);
  border-radius: 10px; font-size: 1.2rem;
}
.info-list strong { display: block; color: var(--ink); }
.info-list a { font-weight: 600; }

form .field { margin-bottom: 16px; }
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .95rem;
}
form label .req { color: #d23; }
form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12,110,156,.15);
}
form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-hint { font-size: .9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(127,205,238,.3), transparent 60%),
    linear-gradient(160deg, #0c6e9c, #084c6e);
  color: #fff;
  border-radius: 20px;
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6ecf6; max-width: 620px; margin: 0 auto 24px; }

/* ---------- Hours ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--brand-dark); }
.hours-table tr.today td { color: var(--brand-dark); }
.hours-table .closed { color: #c0392b; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, #0c6e9c 0%, #084c6e 100%);
  color: #eaf6fc;
  padding: 54px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: #cfe7f2; max-width: 680px; margin: 0; }
.crumbs { font-size: .9rem; color: #aacfe1; margin-bottom: 14px; }
.crumbs a { color: #dcefff; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a2f44;
  color: #c2d7e3;
  padding: 56px 0 0;
  font-size: .96rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #c2d7e3; }
.site-footer a:hover { color: #fff; }
.footer-brand { font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-contact li { margin-bottom: 10px; display: flex; gap: 9px; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
}
.footer-social a:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  text-align: center;
  font-size: .85rem;
  color: #93b3c4;
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(11,59,84,.12);
  padding: 9px 12px;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 12px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.stack > * + * { margin-top: 1rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-cta .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }
  .main-nav.open { max-height: 80vh; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 8px 14px 16px; gap: 2px; }
  .main-nav a { padding: 12px 12px; border-radius: 8px; }
  .main-nav a.is-active::after { display: none; }
  .header-cta .btn { padding: 10px 16px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 70px; } /* room for sticky bar */
  .section { padding: 52px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 32px 22px; }
  .mobile-cta { display: flex; }
  .btn-row .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .trust { grid-template-columns: 1fr; }
}

/* =========================================================
   Polish & motion — depth, hover, entrance + scroll reveal
   (subtle, professional; respects prefers-reduced-motion)
   ========================================================= */

/* ---- Buttons: softer, deeper hover ---- */
.btn:hover { box-shadow: 0 10px 24px rgba(11, 59, 84, .16); }
.btn:active { transform: translateY(0); }
.btn--primary:hover { box-shadow: 0 12px 26px rgba(22, 163, 74, .34); }
.btn--brand:hover   { box-shadow: 0 12px 26px rgba(12, 110, 156, .34); }

/* ---- Cards: smoother lift & depth ---- */
.card {
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cfe3ee;
}
.card__ic { transition: transform .26s ease; }
.card:hover .card__ic { transform: translateY(-2px); }

/* Service cards get a subtle top accent on hover */
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }

/* ---- Trust badges: soft lift ---- */
.trust__item { transition: transform .26s ease, box-shadow .26s ease; }
.trust__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.trust__ic { transition: transform .26s ease; }
.trust__item:hover .trust__ic { transform: scale(1.08); }

/* ---- Chips & steps ---- */
.chip { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.chip:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: 0 6px 16px rgba(11, 59, 84, .12); }
.step__num { transition: transform .26s ease, box-shadow .26s ease; }
.step:hover .step__num { transform: scale(1.06); box-shadow: 0 8px 18px rgba(12, 110, 156, .3); }

/* ---- CTA band: a touch more depth + glow ---- */
.cta-band { position: relative; overflow: hidden; }

/* ---- Hero: soft animated glow accent + entrance ---- */
.hero { position: relative; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -130px; top: -170px;
  background: radial-gradient(circle, rgba(127, 205, 238, .30), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0, 0) scale(1); opacity: .75; }
  to   { transform: translate(-28px, 22px) scale(1.12); opacity: 1; }
}

.hero__content > * { animation: fadeUp .7s ease both; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .13s; }
.hero__content > *:nth-child(3) { animation-delay: .21s; }
.hero__content > *:nth-child(4) { animation-delay: .29s; }
.hero__content > *:nth-child(5) { animation-delay: .37s; }

/* ---- Inner page hero: gentle entrance ---- */
.page-hero .crumbs { animation: fadeUp .6s ease both; }
.page-hero h1 { animation: fadeUp .6s ease .08s both; }
.page-hero p  { animation: fadeUp .6s ease .16s both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---- Scroll reveal (only active when JS adds .reveal-ready) ---- */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Staggered reveal inside grids and trust row */
.reveal-ready .grid > .reveal:nth-child(2)  { transition-delay: .06s; }
.reveal-ready .grid > .reveal:nth-child(3)  { transition-delay: .12s; }
.reveal-ready .grid > .reveal:nth-child(4)  { transition-delay: .18s; }
.reveal-ready .grid > .reveal:nth-child(5)  { transition-delay: .24s; }
.reveal-ready .grid > .reveal:nth-child(6)  { transition-delay: .30s; }
.reveal-ready .trust > .reveal:nth-child(2) { transition-delay: .06s; }
.reveal-ready .trust > .reveal:nth-child(3) { transition-delay: .12s; }
.reveal-ready .trust > .reveal:nth-child(4) { transition-delay: .18s; }

/* ---- Accessibility: respect reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero::after { display: none; }
}
