/** Shopify CDN: Minification failed

Line 31:22 Unexpected "{"
Line 31:31 Expected ":"

**/
/* =========================================================
  FAQ + Sticky CTA (premium dark/tech look)
========================================================= */

.faq-sticky {
  position: relative;
  overflow: hidden;
}

.faq-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, rgba(56, 182, 255, 0.14) 0%, rgba(15, 30, 42, 0) 60%);
}

.faq-sticky .section-__padding,
.faq-sticky .page-width {
  position: relative;
  z-index: 2;
}

/* Dawn padding helper (same pattern as your other sections) */
.faq-sticky .section-{{ section.id }}-padding {
  padding-top: var(--faq-pad-top, 72px);
  padding-bottom: var(--faq-pad-bottom, 72px);
}

/* Title area */
.faq-sticky__header {
  text-align: center;
  margin-bottom: 28px;
}
.faq-sticky__heading {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}
.faq-sticky__subheading {
  color: rgba(255,255,255,.72);
  max-width: 780px;
  margin: 0 auto;
}

/* Layout */
.faq-sticky__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}

/* Accordion container */
.faq-sticky__accordion {
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child { border-bottom: 0; }

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__q {
  font-weight: 650;
  letter-spacing: .1px;
  line-height: 1.25;
}

.faq-item__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(56,182,255,.95);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item__icon svg {
  display: none;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity .25s ease, transform .25s ease;
}

.faq-item__icon::after {
  transform: rotate(90deg);
}

details[open] > summary .faq-item__icon {
  border-color: rgba(56, 182, 255, 0.35);
  box-shadow: 0 0 18px rgba(56,182,255,.20);
}

details[open] > summary .faq-item__icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq-item__content {
  padding: 0 18px 18px;
  color: rgba(255,255,255,.74);
}

/* Sticky CTA card */
.faq-card {
  position: sticky;
  top: 110px; /* adjust if your header is taller */
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  padding: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}

.faq-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
}

.faq-card__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(56,182,255,.95);
  box-shadow: 0 0 14px rgba(56,182,255,.45);
}

.faq-card__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .1px;
}

.faq-card__text {
  color: rgba(255,255,255,.74);
  margin-bottom: 12px;
}

.faq-card__list {
  margin: 0 0 16px;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,.74);
}
.faq-card__list li {
  margin: 8px 0;
}

.faq-card__buttons {
  display: grid;
  gap: 10px;
}

/* Primary gradient button (same language as your site) */
.faq-card__btn-primary {
  background: linear-gradient(135deg, #2F6BFF 0%, #38B6FF 100%);
  border: 1px solid rgba(56, 182, 255, .35);
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(56,182,255,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.faq-card__btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 56px rgba(56,182,255,.28);
}

.faq-card__arrow {
  display: inline-flex;
  opacity: .95;
}

/* Secondary outline */
.faq-card__btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 16px;
  display: inline-flex;
  justify-content: center;
}

.faq-card__btn-secondary:hover {
  border-color: rgba(56,182,255,.35);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.faq-card__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.58);
  text-align: center;
}

/* Mobile layout */
@media (max-width: 989px) {
  .faq-sticky__grid {
    grid-template-columns: 1fr;
  }
  .faq-card {
    position: relative;
    top: auto;
  }
}
