* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Шапка */
/* верхня чорна плашка */
.top-bar {
  background-color: rgb(0, 42, 43);
  color: #e8e7e7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-size: 14px;
  gap: 4px;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-link {
  text-decoration: none;
  color: #ffffff;
}

/* Trustpilot stars */
.tp-text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
}

.tp-stars {
  display: flex;
  margin: 0 6px;
}

.tp-stars {
  width: 120px; /* підбери під свій svg */
  font-weight: 100;
  height: 20px;
  background-image: url("/img/stars.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin: 0 2px;
}

.tp-icon {
  width: 15px; /* розмір іконки перед Trustpilot */
  height: 15px;
  background-image: url("/img/star.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.header {
  width: 100%;
  background: #fdfbfb;
  padding: 8px 0; /* тільки вертикальний відступ */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1350px; /* 👈 Контроль ширини контенту */
  margin: 0 auto; /* 👈 Центрує по горизонталі */
  padding: 0 60px; /* 👈 Відступи зліва/справа */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .header-container {
    padding: 0 10px; /* 👈 Відступи зліва/справа */
  }
}

.logo img {
  width: 150px; /* збільшено */
  height: auto;
  display: block;
}

.logo {
  font-weight: bold;
}

.logo span {
  font-weight: normal;
}

/* меню */
.nav {
  display: flex;
  gap: 15px;
}

.nav a {
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  transition: 0.2s;
}

.nav a:hover {
  color: #007b7f;
}

/* кнопка */
.cta-button {
  background-color: #009296;
  margin: 5px 0;
  color: white;
  border: none; /* напівпрозора рамка */
  padding: 10px; /* трошки більший внутрішній відступ */
  border-radius: 10px; /* більш кругла форма */
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: rgba(0, 145, 150, 0.2) 0px 0px 0px 4px,
    rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
}

.cta-button:hover {
  transform: scale(1.05); /* збільшення */
  box-shadow: 0 6px 14px rgba(0, 151, 166, 0.35);
}

/* адаптив */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

/* Hero block */

/* ---------- Hero wrapper (mobile-first) ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1; /* щоб контент був вище псевдоелемента */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/fone.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 240%;
  opacity: 0.03; /* ось реальний контроль прозорості фонового зображення */
  pointer-events: none;
  z-index: -1;
}

/* повне відключення на мобільних */
@media (max-width: 700px) {
  .hero::before {
    display: none;
  }
}

.hero__text {
  text-align: center;
  margin-bottom: 18px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero__title {
  font-family: "Inter", sans-serif; /* додаємо шрифт */
  font-size: 36px;
  font-weight: 500 !important; /* трохи жирніше */
  line-height: 120%;
  margin-bottom: 10px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-green-text {
  color: #009296;
}

.hero__subtitle {
  color: #666666 !important;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: -56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

wistia-player[media-id="819p1bue7v"]:not(:defined) {
  background: center / contain no-repeat
    url("https://fast.wistia.com/embed/medias/819p1bue7v/swatch");
  display: block;
  filter: blur(5px);
  padding-top: 56.25%;
}

/* ---------- Media area ---------- */
.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 10px;
  margin-bottom: 0;
  position: relative;
}

.media-stage {
  position: relative;
  width: 100%;
  max-width: 1620px;
  aspect-ratio: 16/9; /* modern browsers */
  min-height: 260px;
  display: block;
}

/* central iframe container */
.video-wrap {
  position: absolute;
  left: 55%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 650px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  z-index: 30;
  transition: transform 0.25s ease;
  background: #000;

  /* напівпрозорий бордер */
  outline: 4px solid rgba(34, 34, 34, 0.15);
  outline-offset: 8px;

  box-shadow: 0 12px 40px rgba(153, 189, 230, 0.12),
    0 0 60px rgba(0, 163, 173, 0.12);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* або contain, залежно від бажаного результату */
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 175px; /* більший розмір */
  height: 100px; /* квадратна форма */
  background-color: rgba(0, 146, 150, 0.6); /* напівпрозорий зелений #009296 */
  border: none;
  cursor: pointer;
  border-radius: 20px;
  z-index: 50;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  left: 70px; /* підлаштувати під новий розмір */
  top: 30px; /* підлаштувати під новий розмір */
  border-style: solid;
  border-width: 20px 0 20px 40px; /* стрілка більше */
  border-radius: 5px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9); /* біла, трохи прозора */
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(0, 146, 150, 0.8); /* трохи яскравіше при ховер */
}

@media (max-width: 1000px) {
  .video-wrap {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 720px; /* за бажанням */
  }
}

/* CTA & badges under media */
.hero__actions {
  display: flex;
  flex-direction: column; /* вертикально */
  align-items: center; /* центр по горизонталі */
  gap: 12px; /* відстань між кнопкою та бейджами */
  margin-top: -150px; /* прибираємо відступ зверху */
}

@media screen and (max-width: 1200px) {
  .hero__actions {
    margin-top: 0px;
  }

  .hero__media {
    margin-top: 50px;
  }
}

/* кнопка */
.cta-button2 {
  background-color: #009296;
  margin: 5px 0;
  color: white;
  border: none; /* напівпрозора рамка */
  padding: 15px 55px; /* трошки більший внутрішній відступ */
  border-radius: 10px; /* більш кругла форма */
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: rgba(0, 145, 150, 0.2) 0px 0px 0px 4px,
    rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
}

.gray-text {
  color: #888888; /* світло-сірий */
  font-size: 10px; /* максимально дрібний */
  text-align: center; /* по центру */
  margin: 0; /* невеликий відступ зверху/знизу */
  line-height: 1.2; /* компактний міжрядковий інтервал */
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 163, 173, 0.12);
}
/* Якщо хочеш, щоб бейджі були в ряд */
.badges {
  display: flex;
  gap: -8px;
  justify-content: center;
  align-items: center;
}
.badge-img {
  width: 120px;
  margin: 0 -5px;
  height: 100px;
  display: inline-block;
}

@media screen and (max-width: 968px) {
  .badge-img {
    width: auto; /* ширина підлаштовується автоматично */
    max-width: 120px; /* обмежуємо максимальну ширину */
    height: auto; /* висота підлаштовується пропорційно */
  }
}

.features-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* не переносить елементи */
  gap: 2rem;
  padding: 1rem 0;
  position: relative;

  @media screen and (max-width: 1100px) {
    display: none;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0 1.5rem;
  white-space: nowrap; /* щоб текст не ламався */
}

.feature-item i {
  background-color: #d2f0f2;
  border-radius: 6px;
  padding: 6px;
  color: #0b5c60;
}

/* --- вертикальні лінії між + перед першим і після останнього --- */
.feature-item::before,
.feature-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 1px;
  background-color: #0b5c60;
  opacity: 0.3;
}

.feature-item::before {
  left: 0;
}

.feature-item::after {
  right: 0;
}

/* прибираємо дублювання, щоб лінії не зливались */
.feature-item + .feature-item::before {
  display: none;
}

/* --- адаптив --- */
@media (max-width: 1068px) {
  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .feature-item::before,
  .feature-item::after {
    display: none;
  }
}

/* Десктопна версія */
.features-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.features-mobile {
  display: none;
}

/* Мобільна версія */
@media (max-width: 1100px) {
  .features-desktop {
    display: none;
  }

  .features-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 30px 10px;
  }

  .mobile-feature {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
  }

  .mobile-feature:last-child {
    border-bottom: none;
  }

  .mobile-feature-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-feature-header i {
    background-color: #d2f0f2;
    border-radius: 6px;
    padding: 6px;
    color: #0b5c60;
  }

  .mobile-feature-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }

  .mobile-feature-text {
    font-size: 14px;
    color: #666;
    margin-left: 2.2rem;
    line-height: 1.4;
  }
}

/* ---------- Decorative floating images (6) ---------- */
.floating {
  position: absolute;
  pointer-events: none; /* don't block iframe clicks */
  will-change: transform;
  transition: transform 0.12s linear;
  z-index: 20;
}

.floating img {
  width: 280px; /* ширше */
  height: 160px; /* нижчі (було auto) */
  object-fit: cover; /* щоб не сплющувались */
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.12);
}

/* positions — tuned for large screens, will be adapted by media queries */
/* Left column (top, mid, bottom) */
.float--l1 {
  left: 6%;
  top: 8%;
  width: 150px;
  transform: rotate(8deg);
}
.float--l2 {
  left: 2%;
  top: 32%;
  width: 160px;
}
.float--l3 {
  left: 5%;
  top: 55%;
  width: 200px;
  transform: rotate(-10deg);
}

/* Right column (top, mid, bottom) */
.float--r1 {
  right: -20px;
  top: 10%;
  width: 150px;
  transform: rotate(-6deg);
}
.float--r2 {
  right: -60%;
  top: 34%;
  width: 170px;
  transform: rotate(-4deg);
}
.float--r3 {
  right: 8%;
  top: 54%;
  width: 120px;
  transform: rotate(6deg);
}

/* depth scaling (will be updated by JS for parallax) */
.floating[data-depth="0.2"] {
  z-index: 22;
}
.floating[data-depth="0.4"] {
  z-index: 21;
}
.floating[data-depth="0.6"] {
  z-index: 19;
}
.floating[data-depth="0.8"] {
  z-index: 18;
}

/* ---------- Responsive adjustments ---------- */
@media (min-width: 720px) {
  .badge-img {
    height: 44px;
  }
}

@media (min-width: 980px) {
  .hero__subtitle {
    font-size: 16px;
  }
  .video-wrap {
    width: 64%;
  }
  .float--l1 {
    left: 4%;
  }
  .float--l2 {
    left: 3%;
  }
  .float--r1 {
    right: 4%;
  }
  .float--r2 {
    right: 3%;
  }
}

/* Mobile: hide some decorations & stack */
@media (max-width: 600px) {
  .hero {
    padding: 12px;
  }

  .header {
    padding: 4px 20px;
  }

  .hero__subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
  .video-wrap {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }
  /* hide two side images to keep area clean */
  .float--l1,
  .float--r1 {
    display: none;
  }
  .float--l3,
  .float--r3 {
    display: none;
  }
  .float--l2 {
    left: 2%;
    top: 56%;
    width: 120px;
    transform: rotate(3deg);
  }
  .float--r2 {
    right: 2%;
    top: 56%;
    width: 120px;
    transform: rotate(-3deg);
  }
  .badge-img {
    height: 36px;
  }
}

/* small accessibility nicety: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .floating {
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  /* Приховуємо slide3 і slide6 */
  .float--l3, /* slide3 */
  .float--r2,  /* slide6 */ 
  .float--l2 {
    display: none;
  }
}

@media (max-width: 1100px) {
  .float--l1,
  .float--r1,
  .float--l3,
  .float--r3 {
    display: none;
  }
}

.logo-slider-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  gap: 40px; /* 🔹 відстань між логотипами */
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Базова анімація — буде підлаштована JS */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Відгуки */
.feedback-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 15px;

  @media screen and (max-width: 1010px) {
    display: none;
  }
}

.feedback-section {
  background: #e9f3f1;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* ===== LEFT (HEADER) ===== */
.feedback-header {
  flex: 1 1 200px;
  min-width: 180px;
}

.feedback-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.feedback-stars img {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
}

.feedback-brand {
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #007f5f;
}

.feedback-brand img {
  width: 30px;
}

/* ===== SLIDER ===== */
.feedback-slider {
  flex: 3;
  position: relative;
  overflow: hidden;
}

.feedback-track {
  display: flex;
  transition: transform 0.5s ease;
}

.feedback-card {
  border-radius: 12px;
  padding: 24px;
  margin: -10px 32px;
  flex: 0 0 235px;
  box-sizing: border-box;
}

.feedback-card-stars img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.feedback-card-title {
  margin: 10px 0 6px;
  font-weight: 600;
  font-size: 1.1rem;
}

.feedback-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.feedback-author {
  font-size: 0.85rem;
  color: #555;
}

/* ===== ARROWS ===== */
.feedback-arrow {
  position: absolute;
  top: 10px;
  background: #e9f3f1;
  border: 1px solid #007f5f;
  color: #007f5f;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.feedback-prev {
  left: 0;
}

.feedback-next {
  right: 0;
}

.feedback-arrow:hover {
  background: #007f5f;
  color: #fff;
}

.feedback-card .feedback-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.feedback-card .feedback-link:focus,
.feedback-card .feedback-link:hover {
  text-decoration: none;
  outline: none;
  /* опційно: легкий ховер-ефект, якщо треба */
  /* filter: brightness(0.98); */
  cursor: pointer;
}

/* ======= ADAPTIVE ======= */

/* --- Tablets --- */
@media (max-width: 992px) {
  .feedback-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feedback-header {
    margin-bottom: 10px;
  }

  .feedback-slider {
    width: 100%;
    padding-top: 40px;
  }

  .feedback-card {
    flex: 0 0 280px;
  }
}

/* --- Phones --- */
@media (max-width: 768px) {
  .feedback-section {
    flex-direction: column;
    padding: 18px;
    border-radius: 10px;
  }

  .feedback-header {
    text-align: center;
  }

  .feedback-title {
    font-size: 1.3rem;
  }

  .feedback-stars img {
    width: 130px;
  }

  .feedback-slider {
    padding-top: 0;
  }

  .feedback-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .feedback-card {
    flex: 0 0 90%;
    margin: 0 auto;
    scroll-snap-align: center;
  }

  /* 🔹 Стрілки акуратно всередині, не вилазять */
  .feedback-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .feedback-prev {
    left: 6px;
  }

  .feedback-next {
    right: 6px;
  }
}

.feedback-footer {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #bdc9c9; /* зелений Trustpilot */
  font-weight: 200;
  text-align: left;
}

/* На мобільних можна центровано */
@media (max-width: 768px) {
  .feedback-footer {
    text-align: center;
  }
}

/* --- Very small screens --- */
@media (max-width: 480px) {
  .feedback-card {
    padding: 18px;
    flex: 0 0 92%;
  }

  .feedback-stars img {
    width: 110px;
  }

  .feedback-arrow {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

.reviews-mobile {
  background: #032b22;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

/* ===== Header ===== */
.reviews-header {
  text-align: center;
  margin-bottom: 10px;
}

.reviews-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.reviews-header .stars img {
  width: 130px;
  height: auto;
}

.reviews-header .trustpilot {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00b67a;
  font-weight: 600;
  gap: 4px;
  margin-top: 6px;
}

.reviews-header .trustpilot img {
  width: 16px;
}

.mobile-reviews {
  background: #032b22;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  font-family: "Inter", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Header ===== */
.mobile-reviews-header {
  text-align: center;
  margin-bottom: 12px;
}

.mobile-reviews-header h3 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mobile-reviews-header .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.mobile-reviews-header .stars img {
  width: 130px;
  height: auto;
}

.mobile-reviews-header .trustpilot {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00b67a;
  font-weight: 600;
  gap: 4px;
  margin-top: 6px;
}

.mobile-reviews-header .trustpilot img {
  width: 16px;
}

/* ===== Subtitle ===== */
.mobile-reviews-subtitle {
  color: #b4d5c8;
  font-size: 0.3rem;
  margin: 12px 0 16px;
  text-align: left;
}

/* ===== Scrollable container ===== */
.reviews-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}

.reviews-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* 🔹 За замовчуванням прихований (для великих екранів) */
.mobile-reviews-vertical {
  display: none;
}

/* 🔹 З’являється тільки на екранах до 1010px */
@media (max-width: 1010px) {
  .mobile-reviews-vertical {
    background: #032b22;
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    font-family: "Inter", sans-serif;
    max-width: 600px;
    width: calc(
      100% - 32px
    ); /* 🔹 Вираховуємо ширину з відступами по 16px з кожного боку */
    margin: 0 auto; /* 🔹 Центрує блок */
    display: flex;
    flex-direction: column;
  }
}

/* ===== Header ===== */
.mobile-reviews-header {
  text-align: center;
  margin-bottom: 12px;
}

/* 🔹 Вирівнюємо Excellent + зірки в один рядок */
.mobile-reviews-header .header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1010px) {
  .mobile-reviews-vertical {
    padding-inline: 16px; /* відступи по боках */
  }
}

.mobile-reviews-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.mobile-reviews-header .header-top img {
  width: 120px;
  height: auto;
}

.mobile-reviews-header .trustpilot {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00b67a;
  font-weight: 600;
  gap: 4px;
  margin-top: 6px;
}

.mobile-reviews-header .trustpilot img {
  width: 16px;
}

/* ===== Subtitle ===== */
.mobile-reviews-subtitle {
  color: #b4d5c8;
  font-size: 0.7rem;
  margin: 10px 0 16px;
  text-align: left;
}

/* ===== Scrollable vertical area ===== */
.reviews-vertical-scroll {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #00b67a #032b22;
}

/* Chrome / Safari */
.reviews-vertical-scroll::-webkit-scrollbar {
  width: 6px;
}

.reviews-vertical-scroll::-webkit-scrollbar-thumb {
  background-color: #00b67a;
  border-radius: 10px;
}

.reviews-vertical-scroll::-webkit-scrollbar-track {
  background-color: #032b22;
}

/* ===== Review Card ===== */
.review-card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 14px;
  box-sizing: border-box;
}

.review-stars img {
  width: 110px;
  height: auto;
  margin-bottom: 6px;
}

.review-meta {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 4px;
}

.review-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

.review-text.short {
  color: #00b67a;
  font-weight: 600;
  margin-top: 8px;
  text-align: right;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .mobile-reviews-vertical {
    padding: 16px;
  }

  .mobile-reviews-header h3 {
    font-size: 1.2rem;
  }

  .mobile-reviews-header .header-top img {
    width: 100px;
  }

  .reviews-vertical-scroll {
    max-height: 350px;
  }

  .review-title {
    font-size: 0.95rem;
  }
}

/* --- Центруємо "Read More" --- */
.review-more {
  margin-top: 10px;
  text-align: center;
}

.read-more {
  background: none;
  border: none;
  color: #00b67a;
  font-weight: 300;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: none;
}

/* --- Прихований текст --- */
.hidden-text {
  display: none;
  margin-top: 8px;
  color: #333;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
}

/* --- Активний стан (показати текст) --- */
.review-more.active .hidden-text {
  display: block;
}

.review-more.active .read-more {
  color: #007f5f;
}

/* Калькулятор */

.calculator-section {
  margin-top: 50px;
  background-color: #002a2c;
  width: 100%;
  padding: 40px 20px;
}

.calculator-container {
  background: #ffffff;
  color: #000;
  border-radius: 16px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .calculator-info {
    flex: none;
  }
}

.calculator-info {
  flex: 1 1 400px;
  position: relative;
  padding-right: 30px;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    flex: none;
  }
}

/* Фон лише для великих екранів */
@media (min-width: 1024px) {
  .calculator-info {
    background-image: url("/img/fone.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 90%; /* збільшене зображення */
  }

  /* затемнення прозорим шаром */
  .calculator-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(
      255,
      255,
      255,
      0.968
    ); /* робить фон світлішим і напівпрозорим */
    backdrop-filter: brightness(1); /* додаткове затемнення ефектом */
    z-index: 1;
  }

  /* щоб текст залишався поверх */
  .calculator-info > * {
    position: relative;
    z-index: 2;
  }
}

/* При мобільному — прибираємо фон */
@media (max-width: 1023px) {
  .calculator-info {
    background-image: none;
    background: none;
    padding: 0;
  }

  .calculator-info::before {
    display: none;
    padding: 0;
  }
}

/* Фон лише для великих екранів */
@media (min-width: 1024px) {
  .calculator-info {
    background-image: url("/img/fone.svg");
    padding: 0;
  }
}

/* При мобільному — прибираємо фон */
@media (max-width: 1023px) {
  .calculator-info {
    background-image: none;
    background: none;
    padding: 0;
  }
}

.calculator-tag {
  margin-top: 50px;
  font-size: 10px;
  color: #00a99d;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calculator-desc {
  color: #a8a8a8;
  line-height: 1.5;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 100;
}

.calculator-info h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #0d0d0d; /* темний для контрасту з білим фоном */
}

.calculator-box {
  flex: 1 1 400px;
}

label {
  display: block;
  font-weight: 100;
  margin-bottom: 5px;
}

.main-label {
  color: rgb(45, 45, 45);
  font-size: 12px;
}

/* === Градієнтна лінія для range input === */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(to right, white, rgb(4, 146, 150));
  outline: none;
  margin: 12px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Chrome / Safari */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00a99d;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00a99d;
  border: 2px solid #fff;
  cursor: pointer;
}
input[type="range"]::-moz-range-track {
  background: linear-gradient(to right, white, rgb(4, 146, 150));
  height: 6px;
  border-radius: 4px;
}

/* Edge / IE */
input[type="range"]::-ms-track {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: linear-gradient(to right, white, rgb(4, 146, 150));
}
input[type="range"]::-ms-fill-upper {
  background: linear-gradient(to right, white, rgb(4, 146, 150));
}

.value-display {
  font-weight: 500;
  margin-bottom: 20px;
}

.result-box {
  background: linear-gradient(90deg, #00a99d, #007a6b);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.result-box p {
  margin-bottom: 5px;
  font-weight: 500;
}

.result-box h3 {
  font-size: 2rem;
}

.note {
  font-size: 0.7rem;
  color: #cbcbcb;
  margin-top: 15px;
  line-height: 1.4;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .calculator-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .calculator-info h2 {
    font-size: 1.5rem;
  }

  .result-box h3 {
    font-size: 1.6rem;
  }
}

.value-display {
  font-weight: 400;
  font-size: 1rem;
  color: #0d0d0d; /* світло-сірий */
  margin-bottom: 15px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  margin-top: -5px;
  margin-bottom: 20px;
}

.range-labels .min-label,
.range-labels .max-label {
  user-select: none;
}

/* Відео */
.subtitle {
  text-align: center;
  margin-top: 40px;
  color: #0d9488;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.subtitle2 {
  text-align: center;
  font-weight: 600;
  font-size: 50px;
  margin: 20px;
}

/* Сітка */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* базово — 2 в ряд */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Планшети і десктопи */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Мобільні */
@media (max-width: 767px) {
  .video-grid {
    padding-left: 16px; /* 🔹 Відступ зліва */
    padding-right: 16px; /* 🔹 Відступ справа */
  }
}

.video-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Кнопка play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(16, 185, 129, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background-color: rgb(5, 150, 105);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}

.play-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}

/* Зелений блок під відео */
.info {
  background-color: #0d9488;
  color: white;
  text-align: center;
  padding: 12px 0;
}

.name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.country {
  font-size: 13px;
}

/* ======== Модальне вікно ======== */
.video-modal {
  display: none; /* приховано за замовчуванням */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90%;
  width: 500px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
}

.close-btn:hover {
  color: #0d9488;
}

.hidden-video {
  display: none;
}

/* Кнопка Show more */
.show-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

#showMoreBtn {
  background: none;
  border: none;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

#showMoreBtn:hover {
  color: #0d9488;
  text-decoration: none;
}

/* Кнопка "View More Testimonials" */
.view-more-wrapper {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  top: -100px;
  margin: -40px 0 20px;
}

@media screen and (max-width: 768px) {
  .view-more-wrapper {
    top: 30px;
  }
}

.hidden-view-more {
  display: none;
}

.view-more-btn {
  display: inline-block;
  border: 1px solid #0d9488;
  color: #0d9488;
  background: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 rgba(13, 148, 136, 0); /* початково без тіні */
}

/* Ефект наведення */
.view-more-btn:hover {
  background: rgba(13, 148, 136, 0.9);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(13, 148, 136, 0.4);
  text-decoration: none;
}

/* Ефект натискання (active) */
.view-more-btn:active {
  transform: scale(1.04);
  background: rgba(13, 148, 136, 0.8);
}

/* Промо Секція */
/* Основний контейнер */
.promo-section {
  padding: 80px 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif; /* ✅ додано шрифт */
}

@media screen and (max-width: 768px) {
  .promo-section {
    padding: 20px;
  }
}

.promo-container {
  display: flex;
  flex-wrap: wrap;
  background: #01332f; /* темно-зелений фон */
  border-radius: 16px;
  color: #fff;
  max-width: 1200px;
  overflow: hidden;
  width: 100%;
}

/* Текстова частина */
.promo-text {
  flex: 1 1 400px;
  padding: 40px;
  font-family: "Inter", sans-serif; /* ✅ додано шрифт */
}

.promo-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif; /* ✅ додано шрифт */
}

.promo-text h2 span {
  color: #fff;
  font-family: "Inter", sans-serif; /* ✅ додано шрифт */
}

.promo-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #e6e6e6;
  font-family: "Inter", sans-serif; /* ✅ додано шрифт */
}

/* Кнопка */
.promo-btn {
  background-color: #00bfa6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background-color: #00a18e;
}

/* Сітка зображень */
.promo-images {
  flex: 1 1 600px; /* робимо блок ширшим */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 40px;
}

.promo-images img,
.promo-images video {
  width: 100%;
  height: 160px; /* робимо нижчими */
  object-fit: cover;
  border-radius: 8px;
}

/* Відео виглядає як фото */
.promo-images video {
  pointer-events: none;
  filter: brightness(0.9);
  border: none;
}

/* Адаптивність */
@media (max-width: 900px) {
  .promo-container {
    flex-direction: column;
  }

  .promo-images {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }

  .promo-images img,
  .promo-images video {
    height: 140px;
  }
}

@media (max-width: 600px) {
  .promo-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .promo-images img,
  .promo-images video {
    height: 120px;
  }
}

/* Блок Статистика */
/* Основний контейнер */
.comparison-section {
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 20px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .comparison-section { 
    padding: 0 20px 40px;
  }
}

/* Заголовки */
.subtitle {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  color: #0d9488;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.comparison-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.comparison-desc {
  font-family: "Inter", sans-serif;
  color: #6b7280;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* Таблиця */
.comparison-table {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e5e7eb;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  table-layout: fixed; /* ✅ фіксуємо ширину */
}

/* Ширини колонок */
th:first-child,
td:first-child {
  width: 20%;
}

th:nth-child(2),
td:nth-child(2),
th:nth-child(3),
td:nth-child(3) {
  width: 40%;
}

th,
td {
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  border-right: 1px solid #e5e7eb;
}

th:last-child,
td:last-child {
  border-right: none;
}

th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

td {
  border-top: 1px solid #f1f3f5;
  color: #374151;
}

tr td:first-child {
  font-weight: 500;
  color: #111827;
}

td:nth-child(2) {
  font-weight: 500;
}

td:nth-child(3) {
  font-weight: 500;
}

/* ===== Адаптивність ===== */
@media (max-width: 768px) {
  .comparison-title {
    font-size: 26px;
  }

  .comparison-desc {
    font-size: 15px;
  }

  th,
  td {
    font-size: 14px;
    padding: 12px;
  }

  /* ❌ Ховаємо 3-й стовпець на мобільних */
  th:nth-child(1),
  td:nth-child(1) {
    display: none;
  }

  /* Перерозподіл ширини решти стовпців */
  th:first-child,
  td:first-child {
    width: 40%;
  }

  th:nth-child(2),
  td:nth-child(2) {
    width: 60%;
  }
}

/* Блок з Фото */

/* Блок з Фото */
.steps-section {
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .steps-section {
    padding: 0 20px;
  }
}

.steps-subtitle {
  text-transform: uppercase;
  color: #0d9488;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.steps-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #111827;
}

/* === Загальний контейнер із фоном (рамка) === */
.steps-wrapper {
  background: #01332f; /* Темно-зелений фон навколо */
  border-radius: 24px;
  padding: 30px; /* Відступ усередині рамки */
  max-width: 1200px;
  margin: 0 auto; /* Центруємо */
}

/* Сітка */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Картки */
.step-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 12px 0 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: -30px;
}

.step-card img {
  width: 100%;
  height: auto;
  object-fit: cover; /* щоб зображення не спотворювалося */
  border-radius: 12px;
  margin-top: auto;
}

/* ===== Адаптивність ===== */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-title {
    font-size: 30px;
  }

  .steps-wrapper {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-title {
    font-size: 26px;
  }

  .steps-wrapper {
    padding: 16px;
  }
}

/* Рекомандація */
/* === Основні стилі === */
.intro-section {
  font-family: "Inter", sans-serif;
  background: #fff;
  text-align: center;
  padding: 0px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .intro-section {
    padding: 0;
  }
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Заголовок */
.intro-subtitle {
  text-transform: uppercase;
  color: #0d9488;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.intro-title {
  font-size: 32px;
  font-weight: 100;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 40px;
}

.intro-title span {
  font-weight: 700;
}

/* === Основні стилі секції === */
.intro-section {
  font-family: "Inter", sans-serif;
  background: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.intro-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* === Заголовок === */
.intro-subtitle {
  text-transform: uppercase;
  color: #0d9488;
  font-size: 13px;
  font-weight: 100;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.intro-title {
  font-size: 32px;
  font-weight: 100;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 40px;
}

.intro-title span {
  font-weight: 100;
}

/* === Список === */
.intro-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-list li {
  background: #f9fafb;
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #374151;
  box-shadow: 0 0 0 1px #e5e7eb;
  line-height: 1.6;
  display: flex;
  justify-content: center; /* центруємо контент по горизонталі */
  align-items: center; /* центруємо по вертикалі */
  gap: 8px; /* 🔥 відступ між галочкою і текстом */
  transition: background 0.3s ease, transform 0.2s ease;
}

.intro-list li::before {
  content: "✓";
  color: #0d9488;
  font-weight: 700;
  font-size: 18px;
  position: static; /* 🔥 прибираємо абсолют */
}

.intro-list li:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* === Кнопка === */
.intro-btn {
  background-color: #0d9488;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intro-btn:hover {
  background-color: #0b7f76;
  transform: translateY(-2px);
}

/* === Бульбашки з цифрами === */
.bubble {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 13px;
  color: #111827;
  font-weight: 500;
  white-space: nowrap;
}

.bubble-left {
  left: -80px;
}

.bubble-left.top {
  top: 20px;
}

.bubble-left.bottom {
  top: 250px;
}

.bubble-right {
  right: -90px;
  top: 40px;
}

/* === Адаптивність === */
@media (max-width: 1024px) {
  .bubble {
    display: none; /* ховаємо бульбашки на планшетах і нижче */
  }

  .intro-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .intro-title {
    font-size: 26px;
  }

  .intro-list li {
    font-size: 14px;
    padding: 14px 16px;
    width: 100%;
  }

  .intro-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (max-width: 500px) {
  .intro-title {
    font-size: 22px;
  }

  .intro-list li {
    font-size: 13px;
    padding: 12px;
  }

  .intro-list li::before {
    left: 12px;
    font-size: 14px;
  }
}

/* Фото з підписом */

/* === Основний контейнер === */
.video-course {
  font-family: "Inter", sans-serif;
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Фонове зображення */
.video-bg {
  position: relative;
  width: 100%;
  height: 420px; /* базова висота */
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Напівпрозорий шар */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Контент */
.video-content {
  position: absolute;
  bottom: 40px;
  right: 50px;
  color: #fff;
  text-align: right;
  max-width: 480px;
  z-index: 2;
}

.video-content h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Список відео */
.video-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.video-list li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.video-list .time {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin: 0 10px;
}

.video-list .title {
  text-align: right;
  font-weight: 400;
  color: #fff;
}

.video-list .part {
  color: #9ca3af;
  font-size: 13px;
  min-width: 50px;
  text-align: right;
}

/* === Адаптивність === */

/* Планшети */
@media (max-width: 900px) {
  .video-bg {
    height: 360px;
  }

  .video-content {
    right: 30px;
    bottom: 25px;
    max-width: 380px;
  }

  .video-content h2 {
    font-size: 20px;
  }

  .video-list li {
    font-size: 13px;
  }
}

/* Мобільні */
@media (max-width: 900px) {
  /* Зберігаємо красиві відступи й заокруглення */
  .video-course {
    padding: 0 16px; /* відступи з боків */
    border-radius: 20px;
  }

  .video-bg {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
  }

  .video-content {
    bottom: 15px;
    right: 16px; /* відступ праворуч */
    left: auto; /* прибираємо вирівнювання вліво */
    text-align: right; /* залишаємо весь текст справа */
    max-width: calc(100% - 32px);
  }

  .video-content h2 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .video-list li {
    font-size: 11px;
    margin-bottom: 6px;
    justify-content: flex-end; /* елементи вирівняні праворуч */
    text-align: right;
  }

  .video-list .time {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 4px; /* щоб відступ був зліва, бо текст праворуч */
  }

  .video-list .part {
    font-size: 11px;
  }
}

/* FAQ */
/* === FAQ Section === */
.faq-section {
  font-family: "Inter", sans-serif;
  padding: 20px;
  text-align: left;
  border-radius: 12px;
  margin-top: 40px;
}

.faq-subtitle {
  font-family: "Inter", sans-serif;
  color: #0d9488;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.faq-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #111827;
  margin-bottom: 40px;
}

/* Контейнер */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  font-family: "Inter", sans-serif;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Питання */
.faq-question {
  font-family: "Inter", sans-serif;
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 200;
  color: #111;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question .dot {
  width: 10px;
  height: 10px;
  background: #0d9488;
  border-radius: 50%;
  margin-right: 12px;
}

/* Відповідь */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 12px 20px 18px;
}

/* Кнопка Telegram */
.faq-item.telegram {
  text-align: center;
  background: none;
}

.faq-item.telegram a {
  font-family: "Inter", sans-serif;
  display: inline-block;
  background: #0d9488;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.faq-item.telegram a:hover {
  background: #0b7c73;
}

.faq-item.telegram .dot {
  background: #fff;
  margin-right: 10px;
}

/* === Адаптивність === */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Білий кружок перед текстом */
.faq-item.telegram .dot {
  background: #0b7c73;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Footer */
/* === Footer === */
.footer {
  background: #012c2b;
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
  padding: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Ліва частина */
.footer-left {
  flex: 1 1 400px;
}

@media screen and (max-width: 999px) {
  .footer-left {
    display: none;
  }
}

.footer-logo {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-logo .logo-small {
  font-weight: 400;
  font-size: 16px;
  color: #00bfa6;
}

.footer-logo span {
  color: #fff;
}

.footer-desc {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-copy {
  color: #9ca3af;
  font-size: 13px;
}

.footer-copy a {
  color: #00bfa6;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Права частина */
.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-column a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00bfa6;
}

/* Лінія */
.footer-line {
  border: none;
  border-top: 1px solid #024442;
  margin: 30px auto;
  max-width: 1300px;
}

/* FCA Notice */
.footer-fca {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  text-align: left;
}

/* Кнопка */
.footer-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-button2 {
  background-color: #00bfa6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-button2:hover {
  background-color: #00a18e;
}

/* === Адаптивність === */
@media (max-width: 900px) {
  .footer {
    padding: 50px 30px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .footer-fca {
    text-align: center;
    font-size: 11px;
    padding: 0 10px;
  }

  .footer-btn {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-column h4 {
    margin-bottom: 6px;
  }

  .footer-fca {
    font-size: 10.5px;
    line-height: 1.4;
  }

  .cta-button2 {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* === Плаваюча кнопка === */
.floating-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.floating-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.cta-button2 {
  background-color: #00bfa6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.cta-button2:hover {
  background-color: #00a18e;
  transform: translateY(-2px);
}

/* На мобільних — трохи більша кнопка */
@media (max-width: 600px) {
  .cta-button2 {
    padding: 16px 22px;
    font-size: 14px;
  }

  .floating-btn {
    bottom: 16px;
  }
}

.hero__actions {
  position: relative;
  z-index: 5; /* щоб бути вище оверлеїв */
}

.cta-button {
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: all; /* гарантує клікабельність */
}

.footer-logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.footer-logo-link:hover {
  opacity: 0.9;
}