
/* =========================================================
   KONTAKT STRÁNKA - JEDNODUCHÁ 2-STĹPCOVÁ VERZIA
   ========================================================= */

.zm-contact-page {
  padding: 90px 20px;
  background: #f5f7fb;
}

.zm-contact-page * {
  box-sizing: border-box;
}

.zm-contact-page__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.zm-contact-page__head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.zm-contact-page__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.1);
  color: #2f66d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.zm-contact-page__head h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #071426;
}

.zm-contact-page__head p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #536173;
}

/* GRID */

.zm-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.zm-contact-box {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(7, 20, 38, 0.08);
  box-shadow: 0 18px 45px rgba(7, 20, 38, 0.08);
}

.zm-contact-box--dark {
  background:
    radial-gradient(circle at top right, rgba(47, 102, 208, 0.32), transparent 36%),
    linear-gradient(135deg, #071426 0%, #10294d 100%);
  color: #ffffff;
}

.zm-contact-box h2 {
  margin: 0 0 14px;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #071426;
}

.zm-contact-box--dark h2 {
  color: #ffffff;
}

.zm-contact-box--dark > p {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* BUTTONS */

.zm-contact-buttons {
  display: grid;
  gap: 13px;
  max-width: 520px;
}

.zm-contact-btn {
  min-height: 62px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none !important;
  transition: 0.2s ease;
}

.zm-contact-btn span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zm-contact-btn span::before {
  font-family: "shoptet";
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.zm-contact-btn strong {
  overflow-wrap: anywhere;
}

.zm-contact-btn--call {
  background: #ffb000;
  color: #071426 !important;
  border: 2px solid #ffd36a;
  box-shadow: 0 14px 30px rgba(255, 176, 0, 0.26);
}

.zm-contact-btn--call span {
  background: rgba(7, 20, 38, 0.14);
}

.zm-contact-btn--call span::before {
  content: "\e92c";
  color: #071426;
}

.zm-contact-btn--wa {
  background: #25d366;
  color: #061b10 !important;
  border: 2px solid #8cffb6;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.zm-contact-btn--wa span {
  background: rgba(6, 27, 16, 0.12);
}

.zm-contact-btn--wa span::before {
  content: "\e946";
  color: #061b10;
}

.zm-contact-btn--mail {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.zm-contact-btn--mail span {
  background: rgba(255, 255, 255, 0.12);
}

.zm-contact-btn--mail span::before {
  content: "\e924";
  color: #ffffff;
}

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

/* DETAILS */

.zm-contact-details {
  padding-top: 4px;
}

.zm-contact-details p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #536173;
}

.zm-contact-details strong {
  color: #071426;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.zm-contact-details span {
  color: #071426;
  font-weight: 900;
}

.zm-contact-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(7, 20, 38, 0.1);
}

/* MOBILE */

@media (max-width: 767px) {
  .zm-contact-page {
    padding: 58px 16px;
  }

  .zm-contact-page__head {
    text-align: left;
    margin-bottom: 28px;
  }

  .zm-contact-page__label {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .zm-contact-page__head h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .zm-contact-page__head p {
    font-size: 16px;
  }

  .zm-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zm-contact-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .zm-contact-box h2 {
    font-size: 26px;
  }

  .zm-contact-box--dark > p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .zm-contact-btn {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
  }

  .zm-contact-btn span {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .zm-contact-details p {
    font-size: 16px;
    line-height: 1.7;
  }

  .zm-contact-details strong {
    font-size: 20px;
  }
}





/* =========================================================
   GALÉRIA MONTÁŽÍ - HLAVNÁ STRÁNKA
   ========================================================= */

.zm-gallery {
  padding: 90px 20px;
  background: #ffffff;
}

.zm-gallery * {
  box-sizing: border-box;
}

.zm-gallery__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.zm-gallery__head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.zm-gallery__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.1);
  color: #2f66d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.zm-gallery__head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #071426;
}

.zm-gallery__head p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #536173;
}

.zm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
}

.zm-gallery__item {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  background: #071426;
  text-decoration: none !important;
  box-shadow: 0 16px 40px rgba(7, 20, 38, 0.10);
}

.zm-gallery__item--wide {
  grid-column: span 2;
}

.zm-gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 38, 0) 35%,
      rgba(7, 20, 38, 0.84) 100%
    );
  pointer-events: none;
}

.zm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.32s ease;
}

.zm-gallery__item:hover img {
  transform: scale(1.055);
}

.zm-gallery__item span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.zm-gallery__cta {
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #071426 0%, #10294d 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zm-gallery__cta strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.zm-gallery__cta span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.zm-gallery__cta a {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: #ffb000;
  color: #071426 !important;
  border: 2px solid #ffd36a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(255, 176, 0, 0.28);
  transition: 0.2s ease;
}

.zm-gallery__cta a:hover {
  background: #ff9f00;
  border-color: #ffe08a;
  color: #071426 !important;
  transform: translateY(-1px);
}

/* TABLET */

@media (max-width: 1199px) {
  .zm-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .zm-gallery {
    padding: 58px 16px;
  }

  .zm-gallery__head {
    text-align: left;
    margin-bottom: 28px;
  }

  .zm-gallery__label {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .zm-gallery__head h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .zm-gallery__head p {
    font-size: 16px;
  }

  .zm-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .zm-gallery__item,
  .zm-gallery__item--wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .zm-gallery__item span {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 18px;
  }

  .zm-gallery__cta {
    margin-top: 18px;
    padding: 22px 18px;
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .zm-gallery__cta strong {
    font-size: 22px;
  }

  .zm-gallery__cta span {
    font-size: 15px;
  }

  .zm-gallery__cta a {
    width: 100%;
    min-height: 54px;
  }
}

/* =========================================================
   NAŠE MONTÁŽE NÁBYTKU - BLOG / ČLÁNKY NA HOMEPAGE
   ========================================================= */

.homepage-blog-wrapper.blog-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  background: #ffffff;
  box-sizing: border-box;
}

.homepage-blog-wrapper.blog-wrapper * {
  box-sizing: border-box;
}

/* Nadpis sekcie */
.homepage-blog-wrapper .homepage-group-title {
  grid-column: 1 / -1;
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #071426;
}

.homepage-blog-wrapper .homepage-group-title::before {
  content: "Realizované montáže";
  display: table;
  margin: 0 auto 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.10);
  color: #2f66d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

/* Karta článku */
.homepage-blog-wrapper .news-item {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #f5f7fb;
  border: 1px solid rgba(7, 20, 38, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: none;
  transition: 0.22s ease;
}

.homepage-blog-wrapper .news-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 20, 38, 0.11);
}

.homepage-blog-wrapper .news-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}

/* Obrázok */
.homepage-blog-wrapper .news-item .image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.88), rgba(16, 41, 77, 0.94));
  position: relative;
}

.homepage-blog-wrapper .news-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.28s ease;
}

.homepage-blog-wrapper .news-item:hover .image img {
  transform: scale(1.045);
}

/* Ak článok nemá obrázok */
.homepage-blog-wrapper .news-item:not(:has(.image)) > a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(7, 20, 38, 0.92), rgba(16, 41, 77, 0.96)),
    radial-gradient(circle at top right, rgba(47, 102, 208, 0.45), transparent 35%);
}

.homepage-blog-wrapper .news-item:not(:has(.image)) > a {
  position: relative;
}

.homepage-blog-wrapper .news-item:not(:has(.image)) > a::after {
  content: "Montáž nábytku";
  position: absolute;
  top: 72px;
  left: 22px;
  right: 22px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

/* Text v karte */
.homepage-blog-wrapper .news-item .text {
  flex: 1;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
}

.homepage-blog-wrapper .news-item .title {
  display: block;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071426;
}

.homepage-blog-wrapper .news-item .description {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.58;
  color: #536173;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA v karte */
.homepage-blog-wrapper .news-item .read-article {
  margin-top: auto;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 13px;
  background: #071426;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  transition: 0.2s ease;
}

.homepage-blog-wrapper .news-item:hover .read-article {
  background: #ffb000;
  color: #071426;
}

.homepage-blog-wrapper .news-item .read-article i {
  font-size: 12px;
  line-height: 1;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {
  .homepage-blog-wrapper.blog-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .homepage-blog-wrapper.blog-wrapper {
    padding: 58px 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .homepage-blog-wrapper .homepage-group-title {
    text-align: left;
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.08;
  }

  .homepage-blog-wrapper .homepage-group-title::before {
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
  }

  .homepage-blog-wrapper .news-item {
    border-radius: 22px;
  }

  .homepage-blog-wrapper .news-item .image {
    aspect-ratio: 16 / 10;
  }

  .homepage-blog-wrapper .news-item:not(:has(.image)) > a::before {
    aspect-ratio: 16 / 10;
  }

  .homepage-blog-wrapper .news-item:not(:has(.image)) > a::after {
    top: 54px;
    font-size: 22px;
  }

  .homepage-blog-wrapper .news-item .text {
    padding: 22px 18px 20px;
  }

  .homepage-blog-wrapper .news-item .title {
    font-size: 22px;
  }

  .homepage-blog-wrapper .news-item .description {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }

  .homepage-blog-wrapper .news-item .read-article {
    width: 100%;
    min-height: 50px;
  }
}


/* =========================================================
   AKO TO FUNGUJE
   ========================================================= */

.zm-steps {
  background: #f5f7fb;
  padding: 86px 20px;
}

.zm-steps__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.zm-section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.zm-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.1);
  color: #2f66d0;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zm-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #071426;
}

.zm-section-head p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
  color: #536173;
}

.zm-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.zm-step-card {
  position: relative;
  min-height: 260px;
  padding: 34px 30px 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 20, 38, 0.08);
  box-shadow: 0 18px 42px rgba(7, 20, 38, 0.08);
}

.zm-step-card__number {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #2f66d0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(47, 102, 208, 0.28);
}

.zm-step-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 900;
  color: #071426;
  letter-spacing: -0.02em;
}

.zm-step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: #536173;
}

/* MOBILE */

@media (max-width: 991px) {
  .zm-steps {
    padding: 58px 16px;
  }

  .zm-section-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .zm-section-label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .zm-section-head h2 {
    font-size: 31px;
  }

  .zm-section-head p {
    font-size: 16px;
  }

  .zm-steps__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .zm-step-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 20px;
  }

  .zm-step-card__number {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
    font-size: 22px;
  }

  .zm-step-card h3 {
    font-size: 20px;
  }

  .zm-step-card p {
    font-size: 15px;
  }
}

/* =========================================================
   ČO MONTUJEME
   ========================================================= */

.zm-services {
  padding: 90px 20px;
  background: #ffffff;
}

.zm-services * {
  box-sizing: border-box;
}

.zm-services__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.zm-services__head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.zm-services__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.1);
  color: #2f66d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.zm-services__head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #071426;
}

.zm-services__head p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #536173;
}

.zm-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.zm-service-card {
  position: relative;
  min-height: 270px;
  padding: 30px 28px;
  border-radius: 26px;
  background: #f5f7fb;
  border: 1px solid rgba(7, 20, 38, 0.08);
  overflow: hidden;
  transition: 0.22s ease;
}

.zm-service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(47, 102, 208, 0.08);
  pointer-events: none;
}

.zm-service-card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 20, 38, 0.10);
}

.zm-service-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #2f66d0;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 102, 208, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zm-service-card__icon::before {
  font-family: "shoptet";
  font-size: 27px;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.zm-service-card__icon--wardrobe::before {
  content: "\e90f";
}

.zm-service-card__icon--bed::before {
  content: "\e92f";
}

.zm-service-card__icon--shelf::before {
  content: "\e90f";
}
.zm-service-card__icon--living::before {
  content: "\e90e";
}

.zm-service-card__icon--office::before {
  content: "\e91d";
}

.zm-service-card__icon--kids::before {
  content: "\e91a";
}

.zm-service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #071426;
}

.zm-service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: #536173;
}

/* MOBILE */

@media (max-width: 991px) {
  .zm-services {
    padding: 58px 16px;
  }

  .zm-services__head {
    text-align: left;
    margin-bottom: 28px;
  }

  .zm-services__label {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .zm-services__head h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .zm-services__head p {
    font-size: 16px;
  }

  .zm-services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .zm-service-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .zm-service-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .zm-service-card__icon::before {
    font-size: 24px;
  }

  .zm-service-card h3 {
    font-size: 22px;
  }

  .zm-service-card p {
    font-size: 15px;
  }
}

/* =========================================================
   KDE MONTUJEME + ZNAČKY
   ========================================================= */

.zm-coverage {
  padding: 90px 20px;
  background: #f5f7fb;
}

.zm-coverage * {
  box-sizing: border-box;
}

.zm-coverage__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.zm-coverage__head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.zm-coverage__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.1);
  color: #2f66d0;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.zm-coverage__head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #071426;
}

.zm-coverage__head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #536173;
}

.zm-coverage__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.zm-coverage__card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(7, 20, 38, 0.08);
  box-shadow: 0 18px 45px rgba(7, 20, 38, 0.08);
  overflow: hidden;
}

.zm-coverage__card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(47, 102, 208, 0.08);
  pointer-events: none;
}

.zm-coverage__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zm-coverage__icon--blue {
  background: #2f66d0;
  box-shadow: 0 12px 28px rgba(47, 102, 208, 0.28);
}

.zm-coverage__icon--orange {
  background: #ffb000;
  box-shadow: 0 12px 28px rgba(255, 176, 0, 0.28);
}

.zm-coverage__icon--blue::before {
  content: "🛠";
  font-size: 26px;
}

.zm-coverage__icon--orange::before {
  content: "📍";
  font-size: 26px;
}

.zm-coverage__card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #071426;
}

.zm-coverage__card p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.62;
  color: #536173;
}

.zm-brand-list,
.zm-location-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zm-brand-list span,
.zm-location-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}

.zm-brand-list span {
  background: rgba(47, 102, 208, 0.09);
  color: #123d91;
  border: 1px solid rgba(47, 102, 208, 0.14);
}

.zm-location-list span {
  background: rgba(7, 20, 38, 0.055);
  color: #071426;
  border: 1px solid rgba(7, 20, 38, 0.09);
}

.zm-coverage__bottom {
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #071426 0%, #10294d 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zm-coverage__bottom p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.zm-coverage__btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: #ffb000;
  color: #071426 !important;
  border: 2px solid #ffd36a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(255, 176, 0, 0.28);
  transition: 0.2s ease;
}

.zm-coverage__btn:hover {
  background: #ff9f00;
  border-color: #ffe08a;
  color: #071426 !important;
  transform: translateY(-1px);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .zm-coverage {
    padding: 58px 16px;
  }

  .zm-coverage__head {
    text-align: left;
    margin-bottom: 28px;
  }

  .zm-coverage__label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .zm-coverage__head h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .zm-coverage__head p {
    font-size: 16px;
  }

  .zm-coverage__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zm-coverage__card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .zm-coverage__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .zm-coverage__icon--blue::before,
  .zm-coverage__icon--orange::before {
    font-size: 23px;
  }

  .zm-coverage__card h3 {
    font-size: 24px;
  }

  .zm-coverage__card p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .zm-brand-list,
  .zm-location-list {
    gap: 8px;
  }

  .zm-brand-list span,
  .zm-location-list span {
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .zm-coverage__bottom {
    margin-top: 18px;
    padding: 22px 18px;
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .zm-coverage__bottom p {
    font-size: 15px;
  }

  .zm-coverage__btn {
    width: 100%;
    min-height: 54px;
  }
}



/* =========================================================
   FORMULÁR CENOVEJ PONUKY - ZMONTUJEME.SK
   ========================================================= */

.zm-form-section {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(47, 102, 208, 0.22), transparent 34%),
    linear-gradient(135deg, #071426 0%, #0a1d38 52%, #10294d 100%);
  overflow: hidden;
}

.zm-form-section * {
  box-sizing: border-box;
}

.zm-form-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(47, 102, 208, 0.22);
  filter: blur(10px);
  pointer-events: none;
}

.zm-form-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.zm-form-section__text {
  color: #ffffff;
}

.zm-form-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(47, 102, 208, 0.18);
  border: 1px solid rgba(117, 164, 255, 0.38);
  color: #8aadff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.zm-form-section__text h2 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.zm-form-section__text p {
  max-width: 610px;
  margin: 0 0 32px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.zm-form-section__points {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.zm-form-section__point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.zm-form-section__point span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #25d366;
  color: #061b10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zm-form-section__point span::before {
  content: "✓";
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.zm-form-section__point strong {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
}

/* FORM CARD */

.zm-form-card {
  width: 100%;
  padding: 36px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
}

.zm-form-card h2 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #071426;
}

.zm-form-card > p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.55;
  color: #536173;
}

.zm-form-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.zm-form-card .form-group {
  margin: 0 0 18px;
}

.zm-form-card label {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  color: #071426;
}

.zm-form-card .required-asterisk::after {
  content: " *";
  color: #e53935;
  font-weight: 900;
}

.zm-form-card .form-control {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(7, 20, 38, 0.14);
  background: #f5f7fb;
  color: #071426;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
  transition: 0.2s ease;
}

.zm-form-card textarea.form-control {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.zm-form-card .form-control::placeholder {
  color: rgba(83, 97, 115, 0.62);
}

.zm-form-card .form-control:focus {
  border-color: #2f66d0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 102, 208, 0.13);
}

.zm-form-card .consents {
  margin-top: 4px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f5f7fb;
  border: 1px solid rgba(7, 20, 38, 0.08);
}

.zm-form-card .consents label {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: #536173;
}

.zm-form-card .consents a {
  color: #2f66d0 !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zm-form-card .submit-wrapper {
  margin-bottom: 0;
}

.zm-form-card .btn.btn-primary,
.zm-form-card input[type="submit"].btn.btn-primary {
  width: 100%;
  min-height: 60px;
  padding: 0 28px;
  border: 2px solid #ffd36a;
  border-radius: 14px;
  background: #ffb000;
  color: #071426 !important;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 176, 0, 0.30);
  transition: 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.zm-form-card .btn.btn-primary:hover,
.zm-form-card input[type="submit"].btn.btn-primary:hover {
  background: #ff9f00;
  border-color: #ffe08a;
  color: #071426 !important;
  transform: translateY(-1px);
}

.zm-form-card .no-display {
  display: none !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .zm-form-section {
    padding: 58px 16px;
  }

  .zm-form-section__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .zm-form-section__label {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .zm-form-section__text h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .zm-form-section__text p {
    font-size: 16px;
    line-height: 1.58;
    margin-bottom: 22px;
  }

  .zm-form-section__points {
    gap: 10px;
  }

  .zm-form-section__point {
    min-height: auto;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .zm-form-section__point strong {
    font-size: 15px;
  }

  .zm-form-card {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .zm-form-card h2 {
    font-size: 26px;
  }

  .zm-form-card > p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .zm-form-card .form-group {
    margin-bottom: 15px;
  }

  .zm-form-card .form-control {
    min-height: 52px;
    border-radius: 13px;
    font-size: 16px;
  }

  .zm-form-card textarea.form-control {
    min-height: 140px;
  }

  .zm-form-card .btn.btn-primary,
  .zm-form-card input[type="submit"].btn.btn-primary {
    min-height: 56px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .zm-form-section__text h2 {
    font-size: 31px;
  }

  .zm-form-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}