/* ============================================================
   CZ Úklidy – styles
   ============================================================ */

:root {
  --magenta: #B00055;
  --magenta-dark: #8e0044;
  --teal: #8cc4c2;
  --teal-dark: #6fb0ad;
  --white: #ffffff;
  --text: #222222;
  --muted: #5a5a5a;
  --bg-soft: #f6f7f7;

  --container: 1140px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .14);
  --nav-h: 200px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Fonts ---------- */
/* FinalSix – firemní font (woff2 v /fonts/). */
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix";
  src: url("/fonts/FinalSix-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Doplňkové řezy s vlastní rodinou */
@font-face {
  font-family: "FinalSixLight";
  src: url("/fonts/FinalSix-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FinalSix Hairline";
  src: url("/fonts/FinalSix-Hairline.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  font-family: "FinalSix", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pill {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(176, 0, 85, .28);
}
.btn--pill:hover { background: var(--magenta-dark); box-shadow: 0 10px 22px rgba(176, 0, 85, .38); }

.btn--outline-light {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  padding: 15px 38px;
}
.btn--outline-light:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.btn--white:hover { background: #f0f0f0; }

/* ---------- Navbar ---------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.navbar__logo img { width: 350px; height: auto; }

/* CTA tlačítko + tooltip */
.navbar__cta-wrap { position: relative; display: inline-flex; }

.navbar__cta {
  font-family: "FinalSixLight", Impact, "Arial Black", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: 18px;
  line-height: 18px;
  box-shadow: none;
}

/* Hover: bílé pozadí, brandově růžový text */
.navbar__cta:hover {
  background: var(--white);
  color: var(--magenta);
  box-shadow: none;
}

.navbar__tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "FinalSix", system-ui, sans-serif;
  font-weight: 300;
  font-size: .9rem;
  color: var(--white);
  background: #3a3a3a;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  pointer-events: none;
}
.navbar__tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 28px;
  border: 6px solid transparent;
  border-bottom-color: #3a3a3a;
}
.navbar__tooltip-icon { color: var(--magenta); flex-shrink: 0; }

.navbar__cta-wrap:hover .navbar__tooltip,
.navbar__cta:focus-visible + .navbar__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 28px;
}
.navbar__nav > .nav-link:first-child { margin-left: 0; }
.navbar__cta-wrap { margin-left: auto; }
.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .25);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-link:hover { color: var(--magenta); text-shadow: none; }


.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.navbar__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--magenta);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--teal);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 140px;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("/img/hero-bg.webp") center/cover no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(140, 196, 194, 1) 0%,
    rgba(140, 196, 194, .92) 50%,
    rgba(140, 196, 194, .72) 100%
  );
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 32px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}
.hero__claim {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 32px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .2);
}
.hero__claim strong {
  display: block;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 8px;
}
.hero__cta { margin-top: 8px; }

/* ---------- Waves ---------- */
.wave { position: absolute; left: 0; bottom: -1px; width: 100%; line-height: 0; z-index: 3; }
.wave svg { width: 100%; height: 90px; display: block; }
.wave--to-white path { fill: var(--white); }
.wave--to-magenta path { fill: var(--magenta); }

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--white);
  padding: 40px 0 150px;
}
.services__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: end;
}
.services__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Ukotvení ke spodnímu okraji sekce – spodní část uklízečky se zanoří pod růžovou vlnku */
  margin-bottom: -150px;
}
.services__worker {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
}

.services__eyebrow {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.services__lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.section-title {
  color: var(--magenta);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 12px;
}
.services__sub { margin: 0 0 18px; }

.check-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  background: var(--magenta);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/70% no-repeat;
}
.services__note { color: var(--muted); margin: 0 0 18px; }
.services__highlight { font-weight: 700; margin: 0; }
.services__highlight a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--magenta);
  color: var(--white);
  padding: 80px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact__title {
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 18px;
}
.contact__address { font-style: normal; }
.contact__company { font-weight: 700; font-size: 1.2rem; margin: 0 0 16px; }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact__list li { display: flex; gap: 10px; align-items: baseline; font-size: 1.05rem; }
.contact__list a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact__ico { width: 20px; flex: none; }

/* Form */
.contact__form-wrap {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field label { font-weight: 600; font-size: .9rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  background: var(--bg-soft);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(176, 0, 85, .12);
  background: var(--white);
}
.form-field input[type="file"] { padding: 9px 14px; background: var(--bg-soft); cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input.invalid,
.form-field textarea.invalid { border-color: #d6002e; background: #fff5f6; }

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: .88rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--magenta); flex: none; }
.checkbox a { color: var(--magenta); }
.checkbox.invalid span { color: #d6002e; }

.contact-form__submit { justify-self: start; margin-top: 4px; background: var(--magenta); color: var(--white); }
.contact-form__submit:hover { background: var(--magenta-dark); }
.contact-form__submit[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.form-status { margin: 4px 0 0; font-weight: 600; min-height: 1.2em; }
.form-status.success { color: #1a7a3c; }
.form-status.error { color: #d6002e; }

/* ---------- Map ---------- */
.map { position: relative; line-height: 0; }
.map iframe { display: block; width: 100%; }

.map-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 440px;
  background: #e8eaf0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23dde0e8'/%3E%3Cline x1='0' y1='20' x2='40' y2='20' stroke='%23c8ccd6' stroke-width='1'/%3E%3Cline x1='20' y1='0' x2='20' y2='40' stroke='%23c8ccd6' stroke-width='1'/%3E%3C/svg%3E") repeat;
  cursor: pointer;
}
.map-facade:hover .map-facade__label,
.map-facade:focus .map-facade__label { background: #8a003e; }
.map-facade__label {
  background: var(--magenta);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 99px;
  transition: background .2s;
}

/* Růžové vlnky zanořené do horní a spodní hrany mapy */
.map__wave { z-index: 2; height: auto; pointer-events: none; }
.map__wave svg { height: 70px; }
.map__wave path { fill: var(--magenta); }
.map__wave--top { top: -1px; bottom: auto; transform: scaleY(-1); }
.map__wave--bottom { bottom: -1px; top: auto; }
.map__wave--bottom path { fill: var(--white); }

/* ---------- Legal / textová stránka ---------- */
.legal-hero {
  position: relative;
  background: var(--teal);
  padding: calc(var(--nav-h) + 40px) 0 130px;
  overflow: hidden;
}
.legal-hero__title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.legal { background: var(--white); padding: 70px 0 90px; }
.legal__inner { max-width: 860px; color: var(--text); }
.legal h2 {
  color: var(--magenta);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 40px 0 12px;
}
.legal p { margin: 0 0 16px; line-height: 1.7; }
.legal ul { margin: 0 0 16px; padding-left: 22px; line-height: 1.7; }
.legal ul ul { margin: 8px 0; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }

.legal__card {
  background: #faf3f6;
  border-left: 4px solid var(--magenta);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.legal__eyebrow {
  font-weight: 700;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  margin: 0 0 8px;
}
.legal__card p { margin: 0; line-height: 1.7; }

/* ---------- Ceník ---------- */
/* Na ceníkové stránce není teal hero – navbar musí být v toku a tmavé odkazy */
.navbar--solid {
  position: relative;
  background: var(--white);
}
.navbar--solid .nav-link { color: var(--text); text-shadow: none; }
.navbar--solid .nav-link:hover { color: var(--magenta); }

/* Společný teal nadpis s linkou */
.cenik-heading {
  color: var(--teal);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 36px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(140, 196, 194, .55);
}

.pricing { background: var(--white); padding: 50px 0 30px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border: 1.5px solid var(--magenta);
  border-radius: 18px;
  padding: 42px 20px 26px;
}
.price-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 85%;
  background: var(--magenta);
  color: var(--white);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .04em;
  line-height: 1.15;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 10px;
}
.price-card__price {
  color: var(--magenta);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 6px 0 0;
}
.price-card__unit {
  display: inline-block;
  max-width: 150px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  line-height: 1.25;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.price-card__free {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}
.price-card__check {
  width: 30px; height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  background: #2ca84a;
  border-radius: 8px;
}
.price-card__check svg { width: 18px; height: 18px; }
.price-card__btn {
  margin-top: auto;
  white-space: normal;
  max-width: 130px;
  line-height: 1.2;
  padding: 12px 24px;
}

.pricing__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 0;
  color: var(--text);
}
.pricing__note-icon {
  width: 30px; height: 30px;
  flex: none;
  color: var(--magenta);
}

/* Textové info bloky pod ceníkem */
.info-block { background: var(--white); padding: 36px 0; }
.info-block__heading { /* používá .cenik-heading */ }

.brush-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.brush-item:last-child { margin-bottom: 0; }
.brush-item__icon {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--magenta);
  border-radius: 8px;
  color: var(--white);
}
.brush-item__icon svg { width: 18px; height: 18px; }

/* Magenta vlnka nad patičkou */
.footer-wave { line-height: 0; background: var(--white); margin-top: 30px; }
.footer-wave svg { width: 100%; height: 90px; display: block; }
.footer-wave path { fill: var(--magenta); }

/* ---------- Footer ---------- */
.footer { background: var(--white); color: var(--text); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}
.footer__logo { height: 90px; width: auto; }
.footer__company { font-weight: 700; font-size: 1.1rem; margin: 0 0 14px; color: var(--magenta); }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col ul li { display: flex; align-items: center; gap: 8px; }
.footer__ico { flex-shrink: 0; color: var(--magenta); }
.footer__col a { color: var(--magenta); text-decoration: none; }
.footer__col a:hover { text-decoration: underline; }

.footer__bar { background: var(--white); border-top: 1px solid #e5e5e5; }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  font-size: .88rem;
  color: var(--text);
}
.footer__bar-inner a { color: var(--magenta); text-decoration: underline; }

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--magenta);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background-color .2s var(--ease);
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--magenta-dark); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { gap: 36px; }
  .contact__grid { gap: 36px; }
  .hero { min-height: 460px; }
}

@media (max-width: 768px) {
  .hero__media { background-image: url("/img/hero-bg-mobile.webp"); }
  :root { --nav-h: 150px; }
  .navbar__logo img { height: 120px; }

  .navbar__burger { display: flex; }
  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - var(--nav-h));
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 28px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
  }
  .navbar__nav.open { transform: translateX(0); }
  /* Mobilní menu má bílé pozadí → vždy tmavé odkazy */
  .nav-link { font-size: 1.15rem; padding: 10px 0; color: var(--text); text-shadow: none; }
  .nav-link:hover { color: var(--magenta); }
  .navbar__cta { margin-top: 12px; }

  .services__grid,
  .contact__grid,
  .footer__grid { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr 1fr; }

  .services__worker { max-width: 320px; }
  .services { padding-bottom: 110px; }
  /* Na mobilu je obrázek nad textem – zrušíme zanoření, aby text nepřekrýval uklízečku */
  .services__media { margin-bottom: 24px; }

  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }

  .footer__bar-inner { flex-direction: column; text-align: center; }

  .wave svg { height: 56px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .btn--outline-light { width: 100%; }
  .to-top { right: 16px; bottom: 16px; }

  .pricing__grid { grid-template-columns: 1fr; gap: 32px 0; }
  .price-card { max-width: 320px; margin-inline: auto; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
