/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #111;
  font-size: 15px;
}

.container { width: 94%; max-width: 1200px; margin: auto; }
.small { max-width: 600px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
  padding: 15px 0;
}

.nav { display: flex; justify-content: space-between; align-items: center; }

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-small {
  padding: 8px 14px;
  background: #f5c842;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
}
.logo img { width: 120px; }

/* ===== HERO ===== */
.hero {
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

.hero {
  position: relative;
  background: url('https://repair.ochki.kiev.ua/img/baner-landing.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(77, 119, 188, 0.06);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; }
.hero h1 { 
  font-size: 48px;
  margin-bottom: 20px;
  width: 45%;
  color: #222;
   }
.hero-content p {
  width: 35%;
  color: #222;
  font-size: 18px;
}
.btn {
  display: inline-block;
  background: #f5c842;
  color: #141c2e;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 38px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}
.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(245, 200, 66, 0.6);
  background: #f0bc20;
}

.hero .btn { margin-top: 30px; }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section.light { background: #f7f7f7; }
.section.dark { background: #111; color: #fff; }
.section-title { font-size: 36px; margin-bottom: 50px; font-weight: 800; }

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 15px; }

input, textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}

.full { width: 100%; }
.footer { text-align: center; padding: 40px; background: #f2f2f2; }

/* ===== FEATURES ===== */
.features {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 500;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.features li:hover { transform: translateX(6px); }

.features .icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: static;
}

.features .line { display: none; }

.features svg {
  width: 28px;
  height: 28px;
  stroke: #f2b705;
  stroke-width: 1.8;
  fill: none;
  transition: 0.3s ease;
}

.features li:hover svg { stroke: #ffffff; }

/* ===== ACCORDION ===== */
.accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.item-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-title { font-weight: 600; }
.right { display: flex; align-items: center; gap: 16px; }
.item-header b { color: #f2b705; }

.icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.line {
  position: absolute;
  background: #111;
  transition: 0.3s ease;
}

.line.h { width: 18px; height: 2px; top: 8px; left: 0; }
.line.v { width: 2px; height: 18px; left: 8px; top: 0; }
.item.active .line.v { transform: scaleY(0); }

.item-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 20px;
}

.item-body p {
  padding-bottom: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== REPAIR SERVICES CARDS ===== */
.repair-section {
  padding: 80px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.repair-section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #141c2e;
  margin-bottom: 36px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.repair-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(20, 28, 46, 0.06);
  transition: box-shadow 0.25s ease;
  cursor: default;
}

.repair-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #f5c842;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 20px 20px 0 0;
}

.repair-card:hover { box-shadow: 0 12px 40px rgba(20, 28, 46, 0.12); }
.repair-card:hover::before { transform: scaleX(1); }

.repair-card__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

.repair-card__icon {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  position: static;
}

.repair-card__icon svg { width: 100%; height: 100%; }
.repair-card__header { flex: 1; }

.repair-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #141c2e;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.repair-card__desc {
  font-size: 0.875rem;
  color: #6b7490;
  line-height: 1.65;
}

.repair-card__footer {
  padding: 0px 0 25px;
  display: flex;
  justify-content: flex-end;
}

.repair-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5c842;
  color: #141c2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, gap 0.2s;
  white-space: nowrap;
}

.repair-card__btn:hover { background: #f0bc20; transform: scale(1.04); gap: 12px; }

.repair-card__btn .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.repair-card__btn.is-open .btn-arrow { transform: rotate(90deg); }

/* ===== PRICE PANEL ===== */
.price-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-panel.is-open { max-height: 2000px; }

.price-panel__inner {
  border-top: 1.5px solid #f0f1f5;
  padding: 4px 0 8px;
}

.price-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #f0f1f5;
  cursor: pointer;
}

.price-item:last-child { border-bottom: none; }
.price-item__left { flex: 1; }

.price-item__name {
  font-size: 16px;
  color: #2c3554;
  font-weight: 500;
  line-height: 1.4;
}

.price-item__desc {
  font-size: 0.8rem;
  color: #9aa0b8;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.price-item.is-expanded .price-item__desc {
  max-height: 200px;
  margin-top: 6px;
  font-size: 15px;
}

.price-item__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.price-item__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #141c2e;
  white-space: nowrap;
}

.price-item__toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  position: static;
}

.price-item__toggle svg { width: 14px;
  height: 14px; }
.price-item__toggle .line { display: none; }

.price-item.is-expanded .price-item__toggle {
  background: #f5c842;
  transform: rotate(45deg);
}

/* ===== GLASSES FLOAT ANIMATION ===== */
.glasses-icon { animation: float 4s ease-in-out infinite; }
.repair-card:nth-child(2) .glasses-icon { animation-delay: -1s; }
.repair-card:nth-child(3) .glasses-icon { animation-delay: -2s; }
.repair-card:nth-child(4) .glasses-icon { animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .accordion { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .repair-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .repair-card { padding: 24px 20px 0; }
  .repair-card__title { font-size: 0.95rem; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
}


/* ============================================================
   BLOCK 1: ЯК ЗАМОВИТИ ПОСЛУГУ
   ============================================================ */

.how-outer {
  background: #f4f7fc;
  padding: 80px 0;
}

.how-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, #eef1f8 0%, #f7f8fc 60%, #e4eaf6 100%);
  border-radius: 28px;
  padding: 64px 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 8px 48px rgba(20, 28, 80, 0.09);
}

.how-title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #141c2e;
  margin-bottom: 44px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  height: calc(100% - 12px);
  border-left: 2px dashed rgba(212, 184, 58, 0.5);
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c842, #f0a500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #141c2e;
  box-shadow: 0 4px 14px rgba(245, 200, 66, 0.4);
  position: relative;
  z-index: 1;
}

.step__body { padding: 8px 0 36px; }
.step:last-child .step__body { padding-bottom: 0; }

.step__title {
  font-size: 0.975rem;
  font-weight: 600;
  color: #1a2340;
  line-height: 1.4;
  margin-bottom: 7px;
}

.step__sub {
  font-size: 0.83rem;
  color: #6b7490;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.delivery-badge:hover { opacity: 0.8; transform: translateY(-1px); }
.delivery-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.delivery-badge--nova { background: #fff0f0; color: #c0392b; }
.delivery-badge--ukr  { background: #fffbe6; color: #9a6f00; }

/* Map placeholder */
.how-map-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dedede;
}

.how-map-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(1.05);
}

.how-map-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: #141c2e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(20, 28, 80, 0.14);
  z-index: 1;
}

@media (max-width: 820px) {
  .how-section {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 36px;
    width: 94%;
  }
  .cf-upload-btn svg {
  min-width: 18px;
}
}


/* ============================================================
   BLOCK 2: ЗАЛИШИЛИСЬ ПИТАННЯ (FAQ CTA + VIDEO)
   ============================================================ */

.faq-cta-section {
  padding: 80px 0;
}

.faq-cta-inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-cta-inner--new {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
.ba-container {
  width: 94%;
}

.faq-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #141c2e;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.faq-cta-desc {
  font-size: 1rem;
  color: #5a6480;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}

.faq-cta-btn {
  display: inline-block;
  background: #f5c842;
  color: #141c2e;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 38px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}

.faq-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(245, 200, 66, 0.6);
  background: #f0bc20;
}

.faq-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(20, 28, 80, 0.16);
}

.faq-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 820px) {
  .faq-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ============================================================
   BLOCK 3: ВІДГУКИ (Google-style carousel)
   ============================================================ */

.reviews-section {
  background: #fff;
  padding: 80px 0 60px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #141c2e;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.reviews-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #6b7490;
  font-weight: 500;
}

.reviews-carousel-wrap {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-track-wrap {
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 0;
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 14px rgba(20, 28, 80, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(20, 28, 80, 0.1);
  transform: translateY(-3px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2340;
  margin-bottom: 4px;
}

.review-stars {
  color: #f5c842;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.875rem;
  color: #4a5470;
  line-height: 1.65;
  margin-bottom: 14px;
}

.review-date {
  font-size: 0.78rem;
  color: #9aa0b8;
}

/* Arrows */
.reviews-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #dde2ee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(20,28,80,0.07);
}

.reviews-arrow:hover {
  border-color: #f5c842;
  background: #fffbea;
  box-shadow: 0 4px 16px rgba(245,200,66,0.25);
}

.reviews-arrow svg { width: 20px; height: 20px; }

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dded;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.active {
  background: #f5c842;
  transform: scale(1.3);
}
.cf-upload-btn {
  margin-top: 10px;
  cursor: pointer;
}
.cf-upload-btn {
  display: flex;
  align-items: center;
  margin-top: 25px;
  font-size: 16px;
}
.cf-upload-btn svg {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.cf-preview-item {
  width: 100px;
  margin-right: 20px;
}
.cf-previews {
  display: flex;
  padding: 5px 0;
}
.cf-preview-item img {
  width: 100%;
  height: 100%;
}
.cf-preview-item__remove {
  background: none;
  border: none;
  color: #f00;
  position: absolute;
  font-size: 14px;
  cursor: pointer;
}




@media (max-width: 900px) {
  .review-card { min-width: calc((100% - 20px) / 2); }
}

@media (max-width: 580px) {
  .review-card { min-width: 100%; }
  .reviews-arrow { display: none; }
}

@media(max-width: 600px){
  .review-card {
    flex: 0 0 100%;
    min-width: 0;
  }
  .reviews-arrow { display: none; }
  .reviews-carousel-wrap { width: 94%; gap: 0; }
}
/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
  background: linear-gradient(135deg, #141c2e 0%, #1e2a42 60%, #0f1726 100%);
  padding: 100px 0;
}

.contact-inner {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.contact-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #8a95b0;
  line-height: 1.65;
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 44px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245, 200, 66, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 200, 66, 0.2);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: 0.75rem;
  color: #6b7490;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item__val {
  font-size: 0.95rem;
  color: #e8ecf8;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-item__val:hover { color: #f5c842; }

/* Socials */
.contact-socials__label {
  font-size: 0.75rem;
  color: #6b7490;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-socials__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  border: 1.5px solid transparent;
}

.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.social-btn--tg  { background: #229ED9; color: #fff; }
.social-btn--viber { background: #7360F2; color: #fff; }
.social-btn--inst {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* Right - form */
.contact-right {
  display: flex;
  align-items: stretch;
}

.contact-form-wrap {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #141c2e;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e8ecf4;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #141c2e;
  background: #f8f9fc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #f5c842;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.12);
}

.cf-btn {
  width: 100%;
  background: #f5c842;
  color: #141c2e;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  font-family: 'Montserrat', sans-serif;
}

.cf-btn:hover {
  background: #f0bc20;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 200, 66, 0.4);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 201;
}
.burger:hover { background: #f5f6fa; }

.burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #141c2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 72vw;
  max-width: 300px;
  height: 100dvh;
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(20, 28, 80, 0.15);
}
.mob-menu.is-open { transform: translateX(0); }

.mob-menu__link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #141c2e;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.mob-menu__link:hover { background: #f5f6fa; color: #f5c842; }

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 46, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mob-overlay.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 760px) {
  .burger { display: flex; }
  nav { display: none; }  /* ховаємо десктопний nav */
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 201;
}
.burger:hover { background: #f5f6fa; }

.burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #141c2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 72vw;
  max-width: 300px;
  height: 100dvh;
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(20, 28, 80, 0.15);
  padding: 30px 28px 40px;
}
.mob-menu.is-open { transform: translateX(0); }

.mob-menu__link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #141c2e;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.mob-menu__link:hover { background: #f5f6fa; color: #f5c842; }

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 46, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mob-overlay.is-open { opacity: 1; pointer-events: auto; }
.faq-wrap{width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 70px;}
.faq-heading{font-family:'Montserrat',sans-serif;font-size:clamp(1.4rem,2.5vw,2rem);font-weight:700;color:#141c2e;margin-bottom:12px;letter-spacing:-0.02em}
.faq-sub{font-size:.95rem;color:#6b7490;margin-bottom:40px;font-family:'Montserrat',sans-serif}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:start}
.faq-col{display:flex;flex-direction:column;gap:12px}
.faq-item{border-radius:16px;overflow:hidden;box-shadow:0 2px 16px rgba(20,28,46,.06);background:#fff}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 22px;cursor:pointer;background:#fff;transition:background .18s}
.faq-q:hover{background:#fafbfe}
.faq-q-left{display:flex;align-items:center;gap:12px}
.faq-num{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:linear-gradient(135deg,#f5c842,#f0a500);display:flex;align-items:center;justify-content:center;font-family:'Montserrat',sans-serif;font-size:.75rem;font-weight:800;color:#141c2e}
.faq-q-text{font-family:'Montserrat',sans-serif;font-size:.9rem;font-weight:600;color:#1a2340;line-height:1.4}
.faq-toggle{flex-shrink:0;width:28px;height:28px;border-radius:50%;background:#f5f6fa;display:flex;align-items:center;justify-content:center;transition:background .2s,transform .3s}
.faq-toggle svg{width:13px;height:13px}
.faq-item.is-open .faq-toggle{background:#f5c842;transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .38s cubic-bezier(.4,0,.2,1)}
.faq-item.is-open .faq-a{max-height:400px}
.faq-a-inner{padding:0 22px 16px 62px;font-family:'Montserrat',sans-serif;font-size:.85rem;color:#4a5470;line-height:1.7;border-top:1.5px solid #f0f1f5}
.faq-item.is-open .faq-a-inner{padding-top:12px}
.faq-a-inner a{color:#141c2e;font-weight:600;text-decoration:underline;text-underline-offset:3px}
@media(max-width:700px){.faq-grid{grid-template-columns:1fr}}


.ba-outer{background:#f4f7fc;padding:80px 0;font-family:'Montserrat',sans-serif}
.ba-container{width:90%;max-width:1200px;margin:0 auto}
.ba-heading{font-size:clamp(1.4rem,2.5vw,2rem);font-weight:700;color:#141c2e;margin-bottom:12px;letter-spacing:-0.02em}
.ba-sub{font-size:.95rem;color:#6b7490;margin-bottom:40px}

.ba-track-outer{overflow:hidden;border-radius:24px;box-shadow:0 4px 32px rgba(20,28,46,.1)}
.ba-track{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1)}
.ba-slide{min-width:100%;flex-shrink:0}

.ba-card{background:#fff;overflow:hidden}

/* Split frame */
.ba-frame{position:relative;width:100%;aspect-ratio: 22/7;display:flex;overflow:hidden}

.ba-half{flex:0 0 50%;position:relative;overflow:hidden}
.ba-half img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;pointer-events:none;display:block}

/* LEFT half — show right portion of "before" image */
.ba-half--before img{object-position:right center}
/* RIGHT half — show left portion of "after" image */
.ba-half--after img{object-position:left center}

/* Fixed centre divider */
.ba-fixed-divider{position:absolute;top:0;bottom:0;left:50%;transform:translateX(-50%);width:4px;background:#f5c842;z-index:5;pointer-events:none}
.ba-fixed-handle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:52px;height:52px;border-radius:50%;background:#f5c842;box-shadow:0 4px 20px rgba(245,200,66,.6);display:flex;align-items:center;justify-content:center}
.ba-fixed-handle svg{width:24px;height:24px}

/* Labels */
.ba-label{position:absolute;top:18px;z-index:6;font-family:'Montserrat',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:5px 14px;border-radius:30px;pointer-events:none}
.ba-label-before{left:18px;background:rgba(20,28,46,.75);color:#fff;backdrop-filter:blur(4px)}
.ba-label-after{right:18px;background:rgba(245,200,66,.95);color:#141c2e}

/* Card body */
.ba-card-body{padding:20px 28px 24px;display:flex;align-items:flex-start;justify-content:space-between;gap:20px;border-top:1.5px solid #f0f1f5}
.ba-card-title{font-size:1rem;font-weight:700;color:#141c2e;margin-bottom:4px}
.ba-card-desc{font-size:.85rem;color:#6b7490;line-height:1.6}

/* Bottom nav */
.ba-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:20px;padding:0 4px}
.ba-dots{display:flex;gap:8px;align-items:center}
.ba-dot{width:8px;height:8px;border-radius:50%;background:#c5cfdf;cursor:pointer;transition:background .2s,width .25s}
.ba-dot.active{background:#f5c842;width:24px;border-radius:4px}
.ba-arrows{display:flex;gap:8px}
.ba-arrow{width:42px;height:42px;border-radius:50%;border:1.5px solid #dde2ee;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:border-color .2s,background .2s,box-shadow .2s}
.ba-arrow:hover{border-color:#f5c842;background:#fffbea;box-shadow:0 4px 14px rgba(245,200,66,.25)}
.ba-arrow svg{width:18px;height:18px}
.ba-counter{font-size:.82rem;font-weight:600;color:#8a96b0}
.ba-counter b{color:#141c2e}



/* ===== FAQ-CTA NEW LAYOUT ===== */
.faq-cta-inner--new {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-cta-text-block {
  max-width: 100%;
}

.faq-cta-text-block .faq-cta-desc {
  margin-bottom: 16px;
  max-width: 100%;
}
.faq-cta-text-block .faq-cta-desc:last-of-type {
  margin-bottom: 32px;
}

/* ===== VIDEOS ROW ===== */
.faq-videos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-video-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 9/16;
  box-shadow: 0 6px 28px rgba(20,28,80,0.13);
  transition: transform 0.22s, box-shadow 0.22s;
}

.faq-video-thumb:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 44px rgba(20,28,80,0.19);
}

.faq-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.faq-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.faq-video-play svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s;
}

.faq-video-thumb:hover .faq-video-play svg {
  transform: scale(1.12);
}

.faq-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== VIDEO POPUP ===== */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 28, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: popupFadeIn 0.25s ease;
}

.video-popup.is-open {
  display: flex;
}

@keyframes popupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.video-popup__inner {
  position: relative;
  width: 90vw;
  max-width: 900px;  /* було 480px */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  background: #000;
  animation: popupSlideUp 0.28s cubic-bezier(0.4,0,0.2,1);
}

.video-popup__video {
  width: 100%;
  display: block;
  max-height: 80vh;  /* було 85vh */
  background: #000;
}

@keyframes popupSlideUp {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.video-popup__video {
  width: 100%;
  display: block;
  max-height: 85vh;
  background: #000;
}

.video-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.video-popup__close:hover {
  background: rgba(245,200,66,0.9);
  transform: scale(1.1);
}

.video-popup__close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 700px) {
  .faq-videos-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .faq-video-play svg { width: 44px; height: 44px; }
  .faq-video-label { font-size: 0.7rem; padding: 20px 8px 8px; }
  .video-popup__inner { max-width: 96vw; }
}
.faq-videos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.faq-video-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 14/9;
  box-shadow: 0 6px 28px rgba(20,28,80,0.13);
  transition: transform 0.22s, box-shadow 0.22s;
}
.cf-contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #141c2e;
}
.cf-contact-row {
  margin-top: 15px;
}
.cf-contact-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cf-way {
  cursor: pointer;
}

.cf-way input[type="radio"] {
  display: none;
}

.cf-way span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1.5px solid #e8ecf4;
  border-radius: 12px;
  background: #f8f9fc;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #6b7490;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
  width: 100%;
}

.cf-way input[type="radio"]:checked + span {
  border-color: #f5c842;
  background: #fffbea;
  color: #141c2e;
  box-shadow: 0 0 0 3px rgba(245,200,66,.15);
}

.cf-way span:hover {
  border-color: #f5c842;
  color: #141c2e;
  background: #fffbea;
}











@media(max-width:600px){
  .ba-outer{padding:40px 0 50px}
  .ba-sub{margin-bottom:24px;font-size:.85rem}

  .ba-fixed-handle{width:36px;height:36px}
  .ba-fixed-handle svg{width:16px;height:16px}
  .ba-fixed-divider{width:3px}

  .ba-label{font-size:.58rem;padding:3px 8px;top:8px;letter-spacing:.04em}
  .ba-label-before{left:8px}
  .ba-label-after{right:8px}

  .ba-card-body{padding:12px 14px 16px}
  .ba-card-title{font-size:.85rem}
  .ba-card-desc{font-size:.76rem}

  .ba-arrows{display:none}
  .ba-bottom{margin-top:12px}
  .ba-track-outer{border-radius:14px}

  .ba-card-body {
  padding: 18px 24px 22px;
  border-top: 1.5px solid #f0f1f5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ba-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #141c2e;
  margin-bottom: 4px;
  white-space: normal;
}

.ba-card-desc {
  font-size: .82rem;
  color: #6b7490;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
}
.ba-card {
  background: #fff;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.ba-slide {
  min-width: 100%;
  flex-shrink: 0;
  min-width: 0; /* важливо для flex */
  width: 100%;
}
}












@media (max-width: 760px) {
  .burger { display: flex; }
  nav { display: none; }  /* ховаємо десктопний nav */
  .logo img {
  width: 80px;
  }
  .logo {
    padding-top: 4px;
  }
  .header {
    padding: 10px 0;
  }
}

@media (max-width: 820px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .repair-section {
  padding: 50px 0;
  width: 94%;
}
.how-outer {
  padding: 30px 0 50px;
}
.how-map-img {
  height: 200px;
}
.faq-cta-section {
  padding: 50px 0;
}
.reviews-section {
  padding: 40px 0 0;
}
.contact-section {
  padding: 30px 0;
}
.footer {
  padding: 30px 0 22px;
}
.ba-container {
  width: 94%;
}
.faq-videos-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.faq-video-thumb {
  aspect-ratio: 16/9;
}
.hero {
  height: 400px;
}
.hero h1 {
  width: 100%;
    font-size: 32px;
    line-height: 38px;
    background-color: #ffffffbf;
    padding: 10px 15px;
    border-radius: 16px;
}
.hero-content p {
  width: 100%;
    font-size: 16px;
    background-color: #ffffffe8;
    padding: 10px 15px;
    border-radius: 16px;
    display: none;
}
.hero {
  background-position: -620px;
}
.hero::before {
    background-color: rgba(237, 244, 255, 0.2);
}
}
.cf-guarantee {
  margin-top: 16px;
  border: 1.5px solid #e8ecf4;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fc;
}

.cf-guarantee__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: #141c2e;
  text-align: left;
}

.cf-guarantee__arrow {
  margin-left: auto;
  transition: transform .3s ease;
  flex-shrink: 0;
}

.cf-guarantee.is-open .cf-guarantee__arrow {
  transform: rotate(180deg);
}

.cf-guarantee__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.cf-guarantee.is-open .cf-guarantee__body {
  max-height: 440px;
}

.cf-guarantee__body p {
  padding: 0 16px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #202020;
  line-height: 20px;
  border-top: 1.5px solid #e8ecf4;
}

.cf-guarantee__body p:first-child {
  padding-top: 14px;
}

@media (min-width: 760px) {
.button-contact {
  display: none !important;
}
}