.ai-hero {
  text-align: center;
  padding: 0px 20px 0px;
}

.ai-hero-title {
  font-size: 47px;
  font-weight: 700;
  margin: 0px;
  color: #44008b;
}

.ai-hero-title span {
  color: #cc64bd;
}

.ai-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #a0979c;
}

.ai-check-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-check-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #dcd6dc;
  font-size: 16px;
  min-width: 250px;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ai-check-form input:focus {
  outline: none;
  border-color: #9f45b0;
  box-shadow: 0 0 0 3px rgba(159, 69, 176, 0.2);
}

.ai-check-form button {
  background-color: #e4322e;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ai-check-form button:hover {
  background-color: #c40000;
}

@media (max-width: 480px) {
  .ai-check-form {
    flex-direction: column;
  }

  .ai-check-form button {
    width: 100%;
  }
}

.ai-result-box {
  max-width: 800px;
  margin: 40px auto 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-result-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ai-result-bot {
  width: 160px;
  max-width: 100%;
}

.ai-result-text {
  flex: 1;
}

.ai-result-text h2 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #1e1e1e;
}

.ai-load-note {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.ai-issue-list {
  color: #000;
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
  font-size: 16px;
}

.ai-issue-list li {
  margin-bottom: 6px;
}

.ai-cta {
  color: #c40000;
  font-size: 16px;
  font-weight: 600;
}

.ai-offers {
  padding: 60px 20px;
  text-align: center;
}

.ai-offers-title {
  font-size: 38px;
  font-weight: 700;
  color: #44008b;
  margin-bottom: 40px;
}

.ai-offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.ai-offer-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 30px 24px;
  width: 250px;
  transition: transform 0.3s ease;
}

.ai-offer-box:hover {
  transform: translateY(-4px);
}

.ai-offer-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

.ai-offer-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1e1e1e;
}

.ai-offer-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.ai-contact {
  padding: 0px 20px 60px;
  text-align: center;
}

.ai-contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #06026e;
  margin-bottom: 30px;
}

.ai-contact-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.ai-contact-form input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  min-width: 250px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ai-contact-form input:focus {
  border-color: #9f45b0;
  box-shadow: 0 0 0 3px rgba(159, 69, 176, 0.2);
  outline: none;
}

.ai-contact-form button {
  background-color: #e4322e;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ai-contact-form button:hover {
  background-color: #c40000;
}

@media (max-width: 480px) {
  .ai-contact-form {
    flex-direction: column;
  }

  .ai-contact-form button {
    width: 100%;
  }
}
.ai-video-section {
  padding: 40px 20px;
  text-align: center;
}

.ai-video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ai-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none; /* blokuje kliknięcie wideo */
}

/* ================= MOBILE STYLES (telefon) ================= */
@media (max-width: 600px) {
  /* HERO */
  .ai-hero {
    padding: 40px 15px 20px;
  }
  .ai-hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .ai-hero-subtitle {
    font-size: 14px;
    margin: 15px 0 20px;
  }

  /* FORM CHECK */
  .ai-check-form {
    flex-direction: column;
    gap: 12px;
  }
  .ai-check-form input {
    min-width: 100% !important;
    font-size: 14px;
    padding: 12px 14px;
  }
  .ai-check-form button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  /* RESULT BOX */
  .ai-result-box {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .ai-result-inner {
    flex-direction: column;
    gap: 16px;
  }
  .ai-result-bot {
    width: 120px;
    margin: 0 auto;
  }
  .ai-result-text h2 {
    font-size: 20px;
  }
  .ai-issue-list {
    font-size: 14px;
  }
  .ai-cta {
    font-size: 14px;
  }

  /* OFFERS */
  .ai-offers {
    padding: 40px 15px;
  }
  .ai-offers-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .ai-offer-grid {
    gap: 16px;
  }
  .ai-offer-box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px 16px;
  }
  .ai-offer-box h3 {
    font-size: 16px;
  }
  .ai-offer-box p {
    font-size: 13px;
  }

  /* CONTACT */
  .ai-contact {
    padding: 20px 15px 40px;
  }
  .ai-contact-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ai-contact-form {
    flex-direction: column;
    gap: 12px;
  }
  .ai-contact-form input {
    min-width: 100% !important;
    font-size: 14px;
    padding: 12px;
  }
  .ai-contact-form button {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  /* VIDEO */
  .ai-video-section {
    padding: 20px 15px;
  }
  .ai-video-wrapper {
    border-radius: 8px;
  }
}
