:root {
  --red: #c8102e;
  --red-dark: #9f0d24;
  --red-darker: #7a0a1b;
  --red-soft: #fef2f4;
  --red-tint: #fde8ec;
  --slate: #1e293b;
  --slate-dark: #0f172a;
  --slate-darker: #020617;
  --slate-soft: #f1f5f9;
  --slate-tint: #e2e8f0;
  --slate-accent: #475569;
  --text: #111827;
  --text-soft: #4b5563;
  --text-mute: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-alt: #eef1f6;
  --border: #e5e7eb;
  --border-soft: #eef0f4;
  --white: #ffffff;
  --dark: #0f172a;
  --success: #16a34a;
  --amber: #fbbf24;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.stat-num {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
}

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

a { color: var(--red); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- NAV ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1.02rem;
}
.brand-sub {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 3px;
  background: var(--red);
  border-radius: 3px 3px 0 0;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }

/* mobile hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--text); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .15s, background .2s, color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--red-dark); }
.btn-white:hover { background: #f3f4f6; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-red {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red-soft); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #1e293b; }

/* ---------- HERO (homepage) ---------- */
.hero { background: var(--white); padding: 1rem 0 0; }
.hero-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-card {
  background: linear-gradient(120deg, var(--slate-darker) 0%, var(--slate-dark) 55%, var(--slate) 100%);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 460px;
  position: relative;
}
.hero-text {
  padding: 3.5rem 3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(251,191,36,0.25);
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero p.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}
.hero-trust .trust-item { font-weight: 500; }
.hero-trust .trust-item strong {
  color: var(--white);
  font-weight: 700;
  margin-right: 0.15rem;
}
.hero-trust .trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}
.hero-visual {
  position: relative;
  background: var(--slate-darker);
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: var(--slate-darker);
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img svg { width: 60%; height: auto; opacity: 0.85; }
.hero-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-floating .pill {
  width: 42px; height: 42px;
  background: var(--amber);
  color: #78350f;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-floating strong { display: block; font-size: 0.92rem; }
.hero-floating span { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--slate-soft);
  color: var(--text);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-text { min-width: 0; }
.page-hero-aside { justify-self: end; width: 100%; max-width: 340px; }
.hero-aside-call {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  transition: transform .2s, box-shadow .2s;
}
.hero-aside-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,23,42,0.1);
}
.hero-aside-call .label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
}
.hero-aside-call strong {
  display: block;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}
.hero-aside-call .sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.4;
}
.page-hero .crumbs {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 1rem;
}
.page-hero .crumbs a {
  color: var(--text-soft);
  text-decoration: none;
}
.page-hero .crumbs a:hover { color: var(--red); text-decoration: underline; }
.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  max-width: 820px;
  color: var(--text);
}
.page-hero p.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.6;
}

/* ---------- FEATURE STRIP ---------- */
.feature-strip { padding: 3rem 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--slate-soft);
  color: var(--slate);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.55;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--slate-soft);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-head h2 {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.section-head p {
  color: var(--text-mute);
  font-size: 1.02rem;
}
.section-head::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 1.2rem auto 0;
}
.section-head.left::after { margin-left: 0; margin-right: auto; }

/* ---------- WHY / SPLIT CONTENT ---------- */
.why { padding: 4rem 0 5rem; background: var(--bg-soft); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.why-layout.reverse { grid-template-columns: 1.1fr 1fr; }
.why-layout.reverse .why-image { order: 2; }
.why-image {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.15), rgba(0,0,0,0.35)),
    linear-gradient(135deg, #475569, #0f172a);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.why-image::after,
.bio-photo::after,
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}
.why-image .caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: white;
  z-index: 1;
}
.bio-photo .caption,
.gallery-item .caption { z-index: 1; }
.why-image svg { width: 35%; opacity: 0.5; }
.why-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.why p.lead {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
}
.check-list .check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--slate);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check-list .check svg { width: 12px; height: 12px; color: white; }
.check-list strong { font-weight: 700; }

/* ---------- SERVICES ---------- */
.services { padding: 5rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  transition: border-color .2s, transform .2s, box-shadow .25s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--red-tint);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(200,16,46,0.1), 0 4px 10px rgba(15,23,42,0.05);
}
.service-card .service-icon { transition: background-color .2s, color .2s; }
.service-card:hover .service-icon {
  background: var(--red-soft);
  color: var(--red);
}
.service-card .arrow { transition: transform .2s, color .2s; }
.service-card:hover .arrow {
  transform: translateX(5px);
  color: var(--red-dark);
}
.service-card.featured {
  background: var(--red-soft);
  border-color: var(--red-tint);
}
.service-card.featured::before {
  content: 'Nejžádanější';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--slate-soft);
  color: var(--slate);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}
.service-card.featured .service-icon {
  background: var(--red);
  color: white;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.55;
}
.service-card .arrow {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- SERVICE DETAIL BLOCKS ---------- */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-detail h2 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.service-detail .intro {
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.service-detail p { color: var(--text-soft); margin-bottom: 1rem; }
.service-detail .aside {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
}
.service-detail .aside h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.7rem;
}
.service-detail .aside dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.service-detail .aside dt {
  color: var(--text-mute);
  font-weight: 500;
}
.service-detail .aside dd { font-weight: 600; }
.service-detail .tip {
  background: var(--slate-soft);
  border-left: 3px solid var(--slate);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.service-detail .tip strong { color: var(--slate-dark); }
.service-detail .price-block {
  background: var(--red-soft);
  border: 1px solid var(--red-tint);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.2rem 1.4rem 1.3rem;
  margin: 0.2rem 0 1.4rem;
}
.service-detail .price-block .price-head { margin-bottom: 0.6rem; }
.service-detail .price-block .price-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-dark);
}
.service-detail .price-block .price-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--slate-dark);
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
}
.service-detail .price-block .price-vat {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0;
  margin-left: 0.3rem;
}
.service-detail .price-block .price-note {
  font-size: 0.88rem;
  color: var(--text-mute);
  margin: 0.2rem 0 0.5rem;
}
.service-detail .price-block ul.price-travel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  font-size: 0.92rem;
}
.service-detail .price-block ul.price-travel li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--red-tint);
  color: var(--text-soft);
}
.service-detail .price-block ul.price-travel li:last-child { border-bottom: none; }
.service-detail .price-block ul.price-travel li strong {
  color: var(--slate-dark);
  font-weight: 600;
}
.service-detail ul.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 1.2rem;
}
.service-detail ul.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.service-detail ul.detail-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate-accent);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ---------- BRANDS ---------- */
.brands {
  padding: 3rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.brands-head {
  text-align: center;
  margin-bottom: 2rem;
}
.brands-head h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
}
.brand-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem;
  min-height: 68px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  transition: all .15s;
  text-decoration: none;
}
.brand-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.brand-chip.partner {
  background: var(--red);
  color: white;
  border-color: var(--red);
  position: relative;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
}
.brand-chip.partner:hover { color: white; }
.brand-chip.partner .brand-chip-name {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.brand-chip.partner .brand-chip-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.92;
  line-height: 1.15;
}
.brand-chip.partner::after {
  content: '★';
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--amber);
  color: #78350f;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  border: 2px solid var(--bg-soft);
}

/* ---------- BRANDS DETAIL (Značky page) ---------- */
.brands-detail { padding: 5rem 0; background: var(--white); }
.brands-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
.brand-block {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.9rem 1.9rem 1.7rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.brand-block:hover {
  border-color: var(--red-tint);
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}
.brand-block.partner {
  background: var(--red-soft);
  border-color: var(--red-tint);
}
.brand-block.partner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 18px 0 0 18px;
}
.brand-block-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand-block .logo {
  width: 58px; height: 58px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 600;
  color: var(--slate);
  font-size: 1.65rem;
  flex-shrink: 0;
}
.brand-block-title { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.brand-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.brand-origin {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.brand-positioning {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.brand-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.2rem 0 0;
  padding: 0;
}
.brand-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.brand-benefits .check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
  color: var(--white);
}
.brand-benefits .check svg { width: 10px; height: 10px; }
.brand-block.partner .brand-benefits li:first-child {
  font-weight: 600;
}
.brand-block .partner-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: white;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 1;
}
.brand-block .auth-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--slate-soft);
  color: var(--slate);
  padding: 0.28rem 0.7rem 0.28rem 0.55rem;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.brand-block .auth-badge-icon {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  background: var(--red);
  color: white;
  border-radius: 50%;
}
.brand-block .auth-badge-icon svg { width: 8px; height: 8px; }

.certifications {
  padding: 5rem 0;
  background: var(--bg-soft);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cert-card {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 2rem 2rem 2.4rem;
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}
.cert-card::after {
  content: 'CERTIFIKACE';
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.cert-card .cert-icon {
  width: 60px; height: 60px;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid var(--red-tint);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}
.cert-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.018em;
  color: var(--text);
  line-height: 1.15;
}
.cert-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---------- STEPS ---------- */
.steps { padding: 5rem 0; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--slate-tint) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 16px rgba(15,23,42,0.08);
  border: 3px solid var(--red);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.93rem;
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- CONTACT CARD ---------- */
.contact-block { padding: 2rem 0 5rem; background: var(--white); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 3rem;
  color: var(--text);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}
.contact-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.contact-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  border: 1px solid var(--red-tint);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item .label {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.contact-item .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.contact-item .value:hover { color: var(--red); text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { padding: 5rem 0; background: var(--bg-soft); }
.faq-groups {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.faq-group-label {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem 0.2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--slate-tint);
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.faq-item summary {
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.005em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  display: inline-flex;
  width: 22px; height: 22px;
  color: var(--slate-accent);
  flex-shrink: 0;
  transition: transform .25s, color .2s;
}
.faq-chevron svg { width: 100%; height: 100%; }
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}
.faq-item .answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- REVIEWS ---------- */
.reviews { padding: 5rem 0; background: var(--white); }
.reviews-score {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-score .stars {
  font-size: 1.4rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}
.reviews-score .score {
  font-size: 1.05rem;
  font-weight: 600;
}
.reviews-score .score span {
  color: var(--text-mute);
  font-weight: 400;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.review {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid var(--border-soft);
  position: relative;
}
.review-quote {
  position: absolute;
  top: -0.9rem;
  left: 1.2rem;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--slate-tint);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.review .stars {
  color: var(--amber);
  margin-bottom: 0.9rem;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  position: relative;
}
.review blockquote {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.3rem;
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.review-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.review-avatar {
  width: 38px; height: 38px;
  background: var(--slate);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.review-author-source {
  font-size: 0.78rem;
  color: var(--text-mute);
}

/* ---------- GALLERY ---------- */
.gallery { padding: 5rem 0; background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #374151, #111827);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.big { grid-row: span 2; }
.gallery-item .caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: white;
}
.gallery-item svg { width: 40px; height: 40px; opacity: 0.4; }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 4rem 0;
  background: var(--white);
  text-align: center;
}
.cta-banner-inner {
  background: var(--dark);
  border-radius: 22px;
  padding: 3.5rem 2rem;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.cta-banner-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- STATS (O mně) ---------- */
.stats { padding: 5rem 0; background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  text-align: center;
  padding: 2.5rem 1rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- BIO (O mně) ---------- */
.bio { padding: 5rem 0; background: var(--bg-soft); }
.bio-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.bio-photo {
  border-radius: 18px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #4b5563, #1f2937);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.bio-photo svg { width: 40%; opacity: 0.5; }
.bio-photo .caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: white;
}
.bio-content h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.bio-content p {
  color: var(--text-soft);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.bio-content strong { color: var(--text); }

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding: 4rem 0 5rem; background: var(--white); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem;
}
.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.contact-info .row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info .row:last-child { border-bottom: none; }
.contact-info .row-icon {
  width: 38px; height: 38px;
  background: var(--slate-soft);
  color: var(--slate);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info .row-icon svg { width: 18px; height: 18px; }
.contact-info .row .label {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.contact-info .row .value { font-weight: 600; color: var(--text); text-decoration: none; }
.contact-info .row a.value:hover { color: var(--red); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table tr { border-bottom: 1px solid var(--border-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.95rem;
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}
.hours-table tr.emerg td {
  color: var(--red);
  font-weight: 700;
}

/* ---------- FORM ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.form-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-card .form-intro {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-top: 1rem;
  line-height: 1.6;
}
.form-actions { margin-top: 1.3rem; }

/* ---------- MAP ---------- */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  aspect-ratio: 16/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-section { padding: 3rem 0 5rem; background: var(--white); }

/* ---------- AREA ---------- */
.area-section { padding: 4rem 0; background: var(--bg-soft); text-align: center; }
.area-map {
  position: relative;
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 3.5rem 1rem;
}
.area-map-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.area-map-rings::before,
.area-map-rings::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--border);
  border-radius: 50%;
  aspect-ratio: 1;
}
.area-map-rings::before { width: 360px; border-color: rgba(200,16,46,0.22); }
.area-map-rings::after { width: 620px; border-color: var(--border); }
.area-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}
.area-pills-group { text-align: center; max-width: 600px; }
.area-pills-label {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--bg-soft);
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.8rem;
}
.area-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
}
.area-pill.primary {
  background: var(--slate-dark);
  color: var(--white);
  border-color: var(--slate-dark);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.6rem 1.3rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .15s;
}
footer a:hover { color: var(--white); }
footer p { font-size: 0.9rem; line-height: 1.7; color: #94a3b8; }
.footer-brand .brand-mark { margin-bottom: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.footer-emerg {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  border-radius: 10px;
  color: #fecaca;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: #94a3b8; }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--red);
  color: white;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
  z-index: 90;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; position: relative; }
  .hero-text { padding: 2.5rem 2rem; }
  .hero h1 { font-size: 2rem; }
  .feature-grid,
  .services-grid,
  .steps-grid,
  .reviews-grid,
  .footer-grid,
  .brands-detail-grid { grid-template-columns: 1fr 1fr; }
  .why-layout,
  .why-layout.reverse,
  .contact-card,
  .contact-page-grid,
  .bio-layout,
  .cert-grid,
  .service-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-layout.reverse .why-image { order: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat-num { font-size: 3rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .page-hero-aside { justify-self: start; max-width: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gallery-item.big { grid-row: span 1; grid-column: span 2; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open li + li { border-top: 1px solid var(--border-soft); }
  .nav-links.open a { display: block; padding: 0.95rem 0; font-size: 1rem; }
  .nav-links.open a.active::after { display: none; }
  .section-head h2, .why h2, .bio-content h2 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .steps-grid::before { display: none; }
  .mobile-cta { display: inline-flex; }
  body { padding-bottom: 5rem; }
}
@media (max-width: 560px) {
  .feature-grid,
  .services-grid,
  .steps-grid,
  .reviews-grid,
  .footer-grid,
  .brands-detail-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .stat-box { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-box:last-child { border-bottom: none; }
  .stat-num { font-size: 2.5rem; }
  .hero-trust { font-size: 0.82rem; gap: 0.5rem; }
  .hero-trust .trust-sep { display: none; }
  .area-map-rings::before { width: 240px; }
  .area-map-rings::after { width: 420px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .gallery-item.big { grid-column: span 1; }
  .contact-card { padding: 2rem 1.5rem; }
  .cta-banner-inner { padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero-text { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .page-hero { padding: 3rem 0 3.5rem; }
  .section-head { margin-bottom: 2rem; }
  .services, .why, .steps, .faq, .reviews, .gallery, .bio, .stats, .brands-detail, .certifications { padding: 3rem 0; }
}
