/**
 * Agency Landing Page - Custom Styles
 * Enhances the agency-specific sections for a professional, polished look
 */

/* ============================================
   PRE-HEADER SECTION (Market Opportunity Banner)
   ============================================ */

.agency-preheader {
  padding: 20px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  position: relative;
  overflow: hidden;
  animation: slideDown 0.6s ease-out;
  box-shadow:
    0 4px 20px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

.agency-preheader::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.agency-preheader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.preheader-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.preheader-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.preheader-main-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.preheader-highlight {
  color: #fbbf24;
  font-weight: 700;
  font-size: 26px;
  text-shadow:
    0 2px 8px rgba(251, 191, 36, 0.6),
    0 0 20px rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.1);
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  display: inline-block;
  white-space: nowrap;
}

.preheader-sub-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@media (max-width: 991px) {
  .agency-preheader {
    padding: 18px 0;
  }

  .preheader-main-text {
    font-size: 20px;
  }

  .preheader-highlight {
    font-size: 24px;
  }

  .preheader-sub-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .agency-preheader {
    padding: 16px 0;
  }

  .preheader-badge {
    font-size: 10px;
    padding: 3px 12px;
    margin-bottom: 8px;
  }

  .preheader-content {
    max-width: 95%;
    padding: 0 15px;
  }

  .preheader-main-text {
    font-size: 17px;
  }

  .preheader-highlight {
    font-size: 21px;
    white-space: normal;
    padding: 2px 8px;
  }

  .preheader-sub-text {
    font-size: 14px;
  }
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */

.agency-pain-points {
  padding: 100px 0;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}

.agency-pain-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent);
}

.pain-points-header {
  margin-bottom: 60px;
}

.pain-points-header h2 {
  margin-bottom: 20px;
}

.pain-points-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
}

/* Pain Points Grid */
.pain-points-grid {
  margin-top: 60px;
  margin-bottom: 60px;
}

.pain-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.pain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow:
    0 20px 40px rgba(102, 126, 234, 0.12),
    0 0 0 1px rgba(102, 126, 234, 0.05);
}

/* Featured Card (Center) */
.pain-card-featured {
  border-color: #667eea;
  background: linear-gradient(135deg, #ffffff 0%, #faf9fe 100%);
  box-shadow:
    0 8px 20px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.1);
}

.pain-card-featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(102, 126, 234, 0.2),
    0 0 0 2px rgba(102, 126, 234, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

/* Card Header */
.pain-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.pain-card-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #667eea;
  flex-shrink: 0;
}

.pain-card-featured .pain-card-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.pain-card-badge {
  flex: 1;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  text-align: center;
  white-space: nowrap;
}

/* Card Title */
.pain-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Stats Section */
.pain-card-stats {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  padding: 16px;
  background: #f9fafb;
  border-radius: 10px;
  border-left: 3px solid #667eea;
  transition: all 0.3s ease;
}

.pain-card:hover .stat-item {
  background: #f3f4f6;
  border-left-color: #764ba2;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* Solution Section */
.pain-card-solution {
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(118, 75, 162, 0.04) 100%);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solution-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.pain-card-solution p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  font-weight: 500;
}

/* Footer Section */
.pain-points-footer {
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
  border-radius: 20px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  text-align: center;
}

.footer-text {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
}

.footer-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CASE STUDY SECTION - PREMIUM LIGHT THEME
   ============================================ */

.agency-case-study {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
}

.agency-case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent);
}

.case-study-header {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.case-study-header h2 {
  color: #111827 !important;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.case-study-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border-radius: 2px;
}

.case-study-header p {
  color: #4b5563 !important;
  max-width: 900px;
  margin: 0 auto;
}

/* Before/After Comparison Cards - Premium Light Design */
.case-study-before-after {
  margin-top: 60px !important;
  position: relative;
  z-index: 1;
}

.case-study-column {
  padding: 45px 40px !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.case-study-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.case-study-column:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Before Card (Red theme - Light version) */
.case-study-before-after .col-md-6:first-child .case-study-column {
  border: 2px solid rgba(239, 68, 68, 0.2) !important;
  border-left: 5px solid #ef4444 !important;
}

.case-study-before-after .col-md-6:first-child .case-study-column::before {
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
}

.case-study-before-after .col-md-6:first-child .case-study-column:hover {
  box-shadow:
    0 20px 50px rgba(239, 68, 68, 0.15),
    0 0 0 1px rgba(239, 68, 68, 0.1) !important;
}

.case-study-before-after .col-md-6:first-child .case-study-column:hover::before {
  opacity: 1;
}

.case-study-before-after .col-md-6:first-child h3 {
  color: #ef4444 !important;
  font-size: 24px;
  margin-bottom: 30px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-study-before-after .col-md-6:first-child h3::before {
  content: '✕';
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* After Card (Green theme - Light version) */
.case-study-before-after .col-md-6:last-child .case-study-column {
  border: 2px solid rgba(16, 185, 129, 0.2) !important;
  border-left: 5px solid #10b981 !important;
}

.case-study-before-after .col-md-6:last-child .case-study-column::before {
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.case-study-before-after .col-md-6:last-child .case-study-column:hover {
  box-shadow:
    0 20px 50px rgba(16, 185, 129, 0.15),
    0 0 0 1px rgba(16, 185, 129, 0.1) !important;
}

.case-study-before-after .col-md-6:last-child .case-study-column:hover::before {
  opacity: 1;
}

.case-study-before-after .col-md-6:last-child h3 {
  color: #10b981 !important;
  font-size: 24px;
  margin-bottom: 30px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-study-before-after .col-md-6:last-child h3::before {
  content: '✓';
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* List Items - Light Theme */
.case-study-column ul {
  list-style: none !important;
  padding: 0 !important;
}

.case-study-column ul li {
  margin-bottom: 18px !important;
  padding-left: 35px !important;
  color: #374151 !important;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
  transition: all 0.3s ease;
}

.case-study-column ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  font-size: 24px;
  line-height: 1;
}

.case-study-before-after .col-md-6:first-child .case-study-column ul li::before {
  color: #ef4444;
}

.case-study-before-after .col-md-6:last-child .case-study-column ul li::before {
  color: #10b981;
}

.case-study-column ul li:hover {
  transform: translateX(8px);
  color: #111827 !important;
}

/* Timeline Section - Premium Light Theme */
.case-study-timeline {
  margin-top: 70px !important;
  background: #ffffff !important;
  padding: 55px 50px !important;
  border-radius: 24px !important;
  position: relative;
  border: 2px solid rgba(102, 126, 234, 0.1);
  box-shadow:
    0 10px 40px rgba(102, 126, 234, 0.1),
    0 0 0 1px rgba(102, 126, 234, 0.05) inset;
}

.case-study-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top center, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
  border-radius: 24px;
  pointer-events: none;
}

.case-study-timeline h3 {
  color: #111827 !important;
  margin-bottom: 50px !important;
  position: relative;
  padding-bottom: 20px;
  z-index: 1;
}

.case-study-timeline h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border-radius: 2px;
}

.timeline-items {
  position: relative;
}

/* Connecting Line Between Timeline Items - Light Theme */
.timeline-items {
  position: relative;
  z-index: 1;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #10b981 100%);
  opacity: 0.2;
  border-radius: 2px;
}

.timeline-item {
  display: flex !important;
  gap: 25px !important;
  margin-bottom: 35px !important;
  align-items: flex-start !important;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0 !important;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-icon {
  min-width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  box-shadow:
    0 6px 20px rgba(102, 126, 234, 0.15),
    0 0 0 3px rgba(102, 126, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.timeline-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow:
    0 10px 30px rgba(102, 126, 234, 0.3),
    0 0 0 4px rgba(102, 126, 234, 0.15);
}

.timeline-item:hover .timeline-icon::before {
  opacity: 1;
}

.timeline-item > div:last-child {
  flex: 1;
}

.timeline-item p:first-child {
  color: #111827 !important;
  margin-bottom: 10px !important;
  font-weight: 700;
  font-size: 18px;
}

.timeline-item p:last-child {
  color: #4b5563 !important;
  margin: 0 !important;
  line-height: 1.7;
  font-size: 16px;
}

/* Quote Section - Premium Light Theme */
.case-study-quote {
  margin-top: 60px !important;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(118, 75, 162, 0.04) 100%) !important;
  padding: 50px 45px !important;
  border-radius: 20px !important;
  border-left: 6px solid #667eea !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 25px rgba(102, 126, 234, 0.08),
    0 0 0 1px rgba(102, 126, 234, 0.08);
}

.case-study-quote::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 25px;
  font-size: 120px;
  color: rgba(102, 126, 234, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
  z-index: 0;
}

.case-study-quote:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 45px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.12);
  border-left-color: #764ba2;
}

.case-study-quote p:first-child {
  color: #374151 !important;
  font-style: italic !important;
  line-height: 1.8 !important;
  margin-bottom: 25px !important;
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
}

.case-study-quote p:last-child {
  color: #667eea !important;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-size: 17px;
}

/* CTA Section - Premium Light Theme */
.case-study-cta {
  margin-top: 70px !important;
  text-align: center;
  padding: 50px 45px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 24px;
  border: 2px solid rgba(102, 126, 234, 0.15);
  position: relative;
  overflow: hidden;
}

.case-study-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.case-study-cta p:first-child {
  color: #111827 !important;
  margin-bottom: 15px !important;
  font-weight: 700;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.case-study-cta p:nth-child(2) {
  color: #4b5563 !important;
  margin-bottom: 30px !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.case-study-cta p:last-child {
  color: #667eea !important;
  font-weight: 700;
  margin: 0 !important;
  font-size: 18px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FAQ SECTION - PREMIUM DESIGN
   ============================================ */

.agency-faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.agency-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.faq-header {
  margin-bottom: 60px;
  position: relative;
}

.faq-header h2 {
  position: relative;
  padding-bottom: 20px;
}

.faq-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border-radius: 2px;
}

/* Premium FAQ Cards */
.faq-item {
  background: #ffffff !important;
  padding: 40px 45px !important;
  border-radius: 20px !important;
  margin-bottom: 24px !important;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(102, 126, 234, 0.1) !important;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item:hover {
  transform: translateY(-8px) translateX(0);
  box-shadow:
    0 15px 40px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.2) !important;
  border-left-color: transparent;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item h3 {
  color: #111827 !important;
  margin-bottom: 18px !important;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.faq-item h3::before {
  content: '?';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover h3::before {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.faq-item p {
  color: #4b5563 !important;
  line-height: 1.8 !important;
  padding-left: 44px;
}

.faq-item p strong {
  color: #10b981 !important;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Final CTA Button - Premium Design */
.faq-cta {
  margin-top: 70px !important;
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 24px;
  border: 2px solid rgba(102, 126, 234, 0.15);
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.faq-cta .mybutton1 {
  display: inline-block;
  padding: 22px 50px !important;
  min-width: 400px;
  font-size: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border: none;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 10px 35px rgba(102, 126, 234, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-cta .mybutton1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.faq-cta .mybutton1:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 15px 50px rgba(102, 126, 234, 0.5),
    0 0 80px rgba(236, 72, 153, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.3);
}

.faq-cta .mybutton1:hover::before {
  width: 400px;
  height: 400px;
}

.faq-cta p {
  position: relative;
  z-index: 1;
}

/* ============================================
   BONUSES SECTION (Unlocked Bonuses)
   ============================================ */

.agency-bonuses {
  padding: 100px 0;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}

.agency-bonuses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Header - Premium Design */
.bonuses-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.bonuses-header::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.bonuses-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ec4899 100%);
  border-radius: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow:
    0 8px 32px rgba(245, 158, 11, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  animation: pulseGlow 3s ease-in-out infinite;
  position: relative;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 8px 32px rgba(245, 158, 11, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  50% {
    box-shadow:
      0 8px 40px rgba(245, 158, 11, 0.7),
      0 0 60px rgba(236, 72, 153, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  }
}

.bonuses-header h2 {
  text-shadow: 0 2px 20px rgba(251, 191, 36, 0.3);
}

.bonuses-header p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Bonuses List - Horizontal Layout */
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Bonus Card - Premium Professional Layout */
.bonus-card--horizontal {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  min-height: 320px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.bonus-card--horizontal:nth-child(1) {
  animation-delay: 0.15s;
}

.bonus-card--horizontal:nth-child(2) {
  animation-delay: 0.3s;
}

.bonus-card--horizontal:nth-child(3) {
  animation-delay: 0.45s;
}

.bonus-card--horizontal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.bonus-card--horizontal:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 30px 70px rgba(102, 126, 234, 0.35),
    0 0 80px rgba(102, 126, 234, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.bonus-card--horizontal:hover::before {
  opacity: 1;
}

/* Animated Gradient Border for Bonus Cards */
.bonus-card--horizontal::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle) at 50% 50%,
    #667eea 0deg,
    #764ba2 72deg,
    #ec4899 144deg,
    #f97316 216deg,
    #10b981 288deg,
    #667eea 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
  animation: rotateBorder 3s linear infinite;
  pointer-events: none;
}

/* Image Wrapper - Premium Left Side Treatment */
.bonus-card-image-wrapper {
  flex-shrink: 0;
  width: 350px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  overflow: hidden;
}

.bonus-card-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15) 0%,
    rgba(118, 75, 162, 0.15) 50%,
    rgba(236, 72, 153, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.bonus-card--horizontal:hover .bonus-card-image-wrapper::before {
  opacity: 1;
}

.bonus-card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.bonus-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.bonus-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.1);
}

.bonus-card--horizontal:hover .bonus-card-image img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(1.1) contrast(1.15);
}

/* Content Wrapper - Premium Right Side */
.bonus-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 50px 55px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.bonus-card-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(102, 126, 234, 0.3) 20%,
    rgba(118, 75, 162, 0.3) 50%,
    rgba(236, 72, 153, 0.3) 80%,
    transparent 100%
  );
}

/* Card Header - Horizontal Layout */
.bonus-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-card-header-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bonus-icon {
  font-size: 48px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ec4899 100%);
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow:
    0 8px 25px rgba(245, 158, 11, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bonus-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent 30%
  );
  animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bonus-card--horizontal:hover .bonus-icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow:
    0 12px 40px rgba(245, 158, 11, 0.7),
    0 0 0 4px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(236, 72, 153, 0.4);
}

.bonus-label {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border-radius: 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow:
    0 6px 20px rgba(102, 126, 234, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Pricing Display - Premium Design */
.bonus-pricing {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.bonus-worth,
.bonus-today {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.bonus-worth::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

.bonus-worth-label,
.bonus-today-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-worth-price {
  font-size: 26px;
  font-weight: 700;
  color: #ef4444;
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
  position: relative;
}

.bonus-today-price {
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(16, 185, 129, 0.5);
  position: relative;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.8));
  }
}

/* Card Body - Premium Typography */
.bonus-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.bonus-title {
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(102, 126, 234, 0.2);
  position: relative;
  padding-bottom: 15px;
}

.bonus-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.bonus-card--horizontal:hover .bonus-title::after {
  width: 100px;
}

.bonus-description {
  color: #e5e7eb !important;
  line-height: 1.8 !important;
  margin: 0 !important;
  font-size: 17px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Total Value Summary */
.bonuses-total {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bonuses-total::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, transparent 100%);
  border-radius: 18px;
  pointer-events: none;
}

.bonuses-total-content {
  position: relative;
  z-index: 1;
}

.bonuses-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses-total-row:last-of-type {
  border-bottom: none;
  padding-top: 25px;
  padding-bottom: 15px;
}

.bonuses-total-row--highlight {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
  padding: 25px 30px;
  margin: 20px -40px 20px;
  border-radius: 12px;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.bonuses-total-label {
  color: #e5e7eb !important;
}

.bonuses-total-row--highlight .bonuses-total-label {
  color: #ffffff !important;
}

.bonuses-total-amount {
  color: #fbbf24 !important;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.bonuses-total-amount--free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

.bonuses-total-note {
  color: #9ca3af !important;
  text-align: center;
  margin: 25px 0 0 !important;
  font-style: italic;
}

/* ============================================
   ENHANCED HERO FOR AGENCY
   ============================================ */

/* Hero Video Section */
.agency-hero-video-section {
  margin: 40px 0 50px;
  padding: 0 20px;
}

.agency-video-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.agency-video-border {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #10b981 100%);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(102, 126, 234, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.agency-video-border:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 80px rgba(102, 126, 234, 0.5),
    0 15px 40px rgba(0, 0, 0, 0.25);
}

.agency-video-border > div {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  min-height: 400px;
}

.agency-video-border iframe {
  background: #000;
}

/* Hero Benefits List - Professional Cards */
#agency-landing .hero-benefits-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

#agency-landing .hero-benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  border-radius: 14px;
  border-left: 4px solid #10b981;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

#agency-landing .hero-benefits-list .benefit-item:hover {
  transform: translateX(8px);
  border-left-color: #34d399;
  background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(118, 75, 162, 1) 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

#agency-landing .hero-benefits-list .benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#agency-landing .hero-benefits-list .benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

#agency-landing .hero-benefits-list .benefit-icon i {
  font-size: 24px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

#agency-landing .hero-benefits-list .benefit-text {
  flex: 1;
  line-height: 1.6;
  color: #ffffff;
  font-size: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#agency-landing .hero-benefits-list .benefit-text strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#agency-landing .hero-benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

/* ============================================
   ENHANCED COMPARISON TABLE
   ============================================ */

.comparison-table__col--pro {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  position: relative;
}

.comparison-table__col--pro::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px 4px 0 0;
}

.comparison-cell--pro {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.comparison-cell--pro small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* ============================================
   BENEFITS GRID ENHANCEMENTS
   ============================================ */

.benefit-panel--featured {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-panel--featured:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.benefit-badge--large {
  transition: all 0.3s ease;
}

.benefit-panel--featured:hover .benefit-badge--large {
  transform: scale(1.15) rotate(5deg);
}

/* Bonus cards special styling */
.benefit-card:has(.benefit-title:contains("BONUS")) .benefit-panel {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.benefit-card:has(.benefit-title:contains("BONUS")) .benefit-badge {
  animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   CTA ENHANCEMENTS
   ============================================ */

/* Animated 2px Gradient Border - Using CSS Houdini & Mask */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

#agency-landing .comparison-cta-card {
  position: relative;
  overflow: visible;
}

#agency-landing .comparison-cta-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 38px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle) at 50% 50%,
    #667eea 0deg,
    #764ba2 72deg,
    #ec4899 144deg,
    #f97316 216deg,
    #10b981 288deg,
    #667eea 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
  animation: rotateBorder 3s linear infinite;
  pointer-events: none;
}

@keyframes rotateBorder {
  to {
    --border-angle: 360deg;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ============================================
   BUTTON ENHANCEMENTS
   ============================================ */

.mybutton1,
.comparison-cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mybutton1::before,
.comparison-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.mybutton1:hover::before,
.comparison-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.mybutton1:hover,
.comparison-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
  .agency-pain-points,
  .agency-case-study,
  .agency-bonuses,
  .agency-faq {
    padding: 60px 0;
  }

  .bonuses-list {
    gap: 30px;
  }

  .bonus-card--horizontal {
    flex-direction: column;
    min-height: auto;
  }

  .bonus-card-image-wrapper {
    width: 100%;
    min-height: 300px;
  }

  .bonus-card-content {
    padding: 40px 35px;
  }

  .bonus-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .bonus-pricing {
    gap: 18px;
    padding: 16px 24px;
  }

  .bonus-icon {
    width: 68px;
    height: 68px;
    font-size: 40px;
  }

  .bonus-label {
    padding: 9px 22px;
    font-size: 12px;
  }

  .bonus-worth-price {
    font-size: 24px;
  }

  .bonus-today-price {
    font-size: 32px;
  }

  .bonus-description {
    font-size: 16px;
  }

  .bonuses-total {
    padding: 35px 30px;
  }

  .bonuses-total-row--highlight {
    padding: 20px 25px;
    margin: 15px -30px 15px;
  }

  .pain-points-header {
    margin-bottom: 40px;
  }

  .pain-card {
    padding: 32px 24px;
  }

  .pain-card-title {
    font-size: 22px;
  }

  .stat-number {
    font-size: 24px;
  }

  .footer-text {
    font-size: 22px;
  }

  .footer-stats {
    gap: 40px;
  }

  .footer-stat-number {
    font-size: 40px;
  }

  .case-study-header h2::after {
    width: 60px;
    height: 3px;
  }

  .case-study-column {
    padding: 35px 30px !important;
  }

  .case-study-before-after .col-md-6:first-child h3,
  .case-study-before-after .col-md-6:last-child h3 {
    font-size: 22px;
  }

  .case-study-before-after .col-md-6:first-child h3::before,
  .case-study-before-after .col-md-6:last-child h3::before {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .case-study-column ul li {
    font-size: 16px;
    padding-left: 30px !important;
  }

  .case-study-timeline {
    padding: 40px 30px !important;
  }

  .case-study-timeline h3::after {
    width: 60px;
    height: 3px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px !important;
    margin-bottom: 25px !important;
  }

  .timeline-icon {
    min-width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }

  .timeline-item p:first-child {
    font-size: 17px;
  }

  .timeline-item p:last-child {
    font-size: 15px;
  }

  .case-study-quote {
    padding: 35px 30px !important;
  }

  .case-study-quote::before {
    font-size: 80px;
    top: -10px;
    left: 15px;
  }

  .case-study-quote p:first-child {
    font-size: 18px;
  }

  .case-study-quote p:last-child {
    font-size: 16px;
  }

  .case-study-cta {
    padding: 40px 35px;
  }

  .case-study-cta p:first-child {
    font-size: 24px;
  }

  .case-study-cta p:nth-child(2) {
    font-size: 16px;
  }

  .agency-faq {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 45px;
  }

  .faq-header h2::after {
    width: 60px;
    height: 3px;
  }

  .faq-item {
    padding: 32px 35px !important;
    margin-bottom: 20px !important;
  }

  .faq-item h3 {
    font-size: 20px;
    gap: 10px;
  }

  .faq-item h3::before {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .faq-item p {
    padding-left: 38px;
    font-size: 16px;
  }

  .faq-cta {
    margin-top: 50px !important;
    padding: 45px 40px;
  }

  .faq-cta .mybutton1 {
    min-width: 320px;
    padding: 20px 45px !important;
    font-size: 19px;
  }

  .agency-hero-video-section {
    margin: 35px 0 40px;
  }

  #agency-landing .hero-benefits-list .benefit-item {
    gap: 18px;
    padding: 20px 24px;
  }

  #agency-landing .hero-benefits-list .benefit-icon {
    width: 44px;
    height: 44px;
  }

  #agency-landing .hero-benefits-list .benefit-icon i {
    font-size: 22px;
  }

  #agency-landing .hero-benefits-list .benefit-text {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .agency-pain-points,
  .agency-case-study,
  .agency-bonuses,
  .agency-faq {
    padding: 40px 0;
  }

  .bonuses-badge {
    font-size: 11px;
    padding: 6px 18px;
  }

  .bonuses-list {
    gap: 25px;
  }

  .bonus-card--horizontal {
    flex-direction: column;
  }

  .bonus-card--horizontal {
    min-height: auto;
  }

  .bonus-card-image-wrapper {
    width: 100%;
    min-height: 280px;
  }

  .bonus-card-content {
    padding: 35px 25px;
  }

  .bonus-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .bonus-card-header-top {
    flex-wrap: wrap;
    gap: 12px;
  }

  .bonus-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }

  .bonus-pricing {
    flex-wrap: wrap;
    gap: 15px;
    padding: 14px 20px;
  }

  .bonus-worth,
  .bonus-today {
    align-items: flex-start;
  }

  .bonus-worth::after {
    display: none;
  }

  .bonus-worth-price {
    font-size: 22px;
  }

  .bonus-today-price {
    font-size: 28px;
  }

  .bonus-label {
    padding: 8px 18px;
    font-size: 11px;
  }

  .bonus-title {
    font-size: 22px;
  }

  .bonus-description {
    font-size: 15px;
    line-height: 1.7 !important;
  }

  .bonuses-badge {
    padding: 10px 26px;
    font-size: 12px;
  }

  .bonuses-header {
    margin-bottom: 50px;
  }

  .bonuses-total {
    padding: 30px 20px;
  }

  .bonuses-total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 0;
  }

  .bonuses-total-row--highlight {
    padding: 20px;
    margin: 15px -20px 15px;
  }

  .bonuses-total-note {
    margin: 20px 0 0 !important;
  }

  .pain-points-header {
    margin-bottom: 30px;
  }

  .pain-card {
    padding: 28px 20px;
    margin-bottom: 20px;
  }

  .pain-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pain-card-badge {
    width: 100%;
  }

  .pain-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .stat-item {
    padding: 14px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
  }

  .pain-card-solution {
    padding: 16px;
    gap: 12px;
  }

  .solution-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .pain-card-solution p {
    font-size: 14px;
  }

  .pain-points-footer {
    margin-top: 50px;
    padding: 30px 20px;
  }

  .footer-text {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .footer-stats {
    gap: 30px;
  }

  .footer-stat-number {
    font-size: 36px;
  }

  .footer-stat-label {
    font-size: 12px;
  }

  .case-study-header h2::after {
    width: 50px;
    height: 3px;
  }

  .case-study-before-after .col-md-6 {
    margin-bottom: 20px;
  }

  .case-study-column {
    padding: 30px 24px !important;
    border-radius: 16px !important;
  }

  .case-study-before-after .col-md-6:first-child h3,
  .case-study-before-after .col-md-6:last-child h3 {
    font-size: 20px;
    gap: 10px;
    margin-bottom: 24px !important;
  }

  .case-study-before-after .col-md-6:first-child h3::before,
  .case-study-before-after .col-md-6:last-child h3::before {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .case-study-column ul li {
    font-size: 15px;
    padding-left: 28px !important;
    line-height: 1.6;
  }

  .case-study-column ul li::before {
    font-size: 20px;
  }

  .case-study-timeline {
    padding: 35px 20px !important;
    border-radius: 20px !important;
  }

  .case-study-timeline h3 {
    font-size: 22px;
  }

  .case-study-timeline h3::after {
    width: 50px;
    height: 3px;
  }

  .timeline-items::before {
    left: 25px;
    width: 2px;
  }

  .timeline-item {
    margin-bottom: 20px !important;
    gap: 12px !important;
  }

  .timeline-icon {
    min-width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
  }

  .timeline-item p:first-child {
    font-size: 16px;
  }

  .timeline-item p:last-child {
    font-size: 14px;
  }

  .case-study-quote {
    padding: 30px 20px !important;
    border-radius: 16px !important;
  }

  .case-study-quote::before {
    font-size: 60px;
    top: -8px;
    left: 10px;
  }

  .case-study-quote p:first-child {
    font-size: 17px;
    margin-bottom: 20px !important;
  }

  .case-study-quote p:last-child {
    font-size: 15px;
  }

  .case-study-cta {
    padding: 35px 25px;
    border-radius: 20px;
    margin-top: 50px !important;
  }

  .case-study-cta p:first-child {
    font-size: 22px;
  }

  .case-study-cta p:nth-child(2) {
    font-size: 15px;
  }

  .case-study-cta p:last-child {
    font-size: 16px;
  }

  .agency-hero-video-section {
    margin: 30px 0 35px;
    padding: 0 15px;
  }

  .agency-video-border {
    padding: 6px;
    border-radius: 16px;
  }

  .agency-video-border > div {
    border-radius: 12px;
    min-height: 250px;
  }

  #agency-landing .hero-benefits-list .benefit-item {
    gap: 16px;
    padding: 18px 20px;
    margin-bottom: 12px;
  }

  #agency-landing .hero-benefits-list .benefit-icon {
    width: 42px;
    height: 42px;
  }

  #agency-landing .hero-benefits-list .benefit-icon i {
    font-size: 20px;
  }

  #agency-landing .hero-benefits-list .benefit-text {
    font-size: 16px;
  }

  .agency-faq {
    padding: 40px 0;
  }

  .faq-header {
    margin-bottom: 35px;
  }

  .faq-header h2::after {
    width: 50px;
    height: 3px;
  }

  .faq-item {
    padding: 24px 20px !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
  }

  .faq-item h3 {
    font-size: 18px;
    gap: 10px;
    margin-bottom: 14px !important;
    line-height: 1.5;
  }

  .faq-item h3::before {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .faq-item p {
    padding-left: 36px;
    font-size: 15px;
    line-height: 1.7 !important;
  }

  .faq-cta {
    margin-top: 40px !important;
    padding: 40px 25px;
    border-radius: 20px;
  }

  .faq-cta .mybutton1 {
    min-width: 100%;
    width: 100%;
    padding: 18px 35px !important;
    font-size: 18px;
    border-radius: 50px;
  }

  .faq-cta .mybutton1:hover::before {
    width: 300px;
    height: 300px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1f2937;
  color: #f9fafb;
}

/* Gradient text effect */
.gradient-text-2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Enhanced scarcity counter for agency */
#agency-landing .scarcity-counter,
#agency-landing .scarcity-compact-counter {
  /* background and box-shadow removed */
}

#agency-landing .scarcity-bar {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

#agency-landing .scarcity-bar-compact {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

.pain-point-card:focus-within,
.faq-item:focus-within,
.benefit-panel:focus-within {
  outline: 3px solid rgba(102, 126, 234, 0.5);
  outline-offset: 4px;
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.agency-pain-points .row,
.agency-case-study .row,
.agency-faq .row {
  animation: slideDown 0.8s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .agency-pain-points,
  .agency-case-study,
  .agency-faq {
    page-break-inside: avoid;
  }

  .pain-point-card,
  .case-study-timeline,
  .faq-item {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }
}
