/* ─────────────────────────────────────────────────────────────
   service-landing — konvertujúci web pre lokálne služby
   Corporate look (bodytep vzor): biela + bledúčko šedá, modrý hero
   gradient s fotkou, žlté CTA/akcenty, výrazný sans, jemné tiene.
   Chrome (téma / menu / formulár / reveals) zdieľaný s own-onepage.
   Žiadne web fonty: systémové font stacky, žiadne externé requesty.

   TO REBRAND: swap ONLY the token values in the two :root blocks below
   (and the system-in-dark copy). Everything downstream reads the tokens.
   ───────────────────────────────────────────────────────────── */

/* ── Design tokens — SWAP THESE for your brand ─────────────── */
:root {
  /* light (default): biela + bledúčko šedá, modrá primárna, žltý akcent */
  --bg:          #ffffff;
  --surface:     #ffffff;
  --surface-ia:  #f6f7fa;
  --ui-surface:  #eef1f5;
  --text:        #1c2534;
  --text-muted:  #5a6272;
  --border:      #e4e8ee;
  /* plné plochy značky (tlačidlá, logo) — ROVNAKÉ v oboch témach */
  --brand:       #264ac2;
  --brand-ink:   #ffffff;
  --primary:     #264ac2;
  --primary-rgb: 38, 74, 194;
  --primary-ink: #ffffff;      /* text sitting ON --primary */
  --accent:      #fbe907;      /* žltý akcent — vždy ako PLOCHA, nikdy ako text na svetlom */
  --accent-ink:  #1c2534;      /* text sitting ON --accent */
  --star:        #e8b400;      /* hviezdičky hodnotení (tmavšia žltá kvôli kontrastu) */
  --error:       #b80037;
  --topbar-bg:   #131c33;
  --topbar-text: #e7eaf2;
  --header-bg:   rgba(255, 255, 255, 0.92);
  --card-hover-bg: rgba(38, 74, 194, 0.03);
  /* modrý hero pás (gradient) — žltý text/CTA naň, biela typografia */
  --hero-bg-a:   #2e55d4;
  --hero-bg-b:   #1c3a9e;
  --card-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);

  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 10px;
  --border-w: 1px;
  --maxw: 1120px;
  --pad-x: 32px;
}

/* dark tokens shared by explicit dark and system-in-dark */
:root[data-theme="dark"] {
  --bg:          #10131a;
  --surface:     #171b25;
  --surface-ia:  #1c212d;
  --ui-surface:  #0c0e14;
  --text:        #e8e6df;
  --text-muted:  #b9bac2;
  --border:      #333a4b;
  --brand:       #264ac2;
  --brand-ink:   #ffffff;
  --primary:     #5c8aff;
  --primary-rgb: 92, 138, 255;
  --primary-ink: #10131a;
  --accent:      #fbe907;
  --accent-ink:  #1c2534;
  --star:        #f2cd2a;
  --error:       #ff4d7d;
  --topbar-bg:   #0c0e14;
  --topbar-text: #b9bac2;
  --header-bg:   rgba(16, 19, 26, 0.9);
  --card-hover-bg: rgba(92, 138, 255, 0.05);
  --hero-bg-a:   #2e55d4;
  --hero-bg-b:   #1c3a9e;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root[data-theme="system"] {
    --bg:          #10131a;
    --surface:     #171b25;
    --surface-ia:  #1c212d;
    --ui-surface:  #0c0e14;
    --text:        #e8e6df;
    --text-muted:  #b9bac2;
    --border:      #333a4b;
    --brand:       #264ac2;
    --brand-ink:   #ffffff;
    --primary:     #5c8aff;
    --primary-rgb: 92, 138, 255;
    --primary-ink: #10131a;
    --accent:      #fbe907;
    --accent-ink:  #1c2534;
    --star:        #f2cd2a;
    --error:       #ff4d7d;
    --topbar-bg:   #0c0e14;
    --topbar-text: #b9bac2;
    --header-bg:   rgba(16, 19, 26, 0.9);
    --card-hover-bg: rgba(92, 138, 255, 0.05);
    --hero-bg-a:   #2e55d4;
    --hero-bg-b:   #1c3a9e;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Anchor targets clear the sticky header (60px + border) when jumped to. */
[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Označenie textu žltou: modrý priesvit sa na modrom hero strácal.
   Žltá plocha + tmavý text drží kontrast na bielej, modrej aj v tmavej téme. */
::selection { background: var(--accent); color: var(--accent-ink); }

/* ── Scrollbars (Context Raven app pattern) ──
   Literal colors inside ::-webkit-scrollbar rules on purpose: var() inside
   scrollbar pseudo-elements breaks WebKit style resolution (bisected
   2026-07-08 — it silently unstyled unrelated rules). Theme switching is done
   with explicit dark-scoped overrides. Values mirror the theme tokens: light
   track #ffffff = --surface, thumb #e4e8ee = --border; dark track #10131a,
   thumb #5c8aff = --primary. TO REBRAND: swap these literals together with
   the :root tokens above — they cannot read the tokens. */
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: #ffffff; }
::-webkit-scrollbar-thumb {
  background-color: #e4e8ee;
  border-radius: 7px;
  border: 3px solid #ffffff;
  background-clip: padding-box;
  min-height: 80px;
}
:root[data-theme="dark"] ::-webkit-scrollbar-track { background: #10131a; }
:root[data-theme="dark"] ::-webkit-scrollbar-thumb { background-color: #5c8aff; border-color: #10131a; }
@media (prefers-color-scheme: dark) {
  :root[data-theme="system"] ::-webkit-scrollbar-track { background: #10131a; }
  :root[data-theme="system"] ::-webkit-scrollbar-thumb { background-color: #5c8aff; border-color: #10131a; }
}

a { color: var(--primary); text-decoration: none; }
/* :visited zámerne = normálny stav (žiadne fialové linky). :where() drží nulovú
   špecificitu, takže komponentové farby (.card, .header-link, .btn) vyhrávajú. */
:where(a:visited) { color: var(--primary); }
a:hover { color: var(--text-muted); }

/* Display nadpisy: výrazný sans (profi/corporate look ako bodytep referencia). */
h1, h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 2em; margin: 0 0 16px; }
h3 { font-size: 1.05em; font-weight: 700; line-height: 1.35; margin: 0 0 8px; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (max-width: 480px) { .container { padding: 0 16px; } }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--brand-ink);
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Honeypot field: kept in the layout (NOT display:none, which some bots skip)
   but pushed offscreen so no human ever sees it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Inline SVG ikony (stroke, currentColor) */
.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
/* WhatsApp logo je plná (fill) kresba, nie obrys ako zvyšok spritu */
.icon-solid { stroke: none; fill: currentColor; }

/* ── Label (section pre-title) ─────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
/* Variant: label ako žltý štítok (badge) — text vždy v --accent-ink. */
.label-badge {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ── Topbar (dostupnosť + hodiny + telefón) ────────────────── */
.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.82em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}
/* inline-flex + padding: 44px touch target bez zväčšenia vizuálnej výšky lišty */
.topbar a { color: inherit; font-weight: 700; display: inline-flex; align-items: center; min-height: 44px; }
.topbar a:hover { color: var(--accent); }
.topbar-status { display: inline-flex; align-items: center; gap: 8px; }
/* Zelená bodka „dnes k dispozícii" — jemný pulz je INFINITE loop, preto je
   nižšie potlačený pod prefers-reduced-motion (kurátorská politika).
   #3ecf6a je zámerný literál (semaforová zelená, nie brand token). */
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3ecf6a;
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse { 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) { .status-dot { animation: none; } }
.topbar-right { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
/* Postupné odľahčovanie topbaru: najprv text o výjazde, potom hodiny. */
@media (max-width: 1000px) {
  .topbar-area { display: none; }
}
@media (max-width: 700px) {
  .topbar-hours { display: none; }
}

/* ── Header / nav ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--border-w) solid var(--border);
  /* Vlastná kompozitná vrstva — bez nej sa sticky header s blur pozadím
     počas momentum scrollu v WebKite (Safari, cmux/WKWebView) viditeľne trasie. */
  transform: translateZ(0);
}
/* backdrop-filter NIKDY priamo na sticky elemente (WebKit ho vzorkuje o frame
   neskôr = chvenie) — býva izolovaný na vlastnej ::before vrstve. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-mark { height: 2em; width: auto; color: var(--brand); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 1.15em; white-space: nowrap; }
.logo-tag { font-size: 0.62em; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); white-space: nowrap; }

/* nav vľavo pri logu (nie margin-left:auto): rozbalená karta je ukotvená vpravo
   a pri margin-left:auto by ju posledný link podliezol (namerané prekrytie 23px) */
.header-nav { display: flex; gap: 20px; margin-left: 12px; }
/* nowrap: keď sa riadok minie, kolabuje na hamburger — nikdy nezalamuje. */
.header-link { font-weight: 600; font-size: 0.88em; color: var(--text); white-space: nowrap; }
.header-link:hover { color: var(--primary); }

/* Telefónne CTA — najdôležitejší konverzný prvok, vždy viditeľné. */
/* Obal tlačidla + panelu; relative kvôli absolútne zavesenému panelu */
/* min-width = nameraná šírka zbaleného tlačidla (126px @1440). Drží miesto v
   riadku aj keď je karta absolútna, inak by sa nav pri scrolle posunul.
   Pri zmene textu tlačidla hodnotu premerajte. */
.header-contact { margin-left: auto; position: relative; display: flex; align-items: center; min-width: 126px; justify-content: flex-end; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--brand);
  color: var(--brand-ink);
  border: var(--border-w) solid var(--brand);
  border-radius: var(--radius);
  padding: 8px 16px;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.88em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header-cta:hover { color: var(--brand-ink); opacity: 0.88; transform: translateY(-1px); }
.header-cta .icon { width: 17px; height: 17px; }

/* ── Kontaktný panel v hlavičke (vzor bodytep.sk) ──────────
   Tlačidlo „Objednať" žije VNÚTRI karty, existuje len raz. Na vrchu širokého
   displeja je karta rozbalená (biela plocha cez hlavičku a hero, tlačidlo v jej
   pravej časti); po odscrollovaní — a na úzkych displejoch — sa karta „zoblečie"
   a ostane holé tlačidlo v lište. Nikdy nie sú vidieť obe naraz.

   ZBALENÝ STAV JE VÝCHODZÍ (mobile-first): karta nemá vlastnú plochu ani rozmer,
   je to len obal tlačidla. Rozbalenie rieši jediné @media pravidlo nižšie. */
.contact-card-row { display: flex; align-items: center; }

/* Rozbalený stav — len na širokom displeji a len na vrchu stránky.
   Karta je NA VÝŠKU (kontakty, pod nimi tlačidlo). Predloha ich má vedľa seba,
   ale to sa sem nezmestí: logo 230 + nav 440 + široká karta 470 = 1140px pri
   obsahovom stĺpci 1120px — karta by prekryla linky navigácie. Na výšku má 290px
   a vedľa navigácie ostáva rezerva. */
@media (min-width: 1081px) {
  .site-header:not(.scrolled) .contact-card {
    position: absolute;
    /* -40px: obal .header-contact má nulovú výšku (tlačidlo žije v absolútnej
       karte), takže kotva je v strede 64px headera (y≈76). -40px dá hornú hranu
       karty na y≈36 — pretína hranicu topbar/header o ~8px a karta viditeľne
       PLÁVA nad stránkou (bodytep vzor) namiesto splynutia bielej s bielou.
       Viac nedvíhať: spodok textu telefónu v topbare je ~30px od vrchu (merané). */
    top: -40px;
    /* right: 0 = pravá hrana karty lícuje s obsahovým stĺpcom (aj s telefónom
       v topbare nad ňou) — pretŕčanie za stĺpec pôsobilo odsadene doprava */
    right: 0;
    width: 290px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    /* vrstvený tieň viditeľný zo VŠETKÝCH strán vrátane hornej — práve horná hrana
       oddeľuje bielu kartu od bieleho headera; jeden smerový tieň to nespravil */
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.08), 0 12px 24px rgba(16, 24, 40, 0.12), 0 28px 56px rgba(16, 24, 40, 0.18);
    padding: 18px 20px;
  }
  .site-header:not(.scrolled) .contact-card-title { display: block; }
  .site-header:not(.scrolled) .contact-card-list { display: flex; }
  .site-header:not(.scrolled) .contact-card-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .site-header:not(.scrolled) .header-cta { justify-content: center; }
}

.contact-card-title { margin: 0 0 12px; font-weight: 800; font-size: 0.95em; text-align: center; }
.contact-card-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.contact-card-list li { display: flex; align-items: center; gap: 10px; }
.contact-card-list a { font-size: 0.85em; font-weight: 600; color: var(--text); }
.contact-card-list a:hover { color: var(--primary); }

/* Zbalený stav hlavičky (východzí, mobile-first): z karty ostane len tlačidlo.
   Zámerne obmedzené na .site-header — ten istý .contact-card-list používa aj
   kontaktná stránka, kde musí ostať viditeľný.
   MUSÍ stáť až tu: vyššie uvedené .contact-card-list { display:flex } má inak
   rovnakú špecificitu a skrytie by prebilo. Rozbalenie rieši
   @media (min-width:1081px) .site-header:not(.scrolled) — vyhráva špecificitou. */
.site-header .contact-card-title,
.site-header .contact-card-list { display: none; }
.cc-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.cc-icon .icon { width: 15px; height: 15px; }
/* WhatsApp drží svoju značkovú zelenú — je to rozpoznávací znak, nie brand farba */
.cc-icon-wa { background: #25d366; color: #ffffff; }
/* WhatsApp tlačidlo v značkovom prevedení: zelená #25d366 + biely tučný text.
   Selektor je zámerne 2-triedový — .contact-card-list a inak prebije farbu. */
.contact-card-list .wa-link,
.wa-link {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.78em;
}
.contact-card-list .wa-link:hover,
.wa-link:hover { color: #ffffff; opacity: 0.88; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5em;
  /* fixed min-width: 44px touch target + the ☰ ↔ ✕ swap never shifts layout */
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  padding: 8px 4px;
}
.mobile-nav { display: none; flex-direction: column; border-bottom: var(--border-w) solid var(--border); background: var(--ui-surface); }
.mobile-nav.open { display: flex; }
.mobile-nav .header-link { padding: 13px var(--pad-x); border-top: 1px solid var(--border); }
.mobile-nav .header-link-wa { display: flex; align-items: center; gap: 10px; }
.mobile-nav .header-link-wa .cc-icon { width: 24px; height: 24px; }
.mobile-nav .header-link-wa .icon { width: 13px; height: 13px; }

/* Collapse the desktop nav to the hamburger before the link row crowds the
   logo + CTA. TUNE THIS to your nav (6 krátkych SK liniek + logo s tagline +
   telefónne CTA ≈ 1080px). Measure at your real link set. */
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .menu-toggle { display: block; margin-left: 4px; }
  /* pod týmto bodom ostáva karta zbalená (= len tlačidlo); telefón aj WhatsApp
     sú dostupné v topbare a v mobilnom menu */
}
/* Small phones: compact the header so logo + CTA + hamburger share one row.
   560px (not 480): logo s tagline + telefónne CTA + hamburger sa pri 500px
   inak nezmestia do riadku (nowrap flex items nemajú kam shrinkovať). */
@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .logo-tag { display: none; }
  .logo-word { font-size: 1em; }
  .header-cta { padding: 7px 10px; }
}
/* Very narrow: CTA text hides, phone stays reachable via topbar + menu.
   Padding drží ikonové tlačidlo na 44px touch targete. */
@media (max-width: 400px) {
  .header-cta .icon { display: none; }
  .header-cta { padding: 7px 12px; }
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--surface-ia); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-lede { color: var(--text-muted); max-width: 62ch; margin: 0 0 44px; }
.section-head-center { text-align: center; }
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

@media (max-width: 768px) { .section { padding: 60px 0; } .section-lede { margin-bottom: 32px; } }
@media (max-width: 480px) { .section { padding: 48px 0; } }

/* ── Hero (modrý pás: text + foto, bodytep vzor) ───────────── */
.hero {
  background: linear-gradient(135deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 100%);
  color: #ffffff;
  /* extra spodný padding: pás benefitov ho prekrýva (negatívny margin) */
  padding: 64px 0 108px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { padding: 44px 0 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Badge pill nad H1 — polopriehľadná biela na modrej */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}

.hero h1 { font-size: 2.9em; margin: 0 0 12px; max-width: 16ch; color: #ffffff; }
@media (max-width: 768px) { .hero h1 { font-size: 2.1em; } }
@media (max-width: 480px) { .hero h1 { font-size: 1.8em; } }

/* Zvýraznené slovo v H1 — žltý text na modrom páse (bodytep vzor).
   Žltá ako TEXT je povolená len na tmavom/modrom podklade. */
.hl { color: var(--accent); }

.hero-sub { font-family: var(--font-display); font-weight: 700; font-size: 1.25em; color: rgba(255, 255, 255, 0.92); margin: 0 0 16px; }
.hero-lede { color: rgba(255, 255, 255, 0.82); max-width: 54ch; margin: 0 0 20px; }
.hero-lede strong { color: #ffffff; }

/* Checkmark list — žlté kruhové odznaky s tmavou fajkou (bodytep vzor) */
.checklist { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; }
.checklist .icon {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  padding: 4px;
  margin-top: 1px;
  stroke-width: 3;
}
/* Hero CTA: primárna akcia je ŽLTÁ (btn-accent v HTML), sekundárna biely ghost */
.hero .btn-ghost { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.45); }
.hero .btn-ghost:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.85); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.btn, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95em;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn { background: var(--brand); color: var(--brand-ink); border: var(--border-w) solid var(--brand); }
.btn:hover { color: var(--brand-ink); opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: var(--surface); color: var(--text); border: var(--border-w) solid var(--border); }
.btn-ghost:hover { color: var(--primary); border-color: rgba(var(--primary-rgb), 0.5); transform: translateY(-1px); }
.btn .icon, .btn-ghost .icon { width: 18px; height: 18px; }
/* Žltý CTA variant (bodytep vzor) — použiť max 1× na stránke. */
.btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-accent:hover { color: var(--accent-ink); }

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .btn, .btn-ghost { width: 100%; }
}

/* Stats row pod CTA — biela typografia na modrom páse */
.stats { display: flex; gap: 40px; border-top: 1px solid rgba(255, 255, 255, 0.25); padding-top: 24px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7em; line-height: 1.2; color: #ffffff; }
.stat-label { font-size: 0.8em; color: rgba(255, 255, 255, 0.72); }
@media (max-width: 480px) { .stats { gap: 24px; } .stat-num { font-size: 1.4em; } }

/* Foto s overlay kartou — ľavý okraj sa rozpíja do modrého pásu (mask) */
.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 26%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 26%);
}
.media-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}
.media-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.media-card-icon .icon { width: 22px; height: 22px; }
.media-card strong { display: block; font-size: 0.95em; }
.media-card span { font-size: 0.8em; color: var(--text-muted); }

/* ── Benefits strip — biela karta PREKRÝVAJÚCA modrý hero pás
   (bodytep vzor: centrované stĺpce s ikonou hore a deliacimi čiarami) ── */
.benefits {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
  padding: 30px 24px;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.benefit + .benefit { border-left: 1px solid var(--border); }
/* .benefit .benefit-icon (2 triedy) — inak farbu prebije textové pravidlo
   `.benefit span` (trieda + element má vyššiu špecificitu než samotná trieda) */
.benefit .benefit-icon, .contact-item .benefit-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(var(--primary-rgb), 0.45);
  background: transparent;
  border-radius: 50%;
  color: var(--primary);
  flex-shrink: 0;
  margin-bottom: 8px;
}
.benefit-icon .icon { width: 24px; height: 24px; }
.benefit strong { display: block; font-size: 0.92em; color: var(--text); }
.benefit span { font-size: 0.8em; color: var(--text-muted); }
@media (max-width: 920px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  /* deliace čiary len v 4-stĺpcovom režime */
  .benefit + .benefit { border-left: none; }
}
@media (max-width: 520px) { .benefits-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── Service cards (ikona + text + link) ───────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  display: flex;
  flex-direction: column;
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 24px;
  color: var(--text);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--card-shadow);
}
.card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: var(--card-hover-bg);
  transform: translateY(-2px);
  color: var(--text);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--primary-rgb), 0.07);
  border: var(--border-w) solid rgba(var(--primary-rgb), 0.22);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 18px;
}
.card p { color: var(--text-muted); margin: 0 0 16px; font-size: 0.9em; }
.card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.85em;
  color: var(--primary);
}
.card:hover .card-link { text-decoration: underline; }
@media (max-width: 920px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

/* ── Process steps (očíslovaný postup) ─────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 22px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--card-shadow);
}
.step:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: var(--card-hover-bg);
  transform: translateY(-2px);
}
.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.05em;
  margin-bottom: 16px;
}
.step p { color: var(--text-muted); margin: 0; font-size: 0.88em; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── „Čo odstránime" — checklist grid (jovitep/bodytep vzor) ── */
.remove-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.remove-item { display: flex; align-items: flex-start; gap: 16px; }
.remove-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.remove-icon .icon { width: 22px; height: 22px; }
.remove-item p { margin: 4px 0 0; color: var(--text-muted); font-size: 0.9em; }
@media (max-width: 640px) { .remove-grid { grid-template-columns: 1fr; } }

/* ── Prose (SEO text sekcia) ───────────────────────────────── */
.prose { max-width: 74ch; margin: 0 auto; }
.prose h2 { font-size: 1.7em; margin: 0 0 16px; }
.prose h3 { font-size: 1.2em; margin: 36px 0 10px; font-family: var(--font-display); letter-spacing: -0.01em; }
.prose p { margin: 0 0 16px; color: var(--text-muted); }
.prose p strong { color: var(--text); }
/* Otázkový medzinadpis: modrý, prvá časť tučná (nesie kľúčové slovo) */
.prose-q { color: var(--primary); font-weight: 400; }
.prose-q strong { font-weight: 800; }

.prose figure { margin: 28px 0; }
.prose-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.prose figcaption { font-size: 0.8em; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── Info box (modrý „sme rodinná firma", vzor upratovaniebratislava.sk) ── */
.info-box {
  background: linear-gradient(135deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 32px;
  margin: 36px 0;
}
.info-box h3 { color: #ffffff; font-size: 1.5em; margin: 0 0 16px; font-weight: 400; }
.info-box h3 strong { font-weight: 800; }
.info-box p { color: rgba(255, 255, 255, 0.85); margin: 0 0 14px; }
.info-box p:last-child { margin-bottom: 0; }
/* žltý odkaz na modrej — jediné miesto, kde je žltá ako text (dostatočný kontrast) */
.info-box a { color: var(--accent); font-weight: 700; text-decoration: underline; }
.info-box a:hover { color: #ffffff; }
.info-box .areas { font-size: 0.88em; }
@media (max-width: 560px) { .info-box { padding: 24px 20px; } }

/* ── Pricing cards ─────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 24px;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--card-shadow);
}
.price-card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: var(--card-hover-bg);
  transform: translateY(-2px);
}
.price-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--primary-rgb), 0.07);
  border-radius: 50%;
  color: var(--primary);
}
.price-kind { font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.price-name { font-weight: 700; margin: 2px 0 10px; }
.price-value { font-family: var(--font-display); font-weight: 700; font-size: 1.5em; color: var(--primary); font-variant-numeric: tabular-nums; }
.price-note-line { font-size: 0.78em; color: var(--text-muted); margin-top: 6px; }
.price-note { text-align: center; color: var(--text-muted); font-size: 0.85em; margin-top: 28px; }
@media (max-width: 920px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ── Reviews ───────────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}
.review-stars { color: var(--star); letter-spacing: 3px; font-size: 0.95em; margin-bottom: 12px; }
.review p { margin: 0 0 18px; font-size: 0.92em; }
.review footer { margin-top: auto; font-size: 0.82em; color: var(--text-muted); font-weight: 600; }
@media (max-width: 920px) { .review-grid { grid-template-columns: 1fr; } }

/* ── FAQ (details/summary accordion) ───────────────────────── */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; align-items: start; }
.faq {
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
  box-shadow: var(--card-shadow);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.3em;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] { border-color: rgba(var(--primary-rgb), 0.5); }
.faq-body { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.9em; }
.faq-body p { margin: 0; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

/* ── CTA box (modrý gradient pás s telefónom, zladený s hero) ── */
.cta-box {
  background: linear-gradient(135deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-box h2 { color: inherit; margin: 0 0 8px; font-size: 1.6em; }
.cta-box p { margin: 0; opacity: 0.85; max-width: 48ch; }
.cta-box-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-box .btn-accent { border-color: var(--accent); }
.cta-box .btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-box .btn-ghost:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.9); }
@media (max-width: 640px) {
  .cta-box { padding: 32px 24px; }
  .cta-box-actions { width: 100%; flex-direction: column; }
  .cta-box .btn, .cta-box .btn-ghost { width: 100%; }
}

/* ── Kontakt (info + formulár) ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item .benefit-icon { width: 44px; height: 44px; margin-bottom: 0; }
.contact-item strong { color: var(--text); }
.contact-item strong { display: block; font-size: 0.92em; }
.contact-item a { font-weight: 700; font-variant-numeric: tabular-nums; }
.contact-item span { font-size: 0.85em; color: var(--text-muted); }

/* ── Form ──────────────────────────────────────────────────── */
.access-form {
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px;
  position: relative;
  box-shadow: var(--card-shadow);
}
.access-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
/* min-width:0 lets each 1fr track shrink below the control's intrinsic width;
   without it a grid item's default min-width:auto pins the track and overflows. */
.form-grid > .field { min-width: 0; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; gap: 0; } .access-form { padding: 24px; } }

.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  min-width: 0;
  background: var(--surface-ia);
  color: var(--text);
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-family: var(--font-sans);
  font-size: 0.95em;
}
/* native select: strip the platform chrome, add a themed caret, match the inputs */
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.field textarea { resize: vertical; }

.form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.access-form button[type="submit"] {
  background: var(--brand);
  color: var(--brand-ink);
  border: var(--border-w) solid var(--brand);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.access-form button[type="submit"]:hover { opacity: 0.88; transform: translateY(-1px); }
.access-form button[type="submit"]:disabled { opacity: 0.5; cursor: default; transform: none; }
.form-note { font-size: 0.8em; color: var(--text-muted); margin: 0; }
.form-note.is-error { color: var(--error); }
.form-note.is-ok { color: var(--primary); }
.form-note a { color: var(--primary); text-decoration: underline; }
@media (max-width: 520px) { .access-form button[type="submit"] { width: 100%; } }

/* ── Page hero (jednoduchý modrý pás pre podstránky) ───────── */
.page-hero {
  background: linear-gradient(135deg, var(--hero-bg-a) 0%, var(--hero-bg-b) 100%);
  color: #ffffff;
  padding: 44px 0 52px;
}
.page-hero h1 { color: #ffffff; font-size: 2.5em; margin: 0 0 10px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 58ch; }
@media (max-width: 768px) { .page-hero { padding: 32px 0 40px; } .page-hero h1 { font-size: 1.9em; } }

/* ── Kontaktná stránka: formulár + bočné karty ─────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-page-grid { grid-template-columns: 1fr; gap: 32px; } }

.side-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
}
.side-card + .side-card { margin-top: 24px; }
.side-card h2 { font-size: 1.4em; margin: 0 0 18px; }
.side-card-note { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.85em; color: var(--text-muted); }

.billing-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 0.9em; }
.billing-list strong { display: inline-block; min-width: 6em; color: var(--text-muted); font-weight: 600; }

/* GDPR súhlas — label prepisuje uppercase/tracking z .field label */
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.field-check input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--brand); flex-shrink: 0; }
.field-check label {
  font-size: 0.82em;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}

/* ── Breadcrumb (podstránka služby) ────────────────────────── */
/* padding-top only — shorthand by zrušil horizontálny padding .containeru */
.breadcrumb { font-size: 0.82em; color: var(--text-muted); padding-top: 20px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: 0.5; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current] { color: var(--text); font-weight: 600; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: var(--border-w) solid var(--border);
  background: var(--ui-surface);
  padding: 48px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-about p { font-size: 0.85em; color: var(--text-muted); margin: 12px 0 0; max-width: 34ch; }
.footer-col h3 { font-size: 0.8em; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text); font-size: 0.88em; }
.footer-col a:hover { color: var(--primary); }
.footer-col li { font-size: 0.88em; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78em;
  color: var(--text-muted);
}
.footer-trust { margin: 0; }

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1em;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { border-color: rgba(var(--primary-rgb), 0.5); color: var(--primary); }

/* ── Reveal animations (curated reduce-motion: kept) ───────── */
.reveal { opacity: 0; transform: translateY(20px); animation: reveal-in 0.6s ease forwards; }
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.25s; }
.reveal-d3 { animation-delay: 0.4s; }
.reveal-d4 { animation-delay: 0.55s; }
@keyframes reveal-in { to { opacity: 1; transform: translateY(0); } }

/* Hidden initial state is gated behind `.js` (set before paint by the head
   script): with JS off, sections are never hidden and stay fully visible. */
.section-reveal { transition: opacity 0.5s ease, transform 0.5s ease; }
.js .section-reveal { opacity: 0; transform: translateY(24px); }
.js .section-reveal.visible { opacity: 1; transform: translateY(0); }

/* No blanket reduce-motion kill. Reveals, hovers and theme swaps are all in
   the "keep" column per the curated reduce-motion policy (~/CLAUDE.md →
   "Frontend animations: reduce-motion policy"). The only INFINITE loop here
   (.status-dot pulse) is suppressed above, individually — never a blanket * {}. */

/* ── Itemizovaný cenník (price-card so zoznamom položiek) ──────────
   Doplnok šablóny pre weby s presným cenníkom (žiadne "od"). */
.price-card-list { text-align: left; }
.price-card-list .price-name { margin-bottom: .75rem; }
.price-rows { list-style: none; margin: 0; padding: 0; }
.price-rows li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .45rem 0; border-top: 1px solid var(--border);
  font-size: .92rem; line-height: 1.35;
}
.price-rows li:first-child { border-top: 0; }
.price-rows li strong {
  text-align: right; flex-shrink: 0; max-width: 55%;
  font-variant-numeric: tabular-nums;
}

/* Tmavá téma: čierne logo invertujeme (čierna→biela, hue-rotate vráti žltú) */
[data-theme="dark"] .logo-img { filter: invert(1) hue-rotate(180deg); }
@media (prefers-color-scheme: dark) {
  [data-theme="system"] .logo-img { filter: invert(1) hue-rotate(180deg); }
}
