body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f6f7;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.hero img {
  max-width: 250px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hero-content {
  flex: 1;
  padding: 0 20px;
  min-width: 250px;
}
.hero-content h2 {
  color: #e4572e;
  margin: 0 0 10px;
}
.hero-content p {
  margin: 0 0 10px;
}
.countdown {
  background: #e63946;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 20px;
  min-width: 220px;
}
.countdown h4 {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.countdown div {
  font-size: 24px;
  font-weight: bold;
}
.switcher {
  text-align: center;
  margin-bottom: 20px;
}
.switcher button {
  background: #ddd;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
}
.switcher button.active {
  background: #007bff;
  color: #fff;
}
.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 300px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card.orange { border-top: 10px solid #e4572e; }
.pricing-card.blue { border-top: 10px solid #007bff; }
.pricing-card.green { border-top: 10px solid #28a745; }
.pricing-card h3 {
  margin-top: 0;
}
.pricing-card .price {
  font-size: 28px;
  color: #007bff;
  margin: 10px 0;
}
.pricing-card button {
  margin-top: 15px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.pricing-card button:hover {
  background: #0056b3;
  transform: scale(1.05);
}
.figure-pointing {
  max-width: 250px;
  margin: 20px auto 0;
  display: block;
}
.guarantee {
  text-align: center;
  margin: 30px 0;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid #28a745;
}
.social-proof {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: #555;
}
.kek-betu {
  color: #007BFF;
  font-size: 10px;
  line-height: 1.4;
}

/* Hamburger menu */
.hamburger-icon {
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: #007bff;
  color: #fff;
  border-radius: 4px;
}
.menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.hamburger-menu.open .menu {
  display: block;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu ul li {
  border-bottom: 1px solid #eee;
}
.menu ul li:last-child {
  border-bottom: none;
}
.menu ul li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
}
.menu ul li a:hover {
  background: #f0f0f0;
}

/* Szalagos címke */
.ribbon-container {
  position: absolute;
  top: 20px;
  right: -50px;
  transform: rotate(45deg);
  z-index: 10;
  transition: all 0.3s ease;
}
.sale-ribbon {
  width: 200px;
  height: 40px;
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
  cursor: pointer;
  position: relative;
}
.sale-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.sale-ribbon:hover::before {
  opacity: 1;
  animation: stripe-animation 10s linear infinite;
}
@keyframes stripe-animation {
  0% { background-position: 0 0; }
  100% { background-position: 50px 0; }
}
.sale-ribbon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.6);
}
.sale-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Pipa lista */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

/* Háttérvideó */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
  filter: grayscale(30%);
  pointer-events: none;
}

/* ✅ Mobilbarát módosítások */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .hero-content {
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .hero-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 14px;
    text-align: justify;
    padding: 0 10px;
  }
  .countdown {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .countdown h4 {
    font-size: 13px;
  }
  .countdown div {
    font-size: 20px;
  }
  .pricing-card h3 {
    font-size: 18px;
  }
  .pricing-card .price {
    font-size: 22px;
  }
  .check-list li {
    font-size: 14px;
    line-height: 1.4;
  }
  .sale-ribbon {
    font-size: 14px;
    height: 36px;
    width: 180px;
  }
  .kek-betu {
    font-size: 9px;
  }
}

