* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
    }

header {
  display: flex;
  align-items: center;      /* všechny prvky na stejnou výšku */
  justify-content: space-between;
  gap: 20px;                /* mezery mezi prvky */
  padding: 10px 16px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.container {
    max-width: 1200px;
   /* margin: 0 auto;*/
    padding: 0 1rem;
}
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;   /* obrázek + text loga zarovná */
  gap: 8px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto; /* odsun do prava */
  line-height: 1;    /* odstraní vertikální posun */
}
.discount-badge {
  position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e41123;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;

}
.pricing-card-featured {
    transform: scale(1.05);
}


/* mobilní verze */
@media (max-width: 1200px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    right: 0;       /* drží menu vpravo */
    left: auto;     /* zruší centrování */
    margin: 0;
  }

  nav.active {
    display: flex;
    transform: none;
  }

  .menu-toggle {
    display: flex;
  }

  .contact {
    display: none;
  }
    .contact a.btn-tel{
      color: hsl(207 89% 42%);
      text-decoration: none;
      font-weight: bold;
      display: none;
    }


}
@media (max-width: 500px) {
  .contact {
    display: none;
  }
      .contact a.btn-orange{
      display: none;
    }
}


    .logo img {
      width: 35px;
      height: 35px;
      margin-right: 10px;
    }

    .logo-text {
      font-weight: bold;
      font-size: 20px;
      color: black;
      text-decoration: none;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #333;
      font-size: 16px;
    }

    .contact {
      display: flex;
      align-items: center;
      gap: 15px;
      white-space: nowrap;
    }

    .contact a {
      color: hsl(207 89% 42%);
      text-decoration: none;
      font-weight: bold;
    }

    .btn-orange {
      background: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
    }
    .btn-orange:hover {
    box-shadow: 0 0 10px 3px hsla(25, 95%, 55%, 0.6);
    transform: translateY(-2px);
    }

    .hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 40px;
  border-radius: 0 0 20px 20px;
  gap: 40px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

    .hero-text {
      max-width: 50%;
      flex: 1;
    }

    .hero-text h1 {
      font-size: 64px;
      margin-bottom: 10px;
    }

    .hero-text h1 span {
      color: #ff7a00;
    }

    .hero-text p {
      font-size: 18px;
      margin: 20px 0;
      color: #e0e0e0;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .hero-image img {
      width: 400px;
      border-radius: 20px;
    }

    .stats {
      display: flex;
      justify-content: center;
      text-align: center;
      gap: 60px;
      padding: 40px;
      background-color: #fff;
      font-weight: bold;
    }

    .stats div {
      font-size: 18px;
    }

    .stats span {
      display: block;
      font-size: 28px;
      color: #f56600;
    }
.services{
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.services h2, .values h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.services .subtitle {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 20px rgba(30, 100, 200, 0.2); /* modrý nádech */
}

.card .icon {
  font-size: 32px;
  background-color: hsl(207 89% 42%);
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card:hover .icon {
  transform: scale(1.1);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.card p {
  font-size: 14px;
  color: #444;
  text-align: center;
}

.price-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  margin: 10px 0;
}

.price-info .price {
  color: hsl(207 89% 42%);
}

.price-info .note {
  color: #6e6c6c;
  font-size: 13px;
}

.card .btn-orange {
  margin-top: auto;
  padding: 10px 20px;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  display: inline-block;
  
}



    @media screen and (max-width: 768px) {
      header {
       
        align-items: flex-start;
      }

      .hero {
        flex-direction: column;
        padding: 30px;
        justify-content: normal;
      }

      .hero-text, .hero-image {
        max-width: 100%;
      }

      .hero-text h1 {
        font-size: 32px;
      }

      .hero-image img {
        width: 100%;
        margin-top: 20px;
      }

      .stats {
        flex-direction: column;
        gap: 20px;
      }
      
    }


.about-values {
    margin-bottom: 4rem;
}

.about-values h3 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.value-icon {
    background: var(--gradient-accent);
    background-color: hsl(25 95% 53%);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.values {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}		