/* ===============================
   FULL BLEED (safe)
   Apply bleed only when explicitly requested
   =============================== */

/* default alignfull: keep gutters, don't destroy mobile layout */
.alignfull{
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--bo-gutter);
  padding-right: var(--bo-gutter);
}

/* explicit full-bleed sections only */
.bo-bleed.alignfull{
  margin-left: calc(var(--bo-gutter) * -1);
  margin-right: calc(var(--bo-gutter) * -1);
  padding-left: 0;
  padding-right: 0;
}


/* ===============================
   CONTACT FORM 7 — dark theme
   =============================== */

/* Wrapper — ограничиваем ширину, центруем */
.wpcf7 {
  max-width:  640px;
  width:      100%;
  margin-left:  auto;
  margin-right: auto;
}

/* CF7 оборачивает поля в <p> — убираем лишние отступы */
.wpcf7 form p {
  margin:  0 0 6px !important;
  padding: 0        !important;
}

/* bo-form-row custom divs */
.bo-form-row {
  margin-bottom: 6px;
}

.bo-form-row label {
  display: block;
  margin-bottom: 0;
}

/* CF7 вставляет <br> между текстом лейбла и полем — скрываем везде */
.wpcf7 label br,
.bo-form-row label br {
  display: none;
}

/* Голые <label> без bo-form-row (бизнес-форма) — контролируем отступ явно */
.wpcf7 form > label,
.wpcf7 form p > label,
.wpcf7 form label {
  margin-bottom: 6px !important;
}

/* Labels */
.wpcf7 label {
  display:        block !important;
  margin-bottom:  4px  !important;
  font-size:      14px !important;
  font-weight:    500  !important;
  color:          rgba(255,255,255,.75) !important;
  letter-spacing: .02em;
}

/* Text inputs, email, tel, textarea, select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  display:            block             !important;
  width:              100%              !important;
  padding:            12px 16px        !important;
  background:         rgba(255,255,255,.06) !important;
  border:             1px solid rgba(109,223,255,.22) !important;
  border-radius:      10px             !important;
  color:              rgba(255,255,255,.92) !important;
  font-family:        inherit           !important;
  font-size:          15px             !important;
  line-height:        1.4              !important;
  box-sizing:         border-box       !important;
  -webkit-appearance: none;
  transition:         border-color .15s ease, box-shadow .15s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline:      none !important;
  border-color: rgba(109,223,255,.55) !important;
  box-shadow:   0 0 0 3px rgba(109,223,255,.10) !important;
}

/* Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255,255,255,.28) !important;
}

/* Textarea */
.wpcf7 textarea {
  min-height: 140px !important;
  resize:     vertical;
}

/* Select — кастомная стрелка */
.wpcf7 select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(109,223,255,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat:   no-repeat   !important;
  background-position: right 14px center !important;
  padding-right:       36px        !important;
  cursor:              pointer;
}

/* Option — работает в Chrome/Firefox, Safari игнорирует */
.wpcf7 select option {
  background: #0a2832 !important;
  color:      rgba(255,255,255,.92) !important;
}

/* ===============================
   RADIO TOGGLE — liquid glass slider
   Используется в CF7 формах (Residential + Business)
   CF7 структура: span.wpcf7-radio > span.wpcf7-list-item > input + span.wpcf7-list-item-label
   JS (bo-radio-toggle.js) добавляет .bo-toggle-ready и управляет sliding pill
   =============================== */

/* Скрываем нативные radio полностью */
.wpcf7 .wpcf7-radio input[type="radio"] {
  position: absolute !important;
  opacity:  0        !important;
  width:    0        !important;
  height:   0        !important;
  margin:   0        !important;
}

/* Контейнер переключателя */
.wpcf7 .wpcf7-radio.bo-toggle-ready {
  display:        inline-flex   !important;
  flex-wrap:      nowrap        !important;
  gap:            0             !important;
  margin-top:     6px           !important;
  position:       relative;
  padding:        4px;
  background:     rgba(255,255,255,.06);
  border:         1px solid rgba(109,223,255,.18);
  border-radius:  999px;
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 4px 16px rgba(0,0,0,.25);
  max-width:      100%;
  overflow:       hidden;
}

/* Sliding pill — добавляется через JS */
.wpcf7 .wpcf7-radio.bo-toggle-ready .bo-slider-pill {
  position:      absolute;
  top:           4px;
  left:          4px;
  height:        calc(100% - 8px);
  border-radius: 999px;
  background:    linear-gradient(
    135deg,
    rgba(109,223,255,.35) 0%,
    rgba(109,223,255,.18) 100%
  );
  border:        1px solid rgba(109,223,255,.55);
  box-shadow:
    0 0 12px rgba(109,223,255,.25),
    inset 0 1px 0 rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
  transition:    left .22s cubic-bezier(.4,0,.2,1),
                 width .22s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}

/* Элементы переключателя */
.wpcf7 .wpcf7-radio.bo-toggle-ready .wpcf7-list-item {
  position:        relative       !important;
  z-index:         2              !important;
  margin:          0              !important;
  padding:         9px 20px       !important;
  cursor:          pointer        !important;
  border-radius:   999px;
  transition:      color .15s ease;
  white-space:     nowrap;
  display:         inline-flex    !important;
  align-items:     center         !important;
  justify-content: center         !important;
  pointer-events:  all            !important;
}

/* Текст */
.wpcf7 .wpcf7-radio.bo-toggle-ready .wpcf7-list-item-label {
  font-size:   14px                  !important;
  font-weight: 500                   !important;
  color:       rgba(255,255,255,.60) !important;
  line-height: 1                     !important;
  transition:  color .15s ease;
  pointer-events: none;
}

/* Активный элемент */
.wpcf7 .wpcf7-radio.bo-toggle-ready .wpcf7-list-item.bo-active .wpcf7-list-item-label {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(109,223,255,.40);
}

/* File input */
.wpcf7 input[type="file"] {
  display:    block             !important;
  color:      rgba(255,255,255,.70) !important;
  font-size:  14px             !important;
  background: transparent      !important;
  border:     none             !important;
  padding:    0                !important;
  cursor:     pointer;
}

.wpcf7 input[type="file"]::file-selector-button {
  background:    rgba(109,223,255,.12) !important;
  border:        1px solid rgba(109,223,255,.25) !important;
  border-radius: 8px    !important;
  color:         rgba(255,255,255,.85) !important;
  font-size:     13px   !important;
  font-weight:   500    !important;
  padding:       8px 16px !important;
  margin-right:  12px   !important;
  cursor:        pointer;
  transition:    background .15s ease;
}

.wpcf7 input[type="file"]::file-selector-button:hover {
  background: rgba(109,223,255,.22) !important;
}

/* Submit */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display:       block          !important;
  margin:        8px auto 0     !important;
  background:    var(--bo-primary) !important;
  color:         #000              !important;
  border:        none              !important;
  border-radius: 9999px            !important;
  padding:       14px 36px        !important;
  font-size:     16px             !important;
  font-weight:   600              !important;
  cursor:        pointer;
  transition:    transform .2s ease;
  width:         auto             !important;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
}

/* Validation */
.wpcf7 .wpcf7-not-valid-tip {
  color:      rgba(255,100,100,.90) !important;
  font-size:  12px;
  margin-top: 4px;
  display:    block;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: rgba(255,100,100,.55) !important;
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
  margin-top:    16px;
  padding:       12px 16px;
  border-radius: 10px;
  font-size:     14px;
  border:        1px solid;
}

.wpcf7 .wpcf7-mail-sent-ok {
  background:   rgba(109,223,100,.10);
  border-color: rgba(109,223,100,.30);
  color:        rgba(180,255,180,.90);
}

.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked {
  background:   rgba(255,100,100,.10);
  border-color: rgba(255,100,100,.30);
  color:        rgba(255,180,180,.90);
}

/* Legal text */
.bo-form-legal {
  margin-top:  12px;
  font-size:   12px;
  color:       rgba(255,255,255,.40);
  line-height: 1.5;
}

/* ===============================
   SERVICE CARD IMAGE
   =============================== */

.bo-service-card-img {
  margin: 0 !important;
  line-height: 0;
}

.bo-service-card-img img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 15px 15px 0 0 !important;
  display: block !important;
}


/* ===============================
   PROCESS STEPS
   =============================== */

.bo-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bo-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.bo-process-step:last-child {
  border-bottom: none;
}

.bo-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(109, 223, 255, .08);
  border: 1px solid rgba(109, 223, 255, .18);
  color: rgba(109, 223, 255, .80);
}

.bo-process-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.bo-process-content strong {
  font-size: 15px;
  font-weight: 600;
  color: rgba(226, 232, 240, .90);
  line-height: 1.2;
}

.bo-process-content span {
  font-size: 14px;
  color: rgba(226, 232, 240, .55);
  line-height: 1.5;
}


/* ===============================
   TRUST BAR
   =============================== */

.bo-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding: 4px 0;
}

.bo-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(226, 232, 240, .52);
}

.bo-trust-item svg {
  color: rgba(109, 223, 255, .55);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .bo-trust-bar {
    flex-direction: column;
    gap: 10px;
  }
}


/* ===============================
   TRUST BAR
   =============================== */

.bo-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  justify-content: space-between;
  padding: 4px 0;
}

.bo-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.bo-trust-item:last-child {
  border-right: none;
}

.bo-trust-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--bo-primary);
  line-height: 1;
  letter-spacing: .01em;
}

.bo-trust-label {
  font-size: 12px;
  color: rgba(226, 232, 240, .52);
  line-height: 1.3;
}


/* ===============================
   SERVICE CARD IMAGE
   =============================== */

.bo-service-card-img {
  margin: 0 !important;
  width: 100% !important;
}

.bo-service-card-img img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}


/* ===============================
   PROCESS STEPS
   =============================== */

.bo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bo-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bo-step:first-child {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.bo-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(109, 223, 255, .10);
  border: 1px solid rgba(109, 223, 255, .30);
  color: var(--bo-primary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bo-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
}

.bo-step-body strong {
  font-size: 15px;
  font-weight: 600;
  color: rgba(226, 232, 240, .90);
}

.bo-step-body span {
  font-size: 14px;
  color: rgba(226, 232, 240, .55);
  line-height: 1.5;
}


/* ===============================
   TRUST BAR + STEPS mobile
   =============================== */

@media (max-width: 600px) {
  .bo-trust-bar {
    gap: 8px;
  }
  .bo-trust-item {
    min-width: calc(50% - 4px);
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 10px 4px;
  }
}


/* ===============================
   ZIGZAG STEPS
   =============================== */

.bo-step-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--bo-primary) !important;
  opacity: .80;
  margin: 0 0 8px !important;
  line-height: 1 !important;
}

.bo-step-img {
  margin: 0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.bo-step-img img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 16px !important;
}

@media (max-width: 768px) {
  .bo-step-img img {
    height: 220px !important;
  }
}


/* ===============================
   HERO BADGE
   =============================== */

.bo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 40, 50, 0.6);
  border: 1px solid rgba(109, 223, 255, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #6ddfff;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.bo-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ddfff;
  flex-shrink: 0;
}


/* ===============================
   SECTION LABEL
   =============================== */

.bo-section-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(109, 223, 255, .80) !important;
  margin: 0 0 8px !important;
  line-height: 1 !important;
  padding: 0 !important;
}


/* ===============================
   SERVICE CARD hover
   =============================== */

.bo-service-card {
  position: relative;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease !important;
}

.bo-service-card:hover {
  border-color: rgba(109, 223, 255, 0.40) !important;
  background-color: rgba(10, 40, 50, 0.80) !important;
  transform: translateY(-2px) !important;
}


/* ===============================
   TRUST BAR V2 (with icons)
   =============================== */

.bo-trust-bar-v2 {
  background: rgba(10, 40, 50, 0.6);
  border: 1px solid rgba(109, 223, 255, 0.2);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}

.bo-trust-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(109, 223, 255, 0.10);
}

.bo-trust-item-v2:last-child {
  border-right: none;
}

.bo-trust-icon {
  color: #6ddfff;
  margin-bottom: 12px;
}

.bo-trust-v2-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.bo-trust-v2-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .60);
}

@media (max-width: 600px) {
  .bo-trust-bar-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .bo-trust-item-v2 {
    border-right: none;
    border-bottom: 1px solid rgba(109, 223, 255, 0.10);
    padding: 20px;
  }
  .bo-trust-item-v2:nth-child(odd) {
    border-right: 1px solid rgba(109, 223, 255, 0.10);
  }
  .bo-trust-item-v2:nth-last-child(-n+2) {
    border-bottom: none;
  }
}


/* ===============================
   SERVICE CARD — image with overlay
   =============================== */

.bo-card-img-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.bo-card-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.bo-service-card:hover .bo-card-img-photo {
  transform: scale(1.05);
}

.bo-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 14, 20, 0.40);
  z-index: 1;
  transition: background .5s ease;
  mix-blend-mode: multiply;
}

.bo-service-card:hover .bo-card-img-overlay {
  background: rgba(3, 14, 20, 0.20);
}

.bo-card-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6ddfff !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: none !important;
  margin-top: auto;
  padding-top: 16px;
  transition: color .15s ease;
  position: relative;
  z-index: 1;
}

/* Stretched link — вся карточка кликабельна */
.bo-card-arrow-link::after {
  content: "";
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
}

.bo-card-arrow-link:hover {
  color: #fff !important;
}

.bo-card-arrow-link svg {
  transition: transform .15s ease;
}

.bo-card-arrow-link:hover svg {
  transform: translateX(4px);
}


/* ===============================
   ZIGZAG — framed image
   =============================== */

.bo-zig-frame {
  background: rgba(10, 40, 50, 0.6);
  border: 1px solid rgba(109, 223, 255, 0.2);
  border-radius: 16px;
  padding: 10px;
}

.bo-zig-frame-inner {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bo-zig-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ===============================
   CHECKLIST
   =============================== */

.bo-check-list {
  list-style: none !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: rgba(226, 232, 240, .70);
  line-height: 1.4;
}

.bo-check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* На мобиле — float SVG чтобы strong и текст текли в одном потоке */
@media (max-width: 720px) {
  .bo-check-list li {
    display: block;
    overflow: hidden;
  }
  .bo-check-list li svg {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
  }
}


/* ===============================
   EQUAL HEIGHT CARDS
   =============================== */

.bo-equal-cards {
  align-items: stretch !important;
}

.bo-equal-cards > .wp-block-column {
  display: flex !important;
  flex-direction: column !important;
}

.bo-equal-cards > .wp-block-column > .wp-block-group {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Текстовый div после фото — растягивается до низа карточки */
.bo-equal-cards > .wp-block-column > .wp-block-group > .bo-card-img-wrap ~ div {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Legacy: bo-service-card variant */
.bo-equal-cards .wp-block-group.bo-service-card {
  height: 100% !important;
  flex: 1 !important;
}


/* ===============================
   FAQ — hide all native markers
   (fallback until JS is deployed)
   =============================== */

.bo-faq-item,
.bo-faq-question {
  list-style: none !important;
}

.bo-faq-question::-webkit-details-marker,
.bo-faq-question::marker,
details.bo-faq-item > summary::-webkit-details-marker,
details.bo-faq-item > summary::marker {
  display: none !important;
  content: "" !important;
}


/* ===============================
   FAQ V2 — premium accordion
   =============================== */

.bo-faq {
  display: flex;
  flex-direction: column;
}

.bo-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .2s ease;
}

.bo-faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.bo-faq-item.bo-faq-open {
  background: rgba(109, 223, 255, .03);
  border-radius: 8px;
  border-color: rgba(109, 223, 255, .15);
}

/* Reset all button defaults from 50-buttons.css */
.bo-faq-question,
.bo-faq-question:hover,
.bo-faq-question:focus {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 22px 16px !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  color: rgba(226, 232, 240, .85) !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  font-family: "Roboto", sans-serif !important;
  gap: 20px !important;
  cursor: pointer !important;
  outline: none !important;
  transition: color .2s ease !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  backdrop-filter: none !important;
}

.bo-faq-question:hover {
  color: #fff !important;
}

.bo-faq-item.bo-faq-open .bo-faq-question {
  color: #fff !important;
}

/* Icon — plain, no circle */
.bo-faq-icon {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 255, 255, .50) !important;
  transition: color .2s ease !important;
}

.bo-faq-question:hover .bo-faq-icon {
  color: rgba(255, 255, 255, .80) !important;
}

.bo-faq-item.bo-faq-open .bo-faq-icon {
  color: #fff !important;
}

.bo-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s cubic-bezier(.4, 0, .2, 1),
              opacity .25s ease;
  opacity: 0;
}

.bo-faq-item.bo-faq-open .bo-faq-answer {
  opacity: 1;
}

.bo-faq-answer p {
  font-size: 15px !important;
  color: rgba(226, 232, 240, .62) !important;
  line-height: 1.75 !important;
  padding: 0 16px 22px !important;
  margin: 0 !important;
}

.bo-faq-answer a {
  color: rgba(109, 223, 255, .85) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(109, 223, 255, .25) !important;
  transition: color .12s ease, border-color .12s ease !important;
}

.bo-faq-answer a:hover {
  color: var(--bo-primary) !important;
  border-color: rgba(109, 223, 255, .60) !important;
}


/* ===============================
   GHOST BUTTON (outline, no fill)
   =============================== */

.bo-btn-ghost .wp-block-button__link {
  background: transparent !important;
  color: rgba(255, 255, 255, .80) !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  width: auto !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.bo-btn-ghost .wp-block-button__link:hover {
  background: rgba(255, 255, 255, .06) !important;
  border-color: rgba(255, 255, 255, .40) !important;
  transform: none !important;
}


/* ===============================
   NEON DIVIDER — animated glow
   =============================== */

.bo-divider,
.wp-block-separator.bo-divider {
  border: none !important;
  border-top: none !important;
  height: 1px !important;
  margin: 48px 0 !important;
  background: rgba(109, 223, 255, .12) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.bo-divider::after,
.wp-block-separator.bo-divider::after {
  content: "" !important;
  position: absolute !important;
  top: -1px !important;
  left: -50% !important;
  width: 50% !important;
  height: 3px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(109, 223, 255, .60) 25%,
    rgba(109, 223, 255, 1) 50%,
    rgba(109, 223, 255, .60) 75%,
    transparent 100%
  ) !important;
  box-shadow: 0 0 14px rgba(109, 223, 255, .70) !important;
  border-radius: 2px !important;
  animation: bo-shimmer 5s linear infinite !important;
  animation-play-state: running !important;
}

@keyframes bo-shimmer {
  0%   { transform: translateX(0); }
  100% { transform: translateX(300%); }
}


/* ===============================
   OWL CAROUSEL
   =============================== */

.bo-owl-carousel-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(109, 223, 255, .12);
  border-radius: 16px;
  background: rgba(10, 40, 50, .40);
  margin: 0;
}

.bo-owl-carousel-wrap::before,
.bo-owl-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.bo-owl-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10,40,50,.95) 0%, transparent 100%);
}

.bo-owl-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10,40,50,.95) 0%, transparent 100%);
}

.bo-owl-track {
  display: flex;
  gap: 0;
  animation: bo-owl-scroll 18s linear infinite;
  will-change: transform;
  animation-play-state: running !important;
}

.bo-owl-carousel-wrap:hover .bo-owl-track {
  animation-play-state: paused !important;
}

@keyframes bo-owl-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bo-owl-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  min-width: 260px;
  border-right: 1px solid rgba(109, 223, 255, .10);
  flex-shrink: 0;
}

.bo-owl-svg {
  margin-bottom: 4px;
}

.bo-owl-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.bo-owl-card-desc {
  font-size: 13px;
  color: rgba(226, 232, 240, .55);
  line-height: 1.6;
  max-width: 220px;
}


/* ===============================
   TRUST CAROUSEL
   =============================== */

.bo-trust-carousel-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(109, 223, 255, .12);
  border-radius: 16px;
  background: rgba(10, 40, 50, .40);
}

.bo-trust-carousel-wrap::before,
.bo-trust-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.bo-trust-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10,40,50,.95) 0%, transparent 100%);
}

.bo-trust-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10,40,50,.95) 0%, transparent 100%);
}

.bo-trust-track {
  display: flex;
  animation: bo-trust-scroll 14s linear infinite;
  animation-play-state: running !important;
}

.bo-trust-carousel-wrap:hover .bo-trust-track {
  animation-play-state: paused !important;
}

@keyframes bo-trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bo-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 40px;
  min-width: 200px;
  border-right: 1px solid rgba(109, 223, 255, .10);
  flex-shrink: 0;
}

.bo-trust-card-icon {
  color: rgba(109, 223, 255, .75);
  margin-bottom: 4px;
}

.bo-trust-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.bo-trust-card-sub {
  font-size: 12px;
  color: rgba(226, 232, 240, .50);
  line-height: 1.4;
}


/* ===============================
   CONTACT INFO BLOCK
   =============================== */

.bo-contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.bo-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bo-contact-row svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.bo-contact-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bo-contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(109, 223, 255, .60);
  font-weight: 600;
}

.bo-contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: none !important;
}

.bo-contact-value:hover {
  color: var(--bo-primary);
}

.bo-contact-note {
  font-size: 13px;
  color: rgba(226, 232, 240, .50);
  line-height: 1.5;
}


/* ===============================
   DEFINITION LIST
   =============================== */

.bo-def-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.bo-def-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  align-items: baseline;
}

.bo-def-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.bo-def-list dt {
  font-size: 14px;
  font-weight: 600;
  color: rgba(109, 223, 255, .85);
  line-height: 1.4;
}

.bo-def-list dd {
  font-size: 14px;
  color: rgba(226, 232, 240, .65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .bo-def-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
