/* ── Navbar ── */
.faq-navbar {
  padding: 0 16px;
}

.faq-nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  height: 56px;
}

.faq-nav-links {
  display: flex;
  gap: 8px;
}

.faq-nav-link {
  color: #e0e0e0 !important;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
}

.faq-nav-link:hover {
  color: #5BE0E5 !important;
  background: rgba(91, 224, 229, 0.08);
}

/* ── Layout ── */
.faq-main {
  padding-top: 56px;
  background: #0e0e0e;
  color: #e0e0e0;
}

/* ── Hero ── */
.faq-hero {
  background: linear-gradient(160deg, #0a0a0a 0%, #111827 60%, #0d1f2d 100%);
  text-align: center;
  padding: 64px 20px 56px;
  border-bottom: 1px solid #1e1e1e;
}

.faq-hero-inner {
  max-width: 620px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5BE0E5;
  margin-bottom: 12px;
  opacity: 0.85;
}

.faq-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* CTA row */
.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.15s;
}

.faq-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.faq-cta-whatsapp {
  background: #25D366;
  color: #fff !important;
}

.faq-cta-viber {
  background: #7360f2;
  color: #fff !important;
}

.faq-cta-products {
  background: transparent;
  color: #5BE0E5 !important;
  border: 1px solid #5BE0E5;
}

/* ── Sections ── */
.faq-section {
  padding: 48px 20px;
  border-bottom: 1px solid #1e1e1e;
  max-width: 860px;
}

.faq-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}

.faq-section-sub {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ── Price grid ── */
.faq-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.faq-price-card {
  background: #141414;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}

.faq-price-card:hover {
  border-color: #5BE0E5;
}

.faq-price-card--featured {
  border-color: #5BE0E5;
}

.faq-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #5BE0E5;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.faq-product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.faq-product-detail {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.faq-product-price {
  color: #5BE0E5;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.faq-price-next {
  display: block;
  font-size: 0.78rem;
  color: #555;
  margin-top: 2px;
}

/* ── FAQ accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 4px;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #5BE0E5;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: #e0e0e0;
  margin: 0;
  font-weight: 500;
  text-align: left;
}

.faq-item[open] summary h3 {
  color: #5BE0E5;
}

.faq-item > p {
  color: #aaa;
  margin: 0;
  padding: 0 4px 18px;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* ── Closing CTA ── */
.faq-closing {
  text-align: center;
  padding: 56px 20px;
  background: linear-gradient(160deg, #0a0a0a 0%, #0d1f2d 100%);
}

.faq-closing p {
  color: #aaa;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #1e1e1e;
  padding: 20px;
  color: #444;
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .faq-hero h1 {
    font-size: 1.9rem;
  }

  .faq-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-section {
    padding: 32px 16px;
  }
}
