/* ============================================
   SROVNEJPECI.CZ — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2D8F7B;
  --primary-dark: #1f6b5c;
  --primary-light: #e8f5f2;
  --accent: #F4A024;
  --text: #1a2332;
  --text-muted: #5a6878;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-light: #f7f9fb;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

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

h1, h2, h3, h4, h5 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section--light { background: var(--bg-light); }
.section--primary { background: var(--primary); color: #fff; }
.section--dark { background: var(--text); color: #fff; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__header h2 { margin-bottom: 0.75rem; }
.section__header p { color: var(--text-muted); font-size: 1.05rem; }
.section--primary .section__header p { color: rgba(255,255,255,0.85); }

/* --- Header / Nav --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--primary); }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.nav a:hover, .nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.nav .btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 0.5rem;
}

.nav .btn-nav:hover {
  background: var(--primary-dark);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: var(--font);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,143,123,0.35); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--white {
  background: #fff;
  color: var(--primary);
}
.btn--white:hover { background: var(--primary-light); }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: #e08f1a; color: #fff; }

.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1f6b5c 0%, #2D8F7B 50%, #3aab95 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero__content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
}

.hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* --- Search Form --- */
.search-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.search-form__title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.search-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.form-control {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
}

.form-control:focus { outline: none; border-color: var(--primary); }

select.form-control { cursor: pointer; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--text);
  color: #fff;
  padding: 1.5rem 0;
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat-item { text-align: center; }
.stat-item__number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-item__label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }

/* --- Care Types Grid --- */
.care-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.care-type-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.care-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--text);
}

.care-type-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.care-type-card__body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.care-type-card__body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* --- How it works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary));
  opacity: 0.25;
}

.step-card { text-align: center; }
.step-card__number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-light);
}

.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-muted); }

.stars { color: var(--accent); margin-bottom: 0.75rem; font-size: 0.9rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-banner__actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* --- City Grid --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.city-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.city-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.city-card__count { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
  user-select: none;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer__inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Facility Cards --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.facility-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.facility-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.facility-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.facility-card__body { padding: 1.25rem; }

.facility-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.facility-card__name { font-size: 1.05rem; font-weight: 700; }
.facility-card__address { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.rating__stars { color: var(--accent); }
.rating__count { color: var(--text-muted); font-weight: 400; font-size: 0.82rem; }

.facility-card__price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.facility-card__price strong { color: var(--text); }

.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.tag {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.facility-card__actions { display: flex; gap: 0.75rem; }

/* --- Filter Bar --- */
.filter-bar {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-bar .form-group { min-width: 180px; }

/* --- Map Placeholder --- */
.map-placeholder {
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.map-placeholder__icon { font-size: 2.5rem; }

/* --- Article / Blog --- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); color: var(--text); }

.article-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-card__category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.article-card__title { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.article-card__excerpt { font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.article-card__meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* --- Article Content --- */
.article-hero {
  background: var(--bg-light);
  padding: 3rem 0 0;
  border-bottom: 1px solid var(--border);
}

.article-hero .container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: end; }

.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.article-meta__category {
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.article-meta__date, .article-meta__read { font-size: 0.85rem; color: var(--text-muted); }

.article-hero__img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }

.article-content {
  padding: 2.5rem 0;
}

.article-content h2 { margin: 2rem 0 1rem; font-size: 1.4rem; }
.article-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; }
.article-content p { font-size: 1rem; line-height: 1.75; color: #2a3444; margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin-bottom: 1.25rem; }
.article-content li { line-height: 1.7; }

.article-content .highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.article-content .highlight-box p { color: var(--text); margin: 0; }

.article-sidebar {
  padding: 2.5rem 0;
  position: sticky;
  top: 80px;
}

.sidebar-widget {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h3 { font-size: 1rem; margin-bottom: 1rem; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(45,143,123,0.2);
  position: relative;
  padding-top: 2.5rem;
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__name { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pricing-card__price { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card__desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pricing-card__features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-card__features li.disabled::before { content: '✗'; color: var(--border); }
.pricing-card__features li.disabled { color: var(--text-muted); }

/* --- Contact / Forms --- */
.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row--full { grid-template-columns: 1fr; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-group { margin-bottom: 1rem; }

.form-success {
  display: none;
  background: #e8f5f2;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 0.4rem; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 3.5rem 0;
}

.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; }

/* --- Benefits Grid --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* --- Table --- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th { background: var(--text); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--bg-light); }

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo { color: #fff; margin-bottom: 0.75rem; }
.footer__brand .logo span { color: var(--accent); }
.footer__brand p { font-size: 0.88rem; line-height: 1.6; }

.footer__col h4 {
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; padding: 0; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.15s; }
.footer__col ul li a:hover { color: #fff; }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

/* --- Cookie Notice --- */
.cookie-notice {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  background: var(--text);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 999;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-notice__text { flex: 1; }
.cookie-notice__text a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .care-types-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-hero .container { grid-template-columns: 1fr; }
  .article-hero__img { height: 240px; border-radius: 12px; }
  .article-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .section { padding: 2.5rem 0; }
  .care-types-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .search-form__fields { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar .container { gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .filter-bar { flex-direction: column; }
  .filter-bar .form-group { width: 100%; min-width: unset; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .hamburger { display: flex; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.fw-bold { font-weight: 700; }
