/* ===========================================
   DELIVERABLES SECTION - On-brand cards
   =========================================== */
.services-v2-content {
  background: #0f0f12;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px;
}

.services-v2-content h2 {
  color: #f7c948;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.services-v2-content > p {
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.125rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

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

.seo-card {
  background: linear-gradient(145deg, rgba(247,201,72,0.08) 0%, rgba(247,201,72,0.02) 100%);
  border: 1px solid rgba(247,201,72,0.25);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.seo-card::before {
  content: '⚡';
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 2rem;
  opacity: 0.15;
  transition: all 0.3s ease;
}

.seo-card:hover {
  border-color: rgba(247,201,72,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,201,72,0.1);
}

.seo-card:hover::before {
  opacity: 0.3;
  transform: scale(1.1);
}

.seo-card p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.seo-card strong {
  color: #f7c948;
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

/* Related pages */
.services-v2-content h3 {
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-v2-content h3 + p {
  text-align: left;
}

.services-v2-content h3 + p a {
  color: #f7c948;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-v2-content h3 + p a:hover {
  color: #fff;
  text-decoration: underline;
}

/* CTA button */
.seo-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===========================================
   FAQ SECTION - With Lightning Bolts
   =========================================== */
.services-faq {
  background: #0f0f12;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-faq .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-faq h2 {
  color: #f7c948;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

/* Lightning bolt decorations */
.services-faq__bolt {
  position: absolute;
  width: 80px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.services-faq__bolt--left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.services-faq__bolt--right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .services-faq__bolt {
    width: 50px;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .services-faq__bolt {
    display: none;
  }
  
  .services-faq {
    padding: 60px 0;
  }
  
  .services-faq h2 {
    font-size: 1.75rem;
  }
}

.services-faq__items {
  max-width: 800px;
  margin: 0 auto;
}

.services-faq__item {
  border-top: 1px solid rgba(247,201,72,0.2);
  padding: 0;
}

.services-faq__item:last-child {
  border-bottom: 1px solid rgba(247,201,72,0.2);
}

.services-faq__q {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.services-faq__q::-webkit-details-marker {
  display: none;
}

.services-faq__q::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f7c948' stroke-width='2'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.services-faq__item[open] .services-faq__q::after {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
  opacity: 1;
}

.services-faq__q:hover {
  color: #f7c948;
}

.services-faq__q:hover::after {
  opacity: 1;
}

.services-faq__a {
  color: rgba(255,255,255,0.85);
  padding: 0 0 24px 0;
  line-height: 1.7;
}

.services-faq__a p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1em;
}

.services-faq__a p:last-child {
  margin-bottom: 0;
}

.services-faq__a a {
  color: #f7c948;
  text-decoration: underline;
}

.services-faq__a a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .services-faq__q {
    font-size: 1rem;
    padding: 20px 40px 20px 0;
  }
  
  .services-faq__q::after {
    width: 20px;
    height: 20px;
  }
}
