body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f3;
  color: #222;
}

header, footer {
  background: #fff;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ffe0c2;
}

header img {
  height: 60px;
  margin-bottom: 10px;
}

nav {
  margin: 10px 0;
}

nav a {
  color: #ff944d;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  font-size: 18px;
  transition: color .2s;
}

nav a:hover {
  color: #ffb380;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 15px;
}

.hero {
  background: linear-gradient(120deg, #ffe0c2 0%, #ffd6b0 100%);
  padding: 60px 15px 40px 15px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff944d;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero button {
  background: #ff944d;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background .2s;
}

.hero button:hover {
  background: #ffb380;
}

h2 {
  color: #ff944d;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
}

/* Исправление для заголовка примеров */
#examples {
  margin-bottom: 15px;
}

/* --- ВИДЕО КАРУСЕЛЬ --- */
.video-carousel-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 40px auto;
  padding: 0;
}

.carousel-inner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel-item {
  text-align: center;
  padding: 0;
  margin: 0;
}

.embed-responsive {
  display: none; /* Убираем, так как используем youtube-lazy */
}

/* --- LAZY YOUTUBE --- */
.youtube-lazy {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
}

.youtube-thumb {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: filter .2s;
  display: block;
}

.youtube-lazy:hover .youtube-thumb {
  filter: brightness(0.85);
}

.youtube-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
  user-select: none;
}

.mt-2 {
  margin-top: 12px !important;
}

/* --- ОСТАЛЬНОЙ ДИЗАЙН --- */
.why-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.why-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255,148,77,0.07);
  padding: 22px 18px;
  width: 300px;
  text-align: center;
  border: 1.5px solid #ffe0c2;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.tariff {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255,148,77,0.07);
  padding: 28px 18px 22px 18px;
  width: 270px;
  text-align: center;
  border: 2px solid #ffe0c2;
  position: relative;
  transition: box-shadow .2s;
}

.tariff.popular {
  border-color: #ff944d;
  box-shadow: 0 4px 16px rgba(255,148,77,0.13);
}

.tariff .price {
  font-size: 2rem;
  color: #ff944d;
  font-weight: bold;
  margin: 12px 0 18px 0;
}

.tariff ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #444;
  text-align: left;
}

.tariff ul li {
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
}

.tariff ul li:before {
  content: "•";
  color: #ff944d;
  position: absolute;
  left: 0;
}

.order-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255,148,77,0.07);
  padding: 30px 20px;
  max-width: 500px;
  margin: 0 auto 40px auto;
  border: 1.5px solid #ffe0c2;
}

.order-form input, .order-form select, .order-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ffd6b0;
  border-radius: 7px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #fff8f3;
  transition: border-color .2s;
}

.order-form input:focus, .order-form select:focus, .order-form textarea:focus {
  border-color: #ff944d;
  outline: none;
}

.order-form button {
  background: #ff944d;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background .2s;
  display: block;
  margin: 0 auto;
}

.order-form button:hover {
  background: #ffb380;
}

.section {
  margin-bottom: 60px;
}

.feedback__subtitle {
  text-align: center;
  color: #ffb380;
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feedback__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #ff944d;
  margin-bottom: 30px;
}

.feedback__title span {
  color: #ffb380;
  font-weight: bold;
}

.reviews-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.review-slide {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255,148,77,0.07);
  padding: 22px 18px;
  width: 320px;
  min-width: 320px;
  scroll-snap-align: start;
  text-align: left;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #ffe0c2;
}

.review-pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.review-meta {
  font-size: 1rem;
  color: #ff944d;
  margin-bottom: 7px;
}

.review-name {
  font-weight: bold;
  display: block;
}

.review-occasion {
  font-size: 0.95em;
  color: #888;
  display: block;
}

.review-text {
  margin-top: 10px;
  color: #222;
  font-size: 1.05em;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(255,148,77,0.07);
  border: 1.5px solid #ffe0c2;
}

.faq-item summary {
  font-weight: bold;
  color: #ff944d;
  cursor: pointer;
  font-size: 1.1rem;
  outline: none;
}

.faq-item[open] summary {
  color: #ffb380;
}

.faq-item p {
  margin: 10px 0 0 0;
  color: #333;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 900px) {
  .why-list, .examples, .pricing-table, .reviews-slider {
    flex-direction: column;
    align-items: center;
  }
  .tariff, .review, .example-card, .why-item {
    width: 95%;
  }
  .review-slide {
    width: 95%;
    min-width: unset;
  }
  .order-form {
    max-width: 100%;
  }
  .video-carousel-wrap {
    max-width: 100%;
    padding: 0 2vw;
  }
}
