/*
 * Hp PC mob – AKTIVNÍ CSS HOMEPAGE DO 900 PX.
 *
 * Při požadavku na Hp PC mob upravuj tento soubor a includes/homepage/mobile/.
 * Bez výslovného schválení neměň css/home.desktop.css ani desktopové PHP soubory.
 * Soubor nevyžaduje desktopové home.desktop.css a obsahuje přímo mobilní hodnoty.
 */
:root {
  --home-blue: #0b4f9f;
  --home-blue-dark: #07366d;
  --home-blue-soft: #eef6ff;
  --home-green: #1f8a4c;
  --home-text: #14213d;
  --home-muted: #64748b;
  --home-border: #dbe7f3;
  --home-soft: #f7fafc;
  --home-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}

.home-page main {
  overflow: hidden;
}

.home-hero {
  background: radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.14), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(219, 234, 254, 0.58), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 78%);
  padding: 44px 0 26px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--home-text);
  font-size: clamp(34px, 10vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #34445e;
  font-size: 17px;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: #fff;
  color: #263b55;
  font-weight: 800;
  font-size: 14px;
  width: 100%;
  justify-content: flex-start;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 12px 24px rgba(11,79,159,.22);
}

.btn-primary:hover {
  background: var(--home-blue-dark);
}

.btn-outline {
  color: var(--home-blue);
  background: #fff;
  border-color: rgba(11,79,159,.28);
}

.btn-outline:hover {
  background: var(--home-blue-soft);
}

.microcopy {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-call-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dbe7f5;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.card-label {
  margin: 0 0 10px;
  color: var(--home-muted);
  font-weight: 800;
}

.hero-call-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.hero-phone {
  display: block;
  color: var(--home-blue);
  font-size: 24px;
  font-weight: 950;
  text-decoration: none;
  margin-bottom: 20px;
}

.hero-phone:hover {
  color: var(--home-blue-dark);
}

.hero-call-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-call-card li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  line-height: 1.55;
}

.hero-call-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--home-green);
  font-weight: 900;
}

.card-note {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--home-blue-soft);
  color: var(--home-blue-dark);
  font-weight: 800;
}

.trust-strip {
  padding: 18px 0 36px;
  background: #fff;
  padding-bottom: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trust-grid div {
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: #fff;
}

.icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--home-blue-soft);
  color: var(--home-blue);
  font-weight: 900;
}

.icon.green {
  color: var(--home-green);
  background: linear-gradient(180deg, #effaf4 0%, #e8f6ef 100%);
  border-color: rgba(30,146,89,.12);
}

.tile-icon.green {
  color: var(--home-green);
  background: linear-gradient(180deg, #effaf4 0%, #e8f6ef 100%);
  border-color: rgba(30,146,89,.12);
}

.trust-grid strong {
  display: block;
  font-size: 15px;
}

.trust-grid small {
  display: block;
  margin-top: 4px;
  color: var(--home-muted);
  line-height: 1.35;
}

.home-section {
  padding: 54px 0;
  background: #fff;
}

.home-section.soft {
  background: var(--home-soft);
}

.section-head {
  max-width: 760px;
  margin: 0 0 34px;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-tile {
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.audience-grid article {
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.process-grid article {
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.work-card {
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-tile {
  display: flex;
  flex-direction: column;
  padding: 21px;
  color: inherit;
  text-decoration: none;
}

.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
  border-color: rgba(11,79,159,.22);
}

.audience-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
  border-color: rgba(11,79,159,.22);
}

.process-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
  border-color: rgba(11,79,159,.22);
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
  border-color: rgba(11,79,159,.22);
}

.tile-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4fb 100%);
  border: 1px solid rgba(11,79,159,.08);
  color: #235ea6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  flex-shrink: 0;
}

.tile-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-icon-care {
  color: #1b7f74;
  background: linear-gradient(180deg, #f0faf8 0%, #e8f6f3 100%);
  border-color: rgba(27,127,116,.12);
}

.service-tile h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.audience-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.work-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-tile p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.audience-grid p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.process-grid p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.work-card p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.service-tile > span:last-child {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--home-blue);
  font-weight: 900;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.audience-grid article {
  padding: 21px;
}

.price-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 22px;
  border: 1px solid rgba(11,79,159,.16);
  border-radius: 24px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 60%);
  box-shadow: var(--home-shadow);
}

.price-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.price-copy p {
  color: #3b4c65;
  line-height: 1.75;
  font-size: 17px;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0;
}

.included-list div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.price-cta {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.price-cta h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.price-cta p {
  color: var(--home-muted);
  line-height: 1.65;
}

.price-cta .btn {
  width: 100%;
  margin-top: 10px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.work-card {
  overflow: hidden;
}

.work-card h3 {
  padding-left: 22px;
  padding-right: 22px;
}

.work-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.work-card h3 {
  padding-top: 20px;
}

.work-card p {
  padding-bottom: 24px;
}

.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e2e8f0;
}

.work-images img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.process-grid article {
  padding: 21px;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--home-blue);
  color: #fff;
  font-weight: 900;
}

.narrow {
  max-width: 850px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 18px;
  border: 0;
  background: #fff;
  color: var(--home-text);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--home-blue);
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--home-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 54px 0 72px;
  background: linear-gradient(135deg, var(--home-blue-dark), var(--home-blue));
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
}

.final-cta p {
  max-width: 730px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  font-size: 18px;
}

.centered-actions {
  justify-content: center;
  margin-top: 28px;
}

.btn-light {
  color: var(--home-blue-dark);
  background: #fff;
}

.btn-light-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.55);
}

.final-note {
  font-size: 14px !important;
  opacity: .92;
}

.partners-compact {
  padding: 46px 0;
  background: #fff;
}

.partners-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.partners-inner h2 {
  margin: 0;
  font-size: 28px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-logos img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  background: #fff;
}

.mobile-bottom-cta {
  display: grid;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(15,23,42,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10020;
  background: rgba(15, 23, 42, .42);
  opacity: 0;
  transition: opacity .18s ease;
}

.home-popup-backdrop.is-open {
  opacity: 1;
}

.home-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10021;
  width: min(94vw, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  transform: translate(-50%, -48%) scale(.98);
  opacity: 0;
  padding: 22px;
  border: 1px solid rgba(219, 231, 243, .95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .26);
  transition: opacity .18s ease, transform .18s ease;
}

.home-popup.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-popup-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 999px;
  background: #fff;
  color: var(--home-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.home-popup-close:hover {
  background: var(--home-blue-soft);
}

.home-popup-kicker {
  margin: 0 0 10px;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-popup h2 {
  margin: 0 34px 12px 0;
  color: var(--home-text);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-right: 40px;
}

.home-popup p {
  margin: 0 0 18px;
  color: #40516a;
  line-height: 1.65;
}

.home-popup-actions {
  display: grid;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  grid-template-columns: 1fr;
}

.home-popup-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.home-popup-btn-primary {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 12px 24px rgba(11,79,159,.18);
}

.home-popup-btn-outline {
  color: var(--home-blue);
  background: #fff;
  border-color: rgba(11,79,159,.28);
}

.home-popup-btn-whatsapp {
  color: #fff;
  background: #1f8a4c;
}

.home-popup-btn-ghost {
  color: var(--home-blue);
  background: var(--home-blue-soft);
}

.home-feedback-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0 16px;
}

.home-feedback-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--home-border);
  border-radius: 15px;
  background: #fff;
  color: var(--home-text);
  font-weight: 850;
  cursor: pointer;
}

.home-feedback-options label:hover {
  border-color: rgba(11,79,159,.35);
  background: var(--home-blue-soft);
}

.home-feedback-message {
  display: grid;
  gap: 8px;
  color: var(--home-text);
  font-weight: 900;
}

.home-feedback-message span {
  color: var(--home-muted);
  font-weight: 700;
}

.home-feedback-message textarea {
  width: 100%;
  min-height: 94px;
  resize: vertical;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--home-text);
  font: inherit;
}

.home-feedback-message textarea:focus {
  outline: 3px solid rgba(11,79,159,.14);
  border-color: rgba(11,79,159,.45);
}

.home-popup-actions-submit {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
}

.home-feedback-status {
  min-height: 22px;
  margin: 12px 0 0 !important;
  color: var(--home-green) !important;
  font-weight: 850;
}

html.home-popup-open {
  overflow: hidden;
}

.hero-actions .btn {
  width: 100%;
}

.centered-actions .btn {
  width: 100%;
}

.mobile-bottom-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.mobile-call {
  background: var(--home-blue);
  color: #fff;
}

.mobile-request {
  background: #fff;
  color: var(--home-blue);
  border: 1px solid var(--home-blue);
}

body.home-page {
  padding-bottom: 78px;
}

.home-desktop-only {
  display: none !important;
}

.home-variant--desktop {
  display: none !important;
}

/* =========================================================
   Hp PC mob – Co potřebujete vyklidit? (Patch 260)
   Samostatné mobilní vykreslení. HP PC je v home.desktop.css.
   ========================================================= */
.hp-pc-mob-services {
  padding: 54px 0 58px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.hp-pc-mob-services-head {
  margin: 0 0 26px;
}
.hp-pc-mob-services-eyebrow {
  margin: 0 0 10px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hp-pc-mob-services-head h2 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(30px, 8.6vw, 38px);
  line-height: 1.06;
  letter-spacing: -.038em;
}
.hp-pc-mob-services-head > p:last-child {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.68;
}
.hp-pc-mob-services-list {
  display: grid;
  gap: 12px;
}
.hp-pc-mob-service-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(15,23,42,.045);
}
.hp-pc-mob-service-card:focus-visible {
  outline: 3px solid rgba(11,79,159,.20);
  outline-offset: 3px;
}
.hp-pc-mob-service-card .hp-services-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  border: 1px solid rgba(11,79,159,.10);
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4fc 100%);
  color: #235ea6;
}
.hp-pc-mob-service-card .hp-services-icon--care {
  color: #18786e;
  border-color: rgba(24,120,110,.13);
  background: linear-gradient(180deg, #f0faf8 0%, #e8f6f3 100%);
}
.hp-pc-mob-service-card .hp-services-icon--green {
  color: var(--home-green);
  border-color: rgba(31,138,76,.13);
  background: linear-gradient(180deg, #effaf4 0%, #e8f6ef 100%);
}
.hp-pc-mob-service-card .hp-services-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-pc-mob-service-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.hp-pc-mob-service-copy strong {
  color: var(--home-text);
  font-size: 17px;
  line-height: 1.25;
}
.hp-pc-mob-service-copy > span {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.48;
}
.hp-pc-mob-service-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--home-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-pc-mob-services-cta {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(11,79,159,.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.hp-pc-mob-services-cta strong {
  color: var(--home-text);
  font-size: 19px;
  line-height: 1.28;
}
.hp-pc-mob-services-cta > span {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
}
.hp-pc-mob-services-cta a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 11px 23px rgba(11,79,159,.20);
}

/* =========================================================
   Hp PC mob – Komu pomáháme s vyklízením? (Patch 261)
   Samostatné mobilní zobrazení. HP PC je v home.desktop.css.
   ========================================================= */
.hp-pc-mob-audiences {
  padding: 50px 0 48px;
  background: #fff;
  border-top: 1px solid rgba(11,79,159,.09);
}
.hp-pc-mob-audiences-head {
  margin: 0 0 25px;
}
.hp-pc-mob-audiences-eyebrow {
  margin: 0 0 10px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hp-pc-mob-audiences-head h2 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(30px, 8.5vw, 38px);
  line-height: 1.07;
  letter-spacing: -.038em;
}
.hp-pc-mob-audiences-head > p:last-child {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.67;
}
.hp-pc-mob-audiences-list {
  display: grid;
  gap: 12px;
}
.hp-pc-mob-audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 118px;
  padding: 17px 16px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 9px 22px rgba(15,23,42,.045);
}
.hp-pc-mob-audience-number {
  position: absolute;
  top: 11px;
  right: 13px;
  color: rgba(11,79,159,.20);
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}
.hp-pc-mob-audience-card .hp-audiences-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(11,79,159,.11);
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4fc 100%);
  color: #235ea6;
}
.hp-pc-mob-audience-card .hp-audiences-icon svg {
  width: 25px;
  height: 25px;
}
.hp-pc-mob-audience-card .hp-audiences-icon--care {
  color: #18786e;
  border-color: rgba(24,120,110,.13);
  background: linear-gradient(180deg, #f0faf8 0%, #e8f6f3 100%);
}
.hp-pc-mob-audience-card .hp-audiences-icon--business {
  color: #7152a2;
  border-color: rgba(113,82,162,.13);
  background: linear-gradient(180deg, #f8f4ff 0%, #f2edfb 100%);
}
.hp-pc-mob-audience-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 16px;
}
.hp-pc-mob-audience-copy strong {
  color: var(--home-text);
  font-size: 17px;
  line-height: 1.28;
}
.hp-pc-mob-audience-copy > span {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   Hp PC mob – společné kotvy samostatně rozdělených sekcí (Patch 264)
   Vizuální obsah je v includes/homepage/mobile/.
   ========================================================= */
.home-section-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  scroll-margin-top: 82px;
}
