:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --ink: #17201d;
  --muted: #5b6963;
  --line: #dbe2dd;
  --brand: #216f56;
  --brand-dark: #154c3d;
  --accent: #f2b84b;
  --accent-dark: #b87512;
  --danger: #b3261e;
  --shadow: 0 14px 34px rgba(23, 32, 29, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: var(--accent);
  border: 2px solid var(--brand-dark);
  border-radius: 8px;
  font-weight: 900;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.main-nav {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.main-nav.is-open {
  display: grid;
  gap: 10px;
}

.main-nav a {
  padding: 10px 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.header-phone {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: var(--surface);
  color: var(--brand-dark);
  border-color: var(--brand);
}

.button.secondary:hover {
  background: var(--surface-soft);
}

.button.accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.button.accent:hover {
  background: #e8a92e;
}

.hero {
  padding: 36px 0 24px;
  background:
    linear-gradient(135deg, rgba(33, 111, 86, 0.12), rgba(242, 184, 75, 0.2)),
    var(--bg);
}

.hero-grid,
.split {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2rem, 9vw, 4.35rem);
}

h2 {
  font-size: clamp(1.65rem, 5vw, 2.7rem);
}

h3 {
  font-size: 1.12rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-copy .lead {
  margin-top: 18px;
}

.claim-box {
  margin-top: 20px;
  padding: 16px;
  border-left: 5px solid var(--accent);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  font-weight: 800;
}

.trust-list,
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.trust-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.lead-form {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form h2,
.lead-form h3 {
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 750;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c7d0ca;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 184, 75, 0.45);
  border-color: var(--brand);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.88rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}

.field.has-error .field-error {
  display: block;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  padding: 48px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card,
.price-card,
.faq-item,
.article-card,
.contact-panel {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card p,
.price-card p,
.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.band {
  background: var(--surface-soft);
}

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.price-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.price {
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff4d6;
  color: #6f4700;
  font-size: 0.82rem;
  font-weight: 800;
}

.steps {
  counter-reset: step;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.step {
  position: relative;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.feature-panel {
  padding: 24px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
}

.feature-panel .lead,
.feature-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.mascot {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mascot img {
  width: 180px;
  margin: 0 auto;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

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

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

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

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), #2f7c61);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.86);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.page-hero {
  padding: 46px 0 30px;
  background: var(--surface-soft);
}

.content {
  max-width: 820px;
}

.content p,
.content li {
  color: var(--muted);
}

.content h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.content h3 {
  margin-top: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 2px dashed #b9c6bf;
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.article-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 36px 0;
  background: #13231d;
  color: #fff;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer a {
  color: #fff4d6;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
  }

  .form-grid.two,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field.full {
    grid-column: 1 / -1;
  }

  .mascot {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .main-nav a {
    padding: 8px;
    font-size: 0.95rem;
  }

  .header-phone {
    display: inline-flex;
  }
}

/* Brouzdej.net brand polish: original red/orange mascot, warm yellow accents, blue signal detail. */
:root {
  --bg: #fff8ed;
  --surface: #ffffff;
  --surface-soft: #fff0dd;
  --ink: #241b16;
  --muted: #665a52;
  --line: #ead8c2;
  --brand: #e62705;
  --brand-dark: #9f260e;
  --brand-deep: #45180f;
  --support: #159456;
  --support-soft: #eff9f2;
  --accent: #ffc32e;
  --accent-dark: #d98200;
  --shadow: 0 18px 42px rgba(113, 46, 20, 0.14);
  --shadow-strong: 0 26px 68px rgba(113, 46, 20, 0.2);
  --radius: 12px;
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 195, 46, 0.18), transparent 29rem),
    linear-gradient(180deg, #fffaf1 0%, var(--bg) 25rem, #fff 100%);
}

a {
  color: var(--brand-dark);
}

.site-header {
  background: rgba(255, 250, 241, 0.95);
}

.brand {
  gap: 11px;
  font-size: 1.18rem;
  font-weight: 900;
}

.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: transparent;
  background: #fff;
  border: 2px solid rgba(230, 39, 5, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(230, 39, 5, 0.16);
  text-indent: -999px;
}

.brand-mark::before {
  width: 42px;
  height: 42px;
  display: block;
  content: "";
  background: url("../img/brouzdejak.png") center 45% / 80% auto no-repeat;
}

.nav-toggle,
.button,
input,
select,
textarea,
.claim-box,
.card,
.price-card,
.faq-item,
.article-card,
.contact-panel,
.feature-panel,
.mascot,
.map-placeholder {
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.button {
  border-radius: 10px;
  background: linear-gradient(180deg, #f23a13, var(--brand));
  box-shadow: 0 12px 24px rgba(230, 39, 5, 0.22);
}

.button:hover {
  background: linear-gradient(180deg, var(--brand), #b52b10);
}

.button.secondary {
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}

.button.secondary:hover {
  background: #fff0dd;
}

.button.accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(217, 130, 0, 0.24);
}

.button.accent:hover {
  background: #f4ad14;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 30px;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.97), rgba(255, 248, 237, 0.8)),
    linear-gradient(135deg, rgba(230, 39, 5, 0.08), rgba(255, 195, 46, 0.28)),
    var(--bg);
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 35rem;
  height: 35rem;
  content: "";
  border-radius: 50%;
  background: rgba(230, 39, 5, 0.07);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--brand);
}

h1 {
  max-width: 780px;
  font-size: 2.15rem;
  font-weight: 900;
}

h2 {
  font-size: 1.9rem;
}

.lead {
  font-size: 1.08rem;
}

.claim-box {
  border-left-color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(113, 46, 20, 0.08);
}

.trust-list li::before,
.check-list li::before {
  content: "\2713";
  background: #159456;
}

.hero-mascot {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 560px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(230, 39, 5, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(113, 46, 20, 0.1);
}

.hero-mascot img {
  width: 74px;
  align-self: end;
  filter: drop-shadow(0 9px 10px rgba(141, 34, 15, 0.22));
}

.hero-mascot p {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 750;
  line-height: 1.45;
}

.lead-form {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(230, 39, 5, 0.18);
  border-top: 6px solid var(--brand);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
}

.lead-form::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 62px;
  height: 62px;
  content: "";
  border-radius: 50%;
  background: var(--support-soft);
  box-shadow: inset 0 0 0 1px rgba(21, 148, 86, 0.22);
}

.lead-form::after {
  position: absolute;
  top: 33px;
  right: 31px;
  content: "\2713";
  color: var(--support);
  font-size: 1.5rem;
  font-weight: 900;
}

.trust-strip {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(230, 39, 5, 0.12);
  border-bottom: 1px solid rgba(230, 39, 5, 0.12);
}

.trust-strip-inner {
  display: grid;
  gap: 16px;
}

.trust-copy {
  max-width: 860px;
  margin: 0;
  color: var(--brand-deep);
  font-size: 1rem;
  font-weight: 760;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.trust-item {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(230, 39, 5, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf8, #fff7e8);
}

.trust-item strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.infrastructure-section {
  padding: 24px 0 10px;
  background: #fff;
}

.infrastructure-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  border-left: 5px solid var(--brand);
  background:
    linear-gradient(135deg, rgba(255, 195, 46, 0.14), rgba(230, 39, 5, 0.05)),
    #fff;
  box-shadow: 0 16px 32px rgba(113, 46, 20, 0.08);
}

.infrastructure-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.infrastructure-panel p {
  margin-bottom: 0;
}

@media (min-width: 760px) {
  .infrastructure-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.business-hero {
  padding: 24px 0 14px;
}

.business-hero-grid {
  gap: 18px;
  align-items: start;
}

.business-hero h1 {
  max-width: 620px;
}

.business-hero .lead {
  margin: 14px 0 0;
}

.business-impact {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--brand-deep);
  font-weight: 760;
  line-height: 1.55;
}

.business-checks {
  margin-top: 14px;
}

.backup-badge {
  display: inline-grid;
  gap: 2px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(230, 39, 5, 0.2);
  border-left: 5px solid var(--brand);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(113, 46, 20, 0.08);
}

.backup-badge strong {
  color: var(--brand-dark);
  line-height: 1.2;
}

.backup-badge span {
  color: var(--ink);
  font-weight: 760;
}

.business-form {
  padding: 18px;
}

.business-form::before,
.business-form::after {
  display: none;
}

.business-form h2,
.business-form h3 {
  max-width: none;
}

.business-form .form-grid {
  gap: 8px;
  margin-top: 10px;
}

.business-form input,
.business-form select,
.business-form textarea {
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.business-form textarea {
  min-height: 56px;
}

.business-form .button {
  width: 100%;
  margin-top: 2px;
}

.business-trust-strip {
  padding: 8px 0;
}

.business-trust-strip .trust-strip-inner {
  gap: 10px;
}

.business-trust-strip .trust-copy {
  font-size: 0.95rem;
}

.business-trust-strip .trust-item {
  min-height: 58px;
  padding: 9px 10px;
}

.business-solutions {
  padding-top: 38px;
}

.business-cards {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.business-card {
  position: relative;
  min-height: 166px;
  border-color: rgba(230, 39, 5, 0.14);
}

.business-card h3 {
  color: var(--brand-deep);
}

.business-card.featured {
  border-color: rgba(230, 39, 5, 0.32);
  background:
    linear-gradient(180deg, #fffdf8, #fff2d1);
}

.business-card.featured::before {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 8px;
  content: "hlavní firemní produkt";
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
}

.coverage-hero .lead {
  max-width: 860px;
}

.coverage-section {
  background:
    linear-gradient(180deg, #fff, #fff8ed);
}

.coverage-layout {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.coverage-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(230, 39, 5, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 25% 28%, rgba(255, 195, 46, 0.45), transparent 8rem),
    radial-gradient(circle at 72% 34%, rgba(230, 39, 5, 0.16), transparent 9rem),
    radial-gradient(circle at 50% 76%, rgba(21, 148, 86, 0.14), transparent 8rem),
    linear-gradient(135deg, #fffdf8, #fff0dd);
  box-shadow: var(--shadow);
}

.coverage-map::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 2px solid rgba(230, 39, 5, 0.1);
  border-radius: 42% 58% 50% 48% / 45% 42% 58% 55%;
  transform: rotate(-7deg);
}

.coverage-map::after {
  position: absolute;
  inset: 62px 42px 54px;
  content: "";
  border: 1px dashed rgba(159, 38, 14, 0.25);
  border-radius: 55% 45% 48% 52% / 50% 57% 43% 50%;
  transform: rotate(8deg);
}

.coverage-map-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 260px;
  display: block;
}

.map-land {
  fill: #fffaf1;
  stroke: rgba(69, 24, 15, 0.34);
  stroke-width: 3;
  filter: drop-shadow(0 18px 24px rgba(113, 46, 20, 0.12));
}

.map-line {
  fill: none;
  stroke: rgba(159, 38, 14, 0.18);
  stroke-width: 1.6;
  stroke-dasharray: 8 9;
}

.map-region {
  stroke: rgba(230, 39, 5, 0.34);
  stroke-width: 2;
}

.region-prague {
  fill: rgba(230, 39, 5, 0.22);
}

.region-west {
  fill: rgba(255, 195, 46, 0.36);
}

.region-south {
  fill: rgba(21, 148, 86, 0.2);
}

.region-north {
  fill: rgba(230, 39, 5, 0.16);
}

.map-label {
  fill: var(--brand-deep);
  font-size: 17px;
  font-weight: 850;
  paint-order: stroke;
  stroke: rgba(255, 250, 241, 0.92);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.coverage-network {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coverage-network::before,
.coverage-network::after {
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(230, 39, 5, 0.28), rgba(255, 195, 46, 0.45), transparent);
  transform-origin: center;
}

.coverage-network::before {
  top: 42%;
  left: 14%;
  width: 72%;
  transform: rotate(18deg);
}

.coverage-network::after {
  top: 58%;
  left: 18%;
  width: 66%;
  transform: rotate(-16deg);
}

.coverage-network span {
  position: absolute;
  width: 74px;
  height: 38px;
  border: 0;
  border-radius: 50% 42% 55% 45%;
  background: var(--brand);
  filter: blur(1px);
  opacity: 0.2;
}

.coverage-network span:nth-child(1) { top: 24%; left: 24%; }
.coverage-network span:nth-child(2) { top: 34%; left: 64%; background: var(--accent); }
.coverage-network span:nth-child(3) { top: 53%; left: 42%; background: var(--support); }
.coverage-network span:nth-child(4) { top: 68%; left: 72%; }
.coverage-network span:nth-child(5) { top: 72%; left: 24%; background: var(--accent); }
.coverage-network span:nth-child(6) { top: 18%; left: 78%; background: var(--support); }

.coverage-map-copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-top: -10px;
  padding: 18px;
  border: 1px solid rgba(230, 39, 5, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(113, 46, 20, 0.1);
}

.coverage-map-copy h2 {
  font-size: 1.45rem;
}

.coverage-map-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage-check {
  padding: 22px;
  border: 1px solid rgba(230, 39, 5, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(113, 46, 20, 0.07);
}

.coverage-check h2 {
  font-size: 1.55rem;
}

.coverage-area-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.coverage-area-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(230, 39, 5, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #fff8ed);
  box-shadow: 0 10px 26px rgba(113, 46, 20, 0.07);
}

.coverage-area-card::before {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  content: "\2713";
  border-radius: 50%;
  background: var(--support);
  color: #fff;
  font-weight: 900;
}

.coverage-area-card h3 {
  color: var(--brand-deep);
}

.coverage-area-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage-area-card p + p {
  margin-top: 10px;
}

.coverage-proof-strip {
  padding: 16px 0;
  background: #fff;
  border-top: 1px solid rgba(230, 39, 5, 0.12);
  border-bottom: 1px solid rgba(230, 39, 5, 0.12);
}

.coverage-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.coverage-proof-card {
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(230, 39, 5, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #fff7e8);
}

.coverage-proof-card strong {
  color: var(--brand-dark);
  line-height: 1.25;
}

.coverage-top-cta {
  padding: 16px 0;
  background:
    linear-gradient(135deg, rgba(69, 24, 15, 0.96), rgba(230, 39, 5, 0.9)),
    var(--brand);
  color: #fff;
}

.coverage-top-cta-inner {
  display: grid;
  gap: 14px;
  align-items: center;
}

.coverage-top-cta p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
}

.coverage-top-cta .button {
  width: fit-content;
}

.coverage-regions {
  scroll-margin-top: 92px;
}

.coverage-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  padding-top: 4px;
}

.coverage-region-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 245px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(230, 39, 5, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #fff8ed);
  box-shadow: 0 10px 26px rgba(113, 46, 20, 0.07);
}

.coverage-region-card::after {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  content: "";
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0.78;
}

.coverage-region-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1bf;
  color: var(--brand);
}

.coverage-region-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coverage-region-card h3 {
  color: var(--brand-deep);
}

.coverage-region-card p {
  margin: 0;
  color: var(--muted);
}

.coverage-region-card a {
  align-self: end;
  width: fit-content;
  margin-top: 4px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.coverage-region-card a::after {
  content: " \2192";
}

.coverage-area-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.coverage-places {
  color: var(--ink) !important;
  font-weight: 650;
}

.coverage-area-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.coverage-area-card a {
  align-self: end;
  margin-top: 6px;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}

.coverage-area-card a::after {
  content: " \2192";
}

.coverage-why-section .coverage-check {
  background: #fffdf8;
}

.coverage-why-section h2 {
  max-width: 680px;
}

.coverage-why-section .lead {
  max-width: 760px;
}

.coverage-map-section {
  background: #fff;
}

.coverage-map-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.coverage-region-graphic {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(230, 39, 5, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 25%, rgba(255, 195, 46, 0.4), transparent 8rem),
    radial-gradient(circle at 74% 36%, rgba(230, 39, 5, 0.16), transparent 9rem),
    radial-gradient(circle at 48% 78%, rgba(21, 148, 86, 0.16), transparent 8rem),
    linear-gradient(135deg, #fffdf8, #fff0dd);
  box-shadow: var(--shadow);
}

.coverage-region-shape {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.75;
  border: 2px solid rgba(69, 24, 15, 0.32);
  border-radius: 42% 58% 50% 48% / 45% 42% 58% 55%;
  background:
    radial-gradient(ellipse at 36% 56%, rgba(230, 39, 5, 0.23), transparent 22%),
    radial-gradient(ellipse at 27% 50%, rgba(255, 195, 46, 0.36), transparent 21%),
    radial-gradient(ellipse at 52% 76%, rgba(21, 148, 86, 0.2), transparent 22%),
    radial-gradient(ellipse at 70% 30%, rgba(230, 39, 5, 0.17), transparent 18%),
    #fffaf1;
  box-shadow: 0 18px 24px rgba(113, 46, 20, 0.12);
  transform: rotate(-3deg);
}

.coverage-region-shape::before,
.coverage-region-shape::after {
  position: absolute;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.coverage-region-shape::before {
  inset: 8%;
  border: 1px dashed rgba(159, 38, 14, 0.2);
}

.coverage-region-shape::after {
  top: 52%;
  left: 10%;
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(159, 38, 14, 0.18), transparent);
  transform: rotate(12deg);
}

.coverage-region-shape span {
  position: absolute;
  max-width: 120px;
  padding: 5px 8px;
  border: 1px solid rgba(230, 39, 5, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  transform: rotate(3deg);
  box-shadow: 0 8px 18px rgba(113, 46, 20, 0.08);
}

.coverage-region-shape span:nth-child(1) { top: 49%; left: 39%; }
.coverage-region-shape span:nth-child(2) { top: 43%; left: 20%; }
.coverage-region-shape span:nth-child(3) { top: 72%; left: 43%; }
.coverage-region-shape span:nth-child(4) { top: 22%; left: 67%; }
.coverage-region-shape span:nth-child(5) { top: 57%; left: 26%; }

.coverage-map-note {
  padding: 14px 16px;
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--brand-deep);
  font-weight: 800;
}

.coverage-form-section {
  background:
    linear-gradient(180deg, #fff8ed, #fff);
  scroll-margin-top: 92px;
}

.coverage-form-wrap {
  display: grid;
  gap: 24px;
  align-items: start;
}

.coverage-lead-form .button {
  width: 100%;
  min-height: 52px;
}

.coverage-lead-form h2 {
  font-size: 1.55rem;
}

.coverage-form-wrap-strong {
  padding: 28px;
  border: 1px solid rgba(230, 39, 5, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 241, 191, 0.42)),
    #fffdf8;
  box-shadow: var(--shadow);
}

.coverage-form-support {
  display: grid;
  gap: 2px;
  max-width: 520px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 5px solid var(--support);
  border-radius: var(--radius);
  background: var(--support-soft);
}

.coverage-form-support strong {
  color: var(--brand-deep);
}

.coverage-form-support span {
  color: var(--muted);
}

.coverage-final-form {
  margin: 0;
  border-top-width: 8px;
}

.lead-form h2,
.lead-form h3 {
  position: relative;
  max-width: calc(100% - 76px);
}

input,
select,
textarea {
  border-color: #decab2;
  border-radius: 10px;
  background: #fffdf8;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--brand);
}

section {
  padding: 54px 0;
}

.card,
.price-card,
.article-card,
.contact-panel,
.step,
.table-wrap {
  box-shadow: 0 10px 26px rgba(113, 46, 20, 0.07);
}

.card,
.price-card,
.article-card,
.contact-panel {
  padding: 22px;
}

.icon {
  border-radius: 12px;
  background: #fff1bf;
  color: var(--brand);
}

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

.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 244, 224, 0.82)),
    var(--surface-soft);
}

.price {
  color: var(--brand);
}

.tag {
  background: #fff1bf;
  color: #7c2a0d;
}

.feature-panel {
  background:
    linear-gradient(135deg, rgba(75, 28, 19, 0.96), rgba(141, 34, 15, 0.94)),
    var(--brand-deep);
  box-shadow: var(--shadow);
}

.mascot {
  box-shadow: var(--shadow);
}

.mascot img {
  width: 170px;
  filter: drop-shadow(0 16px 18px rgba(141, 34, 15, 0.2));
}

.faq-question::after {
  color: var(--brand);
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(75, 28, 19, 0.96), rgba(230, 39, 5, 0.9)),
    var(--brand);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(255, 195, 46, 0.18), rgba(230, 39, 5, 0.07)),
    var(--surface-soft);
}

.map-placeholder {
  border-color: #e3b486;
}

.site-footer {
  background: #3a180f;
}

.site-footer a {
  color: #ffe29a;
}

@media (min-width: 760px) {
  .hero {
    padding: 66px 0 48px;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .business-hero {
    padding: 24px 0 8px;
  }

  .business-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  }

  .business-hero h1 {
    font-size: 2.72rem;
  }

  .business-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    align-items: stretch;
  }

  .coverage-map-layout,
  .coverage-form-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }
}

@media (max-width: 520px) {
  .hero-mascot {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-mascot img {
    width: 58px;
  }

  .lead-form::before,
  .lead-form::after {
    display: none;
  }

  .lead-form h2,
  .lead-form h3 {
    max-width: none;
  }

  .business-hero {
    padding: 24px 0 18px;
  }

  .business-hero h1 {
    font-size: 2.125rem;
  }

  .backup-badge {
    display: grid;
  }

  .coverage-map {
    min-height: 320px;
    padding: 16px;
  }

  .coverage-map-copy {
    margin-top: -6px;
    padding: 16px;
  }

  .coverage-region-graphic {
    min-height: 280px;
    padding: 14px;
  }

  .coverage-region-shape span {
    max-width: 94px;
    font-size: 0.7rem;
  }

  .coverage-form-wrap-strong {
    padding: 14px;
  }

  .coverage-final-form {
    width: 100%;
    padding: 16px;
  }
}

/* Header logo refinement: keep the navigation calm and make the wordmark the brand anchor. */
.site-header .brand {
  min-height: 44px;
  gap: 0;
  color: var(--brand-deep);
  font-size: 1.38rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.site-header .brand:hover {
  color: var(--brand);
}

.site-header .brand-mark {
  display: none;
}

.site-header .brand span:not(.brand-mark) {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
}

.site-header .brand span:not(.brand-mark)::after {
  display: none;
}

@media (max-width: 520px) {
  .site-header .brand {
    min-height: 38px;
    font-size: 1.16rem;
  }

  .site-header .brand span:not(.brand-mark) {
    min-height: 34px;
  }

  .site-header .brand span:not(.brand-mark)::after {
    display: none;
  }
}

@media (max-width: 979px) {
  .header-phone {
    display: none !important;
  }

  .business-hero-grid {
    grid-template-columns: 1fr;
  }

  .business-hero h1 {
    font-size: clamp(2.125rem, 5vw, 2.45rem);
  }

  .business-form {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .coverage-top-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .trust-strip-inner {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
  }
}

@media (min-width: 980px) {
  .business-trust-strip .trust-strip-inner {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }

  .business-trust-strip .trust-strip-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
}

/* Homepage conversion polish */
.home-hero {
  padding: 30px 0 24px;
}

.home-hero-grid {
  gap: 28px;
  align-items: center;
}

.home-hero .hero-copy {
  max-width: 680px;
}

.home-hero h1 {
  max-width: 700px;
  font-size: clamp(2.125rem, 6vw, 3.35rem);
}

.home-hero .lead {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--brand-deep);
  font-size: 1.16rem;
  font-weight: 760;
}

.home-hero .hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 650px;
  margin: 12px 0 0;
}

.home-claim {
  max-width: 620px;
  margin-top: 16px;
  padding: 14px 16px;
}

.home-hero .trust-list {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.home-hero .hero-mascot {
  margin-top: 16px;
}

.home-lead-form {
  align-self: start;
  padding: 20px;
  background:
    linear-gradient(180deg, #fff, #fffaf1);
}

.home-lead-form h2 {
  max-width: calc(100% - 76px);
  font-size: 1.55rem;
}

.home-lead-form .form-note:first-of-type {
  max-width: 360px;
  color: var(--brand-deep);
  font-weight: 700;
}

.home-lead-form .button {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  font-size: 1rem;
}

.home-lead-form .form-grid {
  gap: 10px;
}

.home-lead-form input,
.home-lead-form select,
.home-lead-form textarea {
  min-height: 44px;
}

.home-lead-form textarea {
  min-height: 68px;
}

.home-lead-form input:focus,
.home-lead-form select:focus,
.home-lead-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 195, 46, 0.28);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot input {
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  opacity: 0;
}

.home-trust-strip {
  background:
    linear-gradient(180deg, #fff, #fff8ed);
}

.home-trust-strip .trust-copy {
  padding-left: 14px;
  border-left: 5px solid var(--brand);
}

.home-trust-strip .trust-item {
  position: relative;
  min-height: 86px;
  padding-left: 46px;
}

.home-trust-strip .trust-item::before {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  content: "\2713";
  border-radius: 50%;
  background: var(--support);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.audience-section {
  background: #fff;
}

.audience-cards {
  gap: 18px;
}

.audience-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 245px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.audience-card:hover {
  border-color: rgba(230, 39, 5, 0.28);
  box-shadow: 0 18px 36px rgba(113, 46, 20, 0.12);
  transform: translateY(-3px);
}

.audience-card .icon {
  margin-bottom: 4px;
}

.audience-card a {
  align-self: end;
  margin-top: 4px;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}

.audience-card a::after {
  content: " \2192";
}

.device-strip {
  padding-top: 18px;
  padding-bottom: 34px;
}

.device-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  border-left: 5px solid var(--support);
  background:
    linear-gradient(180deg, #fff, #fffdf8);
}

.device-panel h2 {
  font-size: 1.55rem;
}

.device-panel p {
  margin-bottom: 0;
}

.service-note {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 760px) {
  .device-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.pricing-section {
  background:
    linear-gradient(180deg, #fff, #fff8ed);
}

.pricing-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}

.pricing-card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: rgba(230, 39, 5, 0.16);
}

.pricing-card.recommended {
  border-color: rgba(230, 39, 5, 0.34);
  background:
    linear-gradient(180deg, #fffdf8, #fff1bf);
  box-shadow: 0 24px 52px rgba(113, 46, 20, 0.15);
}

.pricing-card.recommended::before {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  content: "doporučená volba";
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card small {
  color: var(--muted);
  font-weight: 650;
}

.process-section {
  overflow: hidden;
}

.process-steps {
  position: relative;
  gap: 14px;
}

.process-steps .step {
  min-height: 190px;
}

.process-steps .step::before {
  box-shadow: 0 0 0 6px #fff4d6;
}

.proof-section {
  background: #fff;
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.proof-card {
  overflow: hidden;
  min-height: 190px;
  border: 1px dashed rgba(230, 39, 5, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fffdf8, #fff8ed);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.proof-card-content {
  padding: 22px;
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff1bf;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-card p {
  color: var(--muted);
}

.social-proof-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--support);
  border-radius: var(--radius);
  background: var(--support-soft);
}

.social-proof-note p {
  margin: 0;
  color: var(--muted);
}

.cottage-hero .lead {
  max-width: 860px;
}

.cottage-use-section {
  background: #fff;
}

.cottage-cards .card {
  min-height: 205px;
}

.faq-section {
  background:
    linear-gradient(180deg, #fff8ed, #fff);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-color: rgba(230, 39, 5, 0.14);
  box-shadow: 0 8px 22px rgba(113, 46, 20, 0.06);
}

.faq-question {
  min-height: 64px;
  padding: 18px 20px;
}

.faq-answer {
  padding: 0 20px 20px;
}

@media (min-width: 760px) {
  .home-hero {
    padding: 44px 0 30px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .home-lead-form {
    position: sticky;
    top: 88px;
  }

  .process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-steps::before {
    position: absolute;
    top: 37px;
    left: 8%;
    right: 8%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, rgba(230, 39, 5, 0.18), rgba(255, 195, 46, 0.7));
  }

  .process-steps .step {
    z-index: 1;
  }
}

@media (max-width: 979px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: clamp(2.125rem, 5vw, 2.45rem);
  }

  .home-lead-form {
    width: 100%;
  }

  .audience-cards,
  .pricing-section .price-grid,
  .process-steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .coverage-hero h1 {
    font-size: clamp(2.125rem, 5vw, 2.45rem);
  }

  .coverage-area-grid {
    grid-template-columns: 1fr;
  }

  .coverage-region-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map-layout,
  .coverage-form-wrap {
    grid-template-columns: 1fr;
  }

  .coverage-form-wrap-strong {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .home-lead-form {
    padding: 18px;
  }

  .home-hero .hero-mascot {
    display: none;
  }

  .home-hero .trust-list li {
    padding-left: 26px;
  }

  .audience-card,
  .pricing-card,
  .process-steps .step,
  .proof-card {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  body {
    overflow-x: hidden;
  }

  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 2.125rem;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .coverage-top-cta .button,
  .coverage-region-card a {
    width: 100%;
  }

  .hero-mascot {
    align-items: start;
  }
}

/* Blog polish */
.blog-hero .lead {
  max-width: 820px;
}

.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog-category-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(230, 39, 5, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}

.blog-category-nav a:hover {
  background: #fff1bf;
}

.blog-featured {
  background: #fff;
}

.blog-section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 244, 224, 0.82)),
    var(--surface-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-grid-featured {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-color: rgba(230, 39, 5, 0.14);
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.blog-card:hover {
  border-color: rgba(230, 39, 5, 0.3);
  box-shadow: 0 18px 38px rgba(113, 46, 20, 0.13);
  transform: translateY(-3px);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(230, 39, 5, 0.18), rgba(255, 195, 46, 0.38)),
    #fff8ed;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.article-card-meta span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff1bf;
  color: var(--brand-dark);
}

.blog-card h2 {
  font-size: 1.22rem;
  line-height: 1.25;
}

.blog-card h2 a,
.article-read-link {
  color: var(--brand-deep);
  text-decoration: none;
}

.article-read-link {
  width: fit-content;
  margin-top: 4px;
  font-weight: 900;
}

.article-read-link::after {
  content: " \2192";
}

.article-hero {
  padding: 36px 0 28px;
}

.article-hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.article-hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.35rem);
}

.article-hero-image {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border: 1px solid rgba(230, 39, 5, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-content {
  font-size: 1.06rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content a {
  font-weight: 800;
}

.article-note,
.article-cta,
.article-related {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(230, 39, 5, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fffdf8, #fff4d6);
  box-shadow: 0 10px 26px rgba(113, 46, 20, 0.07);
}

.article-note {
  border-left: 5px solid var(--accent);
  color: var(--brand-deep);
  font-weight: 850;
}

.article-related {
  border-left: 5px solid var(--accent);
}

.article-related h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.article-cta {
  border-top: 6px solid var(--brand);
}

.article-cta h2 {
  margin-top: 0;
  font-size: 1.65rem;
}

.article-cta p {
  color: var(--brand-deep);
  font-weight: 720;
}

.article-cta-extra {
  padding: 12px 14px;
  border-left: 5px solid var(--support);
  border-radius: 10px;
  background: var(--support-soft);
}

@media (min-width: 760px) {
  .article-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  }
}

@media (max-width: 520px) {
  .blog-grid,
  .blog-grid-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-body {
    padding: 16px;
  }

  .article-hero {
    padding-top: 30px;
  }

  .coverage-form-wrap-strong {
    padding: 14px;
  }

  .coverage-final-form {
    width: 100%;
    padding: 16px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Homepage úpravy (TV, hero rozdělení, piktogramy) — 2026-06
   ────────────────────────────────────────────────────────────────────────── */

/* Hero: podstatné (nadpis/lead/claim) zůstává nahoře, detaily (vedlejší text,
   trust-list, maskot) jdou na mobilu POD formulář, na desktopu vlevo dole. */
.hero-secondary {
  max-width: 650px;
  margin: 0 0 14px;
  color: var(--brand-deep);
}

.hero-extra .trust-list {
  margin-top: 0;
}

@media (min-width: 980px) {
  .home-hero-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }
  .home-hero-grid .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .home-hero-grid .hero-extra {
    grid-column: 1;
    grid-row: 2;
    margin-top: 8px;
  }
  .home-hero-grid .home-lead-form {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

/* Sekce „Internet i televize" */
.tv-section {
  background: linear-gradient(180deg, #fff, #fff8ed);
}

.tv-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px 20px;
  border-left: 5px solid var(--brand);
}

.tv-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff1bf;
  color: var(--brand);
}

.tv-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tv-copy h2 {
  margin: 2px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.tv-copy p {
  margin: 0;
  max-width: 64ch;
}

.tv-panel .button {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (min-width: 860px) {
  .tv-panel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
  .tv-panel .button {
    grid-column: auto;
    justify-self: end;
    white-space: nowrap;
  }
}

/* Odznáček „+ televizi" v ceníku */
.tv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff1bf;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

/* Ikony u variant v ceníku */
.price-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #fff1bf;
  color: var(--brand);
}

.price-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Piktogram v kroku „Jak to probíhá" — jemný symbol vpravo nahoře */
.process-steps .step {
  position: relative;
}

.step-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  color: var(--brand);
  opacity: 0.32;
  pointer-events: none;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
