/* ============================================
   ZIMERSTAV – NAVBAR + SEKCÍ LAYOUT (FINAL)
   max-width layout: 1680px
============================================ */

/* BODY – základ bez flexu */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/* ============================================
   NAVBAR WRAPPER
============================================ */
.navbar {
  position: fixed;
  top: 0;
  margin: 0 auto;        /* ❤️ toto vycentruje */
  width: auto;           /* MUSÍ být auto – ne 100% */
  max-width: 1680px;     /* hranice */
  left: 0;
  right: 0;              /* ❤️ rovnoměrné centrování */
  z-index: 50;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 200, 0, 0.25);
  box-shadow: 0 4px 22px rgba(255, 200, 0, 0.08);
}

/* Container – jen layout */
.navbar .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* ============================================
   LOGO BLOK
============================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo img {
  height: 85px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
}

.logo-slogan {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

/* ============================================
   NAV AREA – ODKAZY + HAMBURGER
============================================ */
.nav-area {
  display: flex;
  justify-content: center;
}

/* Desktop odkazy */
.nav-links {
  display: flex;
  gap: 75px;
  list-style: none;
  margin-right: 10px;
  text-align: center;
  justify-content: center;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #ffe58f;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to right, #fbbf24, #ffe58f);
  border-radius: 4px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================
   HAMBURGER BUTTON
============================================ */
.nav-toggle {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #fbbf24;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Hamburger animace */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   EXTRA MENU – PRÉMIUM FLOAT
============================================ */
.extra-menu {
  position: absolute;
  top: 90px;
  right: 10px;

  width: 150px;
  max-height: 450px;
  min-height: 300px;
  overflow-y: auto;
  justify-content: center;
  text-align: center;

  display: flex;
  flex-direction: column;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  border-radius: 16px;
  border: 1px solid rgba(255, 200, 0, 0.25);
  box-shadow: 0 10px 32px rgba(255, 200, 0, 0.12);

  padding: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;

  z-index: 99999;
}

.extra-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.extra-menu a {
  display: block !important;
  width: 100%;
  padding: 16px 22px;

  font-size: 1.1rem;
  font-weight: 600;
  color: #fbbf24;
  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.25s ease;
}

.extra-menu a:hover {
  background: rgba(255, 200, 0, 0.12);
}

.extra-menu a:last-child {
  border-bottom: none;
}

/* ============================================
   PREMIUM GLASS DROPDOWN
============================================ */
.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  border-radius: 12px;
  padding: 12px 0;
  list-style: none;

  border: 1px solid rgba(255, 200, 0, 0.28);
  box-shadow: 0 8px 32px rgba(255, 200, 0, 0.15);

  display: none;
  opacity: 0;
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 200, 0, 0.12);
  color: #ffe58f;
}

/* ============================================
   HERO – PREMIUM VERSION
============================================ */
.hero {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* BACKGROUND IMAGE */
.hero-image img,
.hero-img {
  max-width: 1680px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.62) contrast(1.05);
}

/* ============================================
   PREMIUM GLASS CONTENT BOX
============================================ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 680px;

  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  padding: 45px 60px;
  border-radius: 18px;
  border: 1px solid rgba(255, 200, 0, 0.25);

  text-align: center;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);

  animation: heroFade 0.8s ease-out;
}

/* Subtle fade animation */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translate(-50%, -58%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* TITLE */
.hero-content h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* DESCRIPTION */
.hero-content p {
  font-size: 1.25rem;
  color: #e8e8e8;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.25s ease;
}

/* GOLD BUTTON */
.btn-primary {
  background: #fbbf24;
  color: #111;
  box-shadow: 0 10px 25px rgba(251,191,36,0.30);
}

.btn-primary:hover {
  background: #ffe58f;
  box-shadow: 0 14px 32px rgba(251,191,36,0.45);
}

/* GLASS BUTTON */
.btn-secondary {
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.28);
  color: #fbbf24;
}

.btn-secondary:hover {
  background: rgba(255, 200, 0, 0.22);
}

/* BENEFITS LIST */
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  font-size: 1.05rem;
  color: #fbbf24;
  margin-top: 12px;
  opacity: 0.92;
}
/* ============================================
   WHY US SECTION
============================================ */
.why-us {
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
}

.why-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #f7f7f7;
  border-radius: 14px;
  box-sizing: border-box;
  text-align: center;   /* ❤️ přidáno */
}
.why-us h2 {
  font-size: 2.6rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 200, 0, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.25);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE – SERVICES (NEKONFLIKTNÍ)
============================================================ */

.ct-services {
    width: 100%;
    padding: 90px 0;       /* odstraněn problémový horizontální padding */
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.ct-services-container {
    width: 100%;
    max-width: 1680px;
    padding: 0 20px;        /* bezpečný padding uvnitř kontejneru */
    box-sizing: border-box;
    text-align: center;
    justify-content: center; 
}

.ct-services-title {
  font-size: 2.6rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}

.ct-services-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 50px;
}

/* GRID */
.ct-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.ct-service-card {
  background: rgba(255,200,0,0.06);
  padding: 28px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,200,0,0.25);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.ct-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.ct-service-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.ct-service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.ct-service-card p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION – DESKTOP
============================================ */
.process {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;                  /* odstraněny problematické 20px */
  background: #f3f3f3;
  display: flex;
  justify-content: center;
}

.process-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;                  /* bezpečný vnitřní padding */
  box-sizing: border-box;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.process h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.process-step {
  background: #fffbee;
  border-radius: 14px;
  padding: 40px 30px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.process-number {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  background: #111;
  color: #fbbf24;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  font-weight: 700;
}

.process-step h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.process-step p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.55;
}

/* ============================================
   PREMIUM CTA
============================================ */
.cta-section {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;
  background: #111;
  display: flex;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 
}

.cta-container {
  max-width: 900px;
  color: #fff;
}

.cta-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fbbf24;
}

.cta-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
  max-width: 750px;
  margin: 0 auto 40px;
}

.cta-btn {
  background: #fbbf24;
  color: #111;
  font-size: 1.25rem;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
  box-shadow: 0 10px 22px rgba(251, 191, 36, 0.25);
}

.cta-btn:hover {
  background: #ffe58f;
  box-shadow: 0 14px 26px rgba(251, 191, 36, 0.38);
}

.cta-seo-small {
  margin-top: 35px;
  font-size: 1.2rem;
  color: #bdbdbd;
  line-height: 1.55;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SUPPORT SECTION – ZIMERSTAV
============================================ */
.support {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.support-container {
  width: 90%;
  max-width: 1680px;
  text-align: center;
}

.support h2 {
  font-size: 2.4rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.support-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.support-card {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.support-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.support-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
}

.support-card a {
  color: #d89f00;
  font-weight: 600;
  text-decoration: none;
}

.support-card a:hover {
  text-decoration: underline;
}


/* ============================================
   REVIEWS SECTION – Premium Firemní Styl
============================================ */
.reviews {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
}

.reviews-container {
  width: 90%;
  max-width: 1680px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.4rem;
  color: #111;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* REVIEW CARD */
.review-card {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid #ececec;
  transition: all 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.review-card p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.55;
  margin-bottom: 15px;
  font-style: italic;
}

.review-card span {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

/* ============================================
   SEO TEXT SECTION
============================================ */
.seo-text {
  width: 100%;
  padding: 90px 0px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.seo-text-container {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.seo-text h2 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 20px;
  font-weight: 700;
}

.seo-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444;
  max-width: 850px;
  margin: 0 auto;
}

/* ============================================
   SOCIAL FOLLOW SECTION
============================================ */
.social-follow {
  max-width: 1680px;
  width: 100%;
  padding: 90px 0px;
  display: flex;
  justify-content: center;
  background: #fbbf24;
 margin: 0 auto;
}

.social-container {
  width: 100%;
  max-width: 1680px;
  text-align: center;
}

.social-follow h2 {
  font-size: 2.4rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.social-follow p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
}

/* BUTTON */
.social-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #d89600, #ffce00);
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}


/* ============================================
   FOOTER – ZIMERSTAV Premium (FINAL)
============================================ */
.zs-footer {
  max-width: 1680px;
  width: 100%;
  background: #111;
  color: #eee;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.zs-footer-container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  box-sizing: border-box;
}

/* LOGO BLOK – zarovnání přesně jako h3 */
.zs-footer-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* Logo velikost – vizuálně jako nadpis */
.zs-footer-logo-img {
  width: 260px;       /* můžeš upravit na 220–300px podle oka */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Text pod logem */
.zs-footer-desc {
  text-align: center !important;
  max-width: 340px;
  margin: 0 auto;
  color: #fbbf24;
  line-height: 1.55;
  font-size: 1.2rem;
}

/* OSTATNÍ TEXTY — ZŮSTÁVAJÍ CENTROVANÉ */
.zs-footer p {
  font-size: 1.2rem;
  color: #fbbf24;
  line-height: 1.55;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}

.zs-footer h4 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fbbf24;
  text-align: center;
}

.zs-footer ul {
  list-style: none;
  padding: 0;
}

.zs-footer ul li {
  margin-bottom: 8px;
  color: #fbbf24;
  text-align: center;
  font-size: 1.2rem;
}

.zs-footer a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zs-footer a:hover {
  color: #ffe58f;
}

/* BOTTOM BAR */
.zs-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #333;
  text-align: center;
}

.zs-footer-bottom p {
  font-size: 0.95rem;
  color: #aaa;
}

.zs-links-box {
  width: 100%;
  max-width: 800px;
  margin: 60px auto;
  padding: 30px 25px;
  background: #f4f6f8;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.zs-links-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 20px;
}

.zs-links-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zs-links-box li {
  margin: 12px 0;
}

.zs-links-box a {
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0044cc;
  transition: 0.25s ease;
}

.zs-links-box a:hover {
  color: #003399;
  text-decoration: underline;
}

/* ===========================================================
   GLOBAL MOBILE FIRST RESET
=========================================================== */

html, body {
  overflow-x: hidden !important;
}
.container .hero {
  max-width: none !important;
}
section, .container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Footer musí mít vlastní definici → nesmí být v resetu */
.zs-footer-container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Grid fallback */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* ===========================================================
   BREAKPOINT 1200px ↓  (Large tablets + menší notebooky)
=========================================================== */
@media (max-width: 1200px) {

  /* NAVBAR */
  .nav-links { gap: 40px; }
  .nav-links a { font-size: 1.35rem; }
  .logo img { height: 75px; }

  /* WHY GRID */
  .why-grid {
    grid-template-columns: repeat(3,1fr);
  }

  /* SERVICES GRID */
  .ct-services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* PROCESS GRID */
  .process-grid {
    grid-template-columns: repeat(3,1fr);
  }

  /* SUPPORT GRID */
  .support-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* REVIEWS GRID */
  .reviews-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ===========================================================
   BREAKPOINT 992px ↓ (tablet landscape)
=========================================================== */
@media (max-width: 992px) {

  /* NAVBAR — mobile mode aktivuje */
  .nav-area {
    display: none !important;
  }

  .logo { margin-right: auto !important; }
  .nav-toggle { margin-left: auto !important; }

  /* WHY GRID 2 */
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* SERVICES GRID */
  .ct-services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* PROCESS GRID */
  .process-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* SUPPORT GRID */
  .support-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* REVIEWS GRID */
  .reviews-grid {
    grid-template-columns: repeat(2,1fr);
  }

  /* FOOTER */
  .zs-footer-container {
    grid-template-columns: repeat(2,1fr);
    width: 100% !important;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {

 .why-grid,
  .ct-services-grid,
  .process-grid,
  .support-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .zs-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zs-footer-logo-img {
    margin: 0 auto;
  }
}
/* ===========================================================
   BREAKPOINT 600px ↓ (classic mobile)
=========================================================== */
@media (max-width: 600px) {

  section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ===========================================================
   BREAKPOINT 375px ↓ (small iPhone)
=========================================================== */
@media (max-width: 375px) {


  .review-card,
  .ct-service-card,
  .process-step {
    max-width: 300px;
    margin: 0 auto;
  }
}
/* ===========================================================
   HERO — RESPONSIVE (FINAL CLEAN VERSION)
=========================================================== */

/* ============= 992px (tablet landscape) ============= */
@media (max-width: 992px) {

  .hero-content {
    max-width: 480px;
    padding: 28px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}


/* ============= 768px (tablet portrait / large mobile) ============= */
@media (max-width: 768px) {

  /* ---- HERO IMAGE ---- */
  .hero-image img,
  .hero-img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16/9;
    object-fit: cover !important;
    margin-top: 60px !important;   /* kvůli navbaru */
    display: block;
  }

  /* ---- HERO CONTENT ---- */
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    margin: -50px auto 0;      /* krásné usazení pod obrázek */
    width: 88%;
    max-width: 420px;
    padding: 24px 26px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  /* CTA buttons */
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 80%;
  }

  /* ---- BENEFITY ---- */
  .hero-benefits {
    flex-direction: column;
    font-size: 0.9rem;
    gap: 8px;
    padding-left: 0 !important;
  }
  .zs-links-box {
  padding: 30px 0px !important;
  }
}


/* ============= 600px (classic mobile) ============= */
@media (max-width: 600px) {

  .hero-content {
    max-width: 88%;
    padding: 22px 20px;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .zs-footer {
    padding-bottom: 180px !important;
  }
}


/* ============= 375px (small iPhone) ============= */
@media (max-width: 375px) {

  .hero-content {
    max-width: 88%;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }
}
