/* SEO/AEO Enhancement Styles - Target Pages */

/* ========== Animation Classes ========== */
.anim-fade-up {
  transition-duration: 0.8s;
}

.anim-fade-up-slow {
  transition-duration: 0.9s;
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 80px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-title {
  color: white;
  margin-bottom: 50px;
  text-align: center;
  font-size: 36px;
  margin-top: -15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stats-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  word-break: break-all;
}

.stats-label {
  color: #333;
  font-weight: 600;
}

/* Region-specific stat colors */
.stats-section.latam { background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%); }
.stats-section.usa { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.stats-section.asia { background: linear-gradient(135deg, #880e4f 0%, #c2185b 100%); }
.stats-section.europe { background: linear-gradient(135deg, #004d40 0%, #00897b 100%); }
.stats-section.africa { background: linear-gradient(135deg, #00695c 0%, #00897b 100%); }
.stats-section.mena { background: linear-gradient(135deg, #ff6f00 0%, #ffa000 100%); }
.stats-section.oceania { background: linear-gradient(135deg, #0277bd 0%, #03a9f4 100%); }
.stats-section.global { background: linear-gradient(135deg, #326ef1 0%, #764ba2 100%); }

.stats-number.latam { color: #d32f2f; }
.stats-number.usa { color: #1a237e; }
.stats-number.asia { color: #880e4f; }
.stats-number.europe { color: #004d40; }
.stats-number.africa { color: #00695c; }
.stats-number.mena { color: #ff6f00; }
.stats-number.oceania { color: #0277bd; }
.stats-number.global { color: #326ef1; }

/* ========== Regional Cards (for /target/index.php) ========== */
.regional-cards-section {
  padding: 80px 20px;
}

.regional-cards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.regional-cards-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  margin-top: 0;
}

.regional-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.regional-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.regional-card:hover {
  transform: translateY(-5px);
}

.regional-card-header {
  padding: 30px;
  color: white;
  text-align: center;
}

.regional-card-header.usa { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.regional-card-header.asia { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); }
.regional-card-header.europe { background: linear-gradient(135deg, #326ef1 0%, #764ba2 100%); }
.regional-card-header.latam { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.regional-card-header.mena { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

.regional-card-title {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.regional-card-subtitle {
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.regional-card-body {
  padding: 30px;
}

.regional-card-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.regional-card-stat-label {
  color: #666;
}

.regional-card-stat-value {
  font-weight: bold;
}

.regional-card-stat-value.usa { color: #1a237e; }
.regional-card-stat-value.asia { color: #FF6B6B; }
.regional-card-stat-value.europe { color: #326ef1; }
.regional-card-stat-value.latam { color: #11998e; }
.regional-card-stat-value.mena { color: #f093fb; }
.regional-card-stat-value.savings { color: #326ef1; }
.regional-card-stat-value.price { color: #2e7d32; }

.regional-card-link {
  display: block;
  text-align: center;
  padding: 15px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.regional-card-link:hover {
  opacity: 0.9;
}

.regional-card-link.usa { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.regional-card-link.asia { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); }
.regional-card-link.europe { background: linear-gradient(135deg, #326ef1 0%, #764ba2 100%); }
.regional-card-link.latam { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.regional-card-link.mena { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

/* ========== Cost Comparison Table ========== */
.cost-table-section {
  padding: 80px 20px;
}

.cost-table-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cost-table-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.cost-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cost-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  min-height: 60px;
  height: auto;
}

.cost-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
}

.cost-table-row:last-child {
  border-bottom: none;
}

.cost-table-cell {
  padding: 20px;
}

.cost-table-cell.header {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Specific styles for cost table header cells */
.cost-table-cell.cost-header-action,
.cost-table-cell.cost-header-traditional,
.cost-table-cell.cost-header-paidwork {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cost-table-cell.cost-header-action {
  background: #f8f9fa;
  width: 100%;
  flex: 1;
}

.cost-table-cell.cost-header-traditional {
  background: #fff3e0 !important;
  color: #e65100 !important;
  text-align: center !important;
  font-weight: bold !important;
  width: 100%;
  flex: 1;
}

.cost-table-cell.cost-header-paidwork {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  text-align: center !important;
  font-weight: bold !important;
  width: 100%;
  flex: 1;
}

.cost-table-cell.action-name {
  font-weight: 600;
  color: #333;
}

.cost-table-cell.traditional-price {
  text-align: center;
  color: #666;
}

.cost-table-cell.paidwork-price {
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
}

/* ========== ROI Calculator ========== */
.roi-section {
  padding: 80px 20px;
}

.roi-section.latam { background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%); }
.roi-section.usa { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.roi-section.asia { background: linear-gradient(135deg, #880e4f 0%, #c2185b 100%); }
.roi-section.europe { background: linear-gradient(135deg, #004d40 0%, #00897b 100%); }
.roi-section.africa { background: linear-gradient(135deg, #00695c 0%, #00897b 100%); }
.roi-section.mena { background: linear-gradient(135deg, #ff6f00 0%, #ffa000 100%); }
.roi-section.oceania { background: linear-gradient(135deg, #0277bd 0%, #03a9f4 100%); }

.roi-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.roi-header {
  text-align: center;
  margin-bottom: 40px;
}

.roi-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.roi-subtitle {
  color: #666;
  font-size: 18px;
}

.roi-calc-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.roi-row:last-of-type {
  padding-bottom: 20px;
}

.roi-label {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.roi-value {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.roi-value.traditional {
  color: #e65100;
}

.roi-value.paidwork {
  color: #2e7d32;
}

.roi-value.savings {
  color: #d32f2f;
}

.roi-annual {
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  color: white;
}

.roi-annual.latam { background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%); }
.roi-annual.usa { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.roi-annual.asia { background: linear-gradient(135deg, #880e4f 0%, #c2185b 100%); }
.roi-annual.europe { background: linear-gradient(135deg, #004d40 0%, #00897b 100%); }
.roi-annual.africa { background: linear-gradient(135deg, #00695c 0%, #00897b 100%); }
.roi-annual.mena { background: linear-gradient(135deg, #ff6f00 0%, #ffa000 100%); }
.roi-annual.oceania { background: linear-gradient(135deg, #0277bd 0%, #03a9f4 100%); }

.roi-annual-label {
  font-size: 14px;
  margin-bottom: 5px;
}

.roi-annual-value {
  font-size: 36px;
  font-weight: bold;
}

.roi-cta {
  text-align: center;
}

.roi-button {
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  display: inline-block;
}

.roi-button.latam { 
  background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%); 
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}
.roi-button.usa { 
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); 
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}
.roi-button.asia { 
  background: linear-gradient(135deg, #880e4f 0%, #c2185b 100%); 
  box-shadow: 0 10px 30px rgba(136, 14, 79, 0.4);
}
.roi-button.europe { 
  background: linear-gradient(135deg, #004d40 0%, #00897b 100%); 
  box-shadow: 0 10px 30px rgba(0, 77, 64, 0.4);
}
.roi-button.africa { 
  background: linear-gradient(135deg, #00695c 0%, #00897b 100%); 
  box-shadow: 0 10px 30px rgba(0, 105, 92, 0.4);
}
.roi-button.mena { 
  background: linear-gradient(135deg, #ff6f00 0%, #ffa000 100%); 
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
}
.roi-button.oceania { 
  background: linear-gradient(135deg, #0277bd 0%, #03a9f4 100%); 
  box-shadow: 0 10px 30px rgba(2, 119, 189, 0.4);
}

.roi-button:hover {
  transform: translateY(-2px);
}

/* ========== Breadcrumb Navigation ========== */
.seo-breadcrumb-nav {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.seo-breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
}

.seo-breadcrumb-item {
  display: flex;
  align-items: center;
}

.seo-breadcrumb-link {
  color: #326ef1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.seo-breadcrumb-link:hover {
  color: #1a4db8;
  text-decoration: underline;
}

.seo-breadcrumb-current {
  color: #666;
}

.seo-breadcrumb-separator {
  margin: 0 10px;
  color: #999;
  margin-right: 0px;
}

/* ========== FAQ Section ========== */
.seo-faq-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.seo-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
  font-weight: 600;
}

.seo-faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-faq-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.seo-faq-question {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

.seo-faq-answer {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* ========== Responsive Design ========== */

/* Tablets and below */
@media (max-width: 768px) {
  /* Stats Section */
  .stats-section {
    padding: 60px 15px;
  }
  
  .stats-title {
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .stats-number {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .stats-label {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Cost Table */
  .cost-table-section {
    padding: 60px 15px;
  }
  
  .cost-table-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .cost-table {
    overflow-x: auto;
  }
  
  .cost-table-header,
  .cost-table-row {
    min-width: 500px;
  }
  
  /* Ensure header is always visible on mobile */
  .cost-table-header {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background: white !important;
    border-bottom: 2px solid #e0e0e0 !important;
    min-height: 60px !important;
    height: auto !important;
  }
  
  .cost-table-cell {
    padding: 15px 10px;
    font-size: 16px;
  }
  
  .cost-table-cell.header {
    font-size: 16px;
  }
  
  /* Mobile styles for cost table header cells */
  .cost-table-cell.cost-header-action,
  .cost-table-cell.cost-header-traditional,
  .cost-table-cell.cost-header-paidwork {
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 10px !important;
  }
  
  .cost-table-cell.action-name {
    font-size: 14px;
  }
  
  /* ROI Calculator */
  .roi-section {
    padding: 60px 15px;
  }
  
  .roi-container {
    padding: 40px 30px;
  }
  
  .roi-title {
    font-size: 28px;
  }
  
  .roi-subtitle {
    font-size: 16px;
  }
  
  .roi-calc-box {
    padding: 25px;
  }
  
  .roi-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .roi-row > div {
    width: 100%;
  }
  
  .roi-value {
    font-size: 22px;
  }
  
  .roi-annual-value {
    font-size: 32px;
  }
  
  .roi-button {
    padding: 16px 40px;
    font-size: 16px;
  }
  
  /* FAQ Section */
  .seo-faq-section {
    padding: 60px 15px;
  }
  
  .seo-faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .seo-faq-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .seo-faq-question {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .seo-faq-answer {
    font-size: 15px;
  }
  
  /* Breadcrumbs */
  .seo-breadcrumb-nav {
    padding: 0 15px;
    margin: 15px auto;
    margin-top: 25px;
  }
  
  .seo-breadcrumb-list {
    font-size: 13px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  /* Stats Section */
  .stats-section {
    padding: 50px 10px;
  }
  
  .stats-title {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .stats-card {
    padding: 20px 15px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .stats-number {
    font-size: 32px;
    margin-bottom: 6px;
  }
  
  .stats-label {
    font-size: 13px;
    line-height: 1.3;
  }
  
  /* Cost Table */
  .cost-table-section {
    padding: 50px 10px;
  }
  
  .cost-table-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .cost-table-cell {
    padding: 12px 8px;
    font-size: 14px;
  }
  
  .cost-table-cell.header {
    font-size: 14px;
  }
  
  .cost-table-cell.action-name {
    font-size: 13px;
  }
  
  /* Ensure header visibility on very small mobile screens */
  .cost-table-header {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background: white !important;
    border-bottom: 2px solid #e0e0e0 !important;
    min-height: 50px !important;
    height: auto !important;
  }
  
  .cost-table-header .cost-table-cell.cost-header-action,
  .cost-table-header .cost-table-cell.cost-header-traditional,
  .cost-table-header .cost-table-cell.cost-header-paidwork {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 50px !important;
    padding: 12px 8px !important;
  }
  
  /* ROI Calculator */
  .roi-section {
    padding: 50px 10px;
  }
  
  .roi-container {
    padding: 30px 20px;
  }
  
  .roi-title {
    font-size: 24px;
  }
  
  .roi-subtitle {
    font-size: 15px;
  }
  
  .roi-calc-box {
    padding: 20px;
  }
  
  .roi-value {
    font-size: 20px;
  }
  
  .roi-annual-value {
    font-size: 28px;
  }
  
  .roi-button {
    padding: 14px 30px;
    font-size: 15px;
    width: 100%;
  }
  
  /* FAQ Section */
  .seo-faq-title {
    font-size: 24px;
  }
  
  .seo-faq-question {
    font-size: 16px;
  }
  
  .seo-faq-answer {
    font-size: 14px;
  }
  
  /* Breadcrumbs */
  .seo-breadcrumb-separator {
    margin: 0 5px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .stats-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .stats-card {
    padding: 18px 12px;
  }
  
  .stats-number {
    font-size: 28px;
  }
  
  .stats-label {
    font-size: 12px;
  }
  
  .cost-table-title {
    font-size: 22px;
  }
  
  /* Force header visibility on very small screens */
  .cost-table-header {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 15 !important;
    background: white !important;
    border-bottom: 2px solid #e0e0e0 !important;
    min-height: 45px !important;
    height: auto !important;
    width: 100%;
  }
  
  .cost-table-header .cost-table-cell.cost-header-action,
  .cost-table-header .cost-table-cell.cost-header-traditional,
  .cost-table-header .cost-table-cell.cost-header-paidwork {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 45px !important;
    font-size: 12px !important;
    padding: 8px 4px !important;
    height: auto !important;
  }
  
  .roi-title {
    font-size: 22px;
  }
  
  .roi-annual-value {
    font-size: 24px;
  }
  
  .seo-faq-title {
    font-size: 22px;
  }
}

/* ========== Compare Pages Styles ========== */

/* Platform Statistics Section */
.compare-stats-section {
  padding: 80px 20px;
}

.compare-stats-section.google {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.compare-stats-section.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
}

.compare-stats-section.apple {
  background: linear-gradient(135deg, #000000 0%, #A8A8A8 100%);
}

.compare-stats-section.tiktok {
  background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

.compare-stats-section.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.compare-stats-section.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
}

.compare-stats-section.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
}

.compare-stats-section.index {
  background: linear-gradient(135deg, #326ef1 0%, #764ba2 100%);
}

.compare-stats-section.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.compare-stats-section.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
}

.compare-stats-section.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
}

.compare-stats-section.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.compare-stats-section.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.compare-stats-section.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
}

.compare-stats-section.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
}

.compare-stats-section.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
}

.compare-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-stats-title {
  color: white;
  margin-bottom: 50px;
  text-align: center;
  font-size: 36px;
  margin-top: 0;
}

.compare-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.compare-stats-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.compare-stats-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.compare-stats-number.google { color: #4285F4; }
.compare-stats-number.meta { color: #4267B2; }
.compare-stats-number.apple { color: #000000; }
.compare-stats-number.tiktok { color: #FF0050; }
.compare-stats-number.applovin { color: #3B82F6; }
.compare-stats-number.inmobi { color: #0072CE; }
.compare-stats-number.liftoff { color: #6A1B9A; }
.compare-stats-number.index { color: #4285F4; }
.compare-stats-number.linkedin { color: #0077B5; }
.compare-stats-number.snapchat { color: #FFFC00; }
.compare-stats-number.microsoft { color: #00A4EF; }
.compare-stats-number.youtube { color: #FF0000; }
.compare-stats-number.facebook { color: #1877F2; }
.compare-stats-number.instagram { color: #E1306C; }
.compare-stats-number.bing { color: #008373; }
.compare-stats-number.twitter { color: #000000; }

.compare-stats-desc {
  color: #333;
  font-weight: 600;
}

/* Comparison Table Section */
.comparison-table-section {
  padding: 80px 20px;
}

.comparison-table-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-table-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  margin-top: 0;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
}

.comparison-table-header-cell {
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
}

.comparison-table-header-cell.feature {
  background: #f8f9fa;
  color: #333;
}

.comparison-table-header-cell.competitor {
  text-align: center;
}

.comparison-table-header-cell.competitor.google {
  background: #E8F0FE;
  color: #1967D2;
}

.comparison-table-header-cell.competitor.meta {
  background: #e3f2fd;
  color: #1565c0;
}

.comparison-table-header-cell.competitor.apple {
  background: #f5f5f5;
  color: #333;
}

.comparison-table-header-cell.competitor.tiktok {
  background: #fff0f5;
  color: #c2185b;
}

.comparison-table-header-cell.competitor.applovin {
  background: #DBEAFE;
  color: #1E40AF;
}

.comparison-table-header-cell.competitor.inmobi {
  background: #e3f2fd;
  color: #0072CE;
}

.comparison-table-header-cell.competitor.liftoff {
  background: #f3e5f5;
  color: #6A1B9A;
}

.comparison-table-header-cell.competitor.linkedin {
  background: #E3F2FD;
  color: #0077B5;
}

.comparison-table-header-cell.competitor.snapchat {
  background: #FFFDE7;
  color: #F7EC09;
}

.comparison-table-header-cell.competitor.microsoft {
  background: #E1F5FE;
  color: #00A4EF;
}

.comparison-table-header-cell.competitor.youtube {
  background: #FFEBEE;
  color: #FF0000;
}

.comparison-table-header-cell.competitor.facebook {
  background: #E3F2FD;
  color: #1877F2;
}

.comparison-table-header-cell.competitor.instagram {
  background: #FCE4EC;
  color: #E1306C;
}

.comparison-table-header-cell.competitor.bing {
  background: #E0F2F1;
  color: #008373;
}

.comparison-table-header-cell.competitor.twitter {
  background: #ECEFF1;
  color: #000000;
}

.comparison-table-header-cell.paidwork {
  background: #e8f5e9;
  color: #2e7d32;
  text-align: center;
}

.comparison-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table-row:last-child {
  border-bottom: none;
}

.comparison-table-cell {
  padding: 20px;
}

.comparison-table-cell.feature-name {
  font-weight: 600;
  color: #333;
}

.comparison-table-cell.competitor-value {
  text-align: center;
  color: #666;
}

.comparison-table-cell.paidwork-value {
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
}

/* Comparison Cards (for /compare/index.php) */
.comparison-cards-section {
  padding: 80px 20px;
}

.comparison-cards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-cards-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  margin-top: 0;
}

.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.comparison-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card-header {
  padding: 30px;
  color: white;
  text-align: center;
}

.comparison-card-header.google {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.comparison-card-header.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
}

.comparison-card-header.tiktok {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.comparison-card-header.apple {
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.comparison-card-header.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.comparison-card-header.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
}

.comparison-card-header.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
}

.comparison-card-header.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.comparison-card-header.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
}

.comparison-card-header.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
}

.comparison-card-header.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.comparison-card-header.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.comparison-card-header.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
}

.comparison-card-header.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
}

.comparison-card-header.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
}

.comparison-card-title {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.comparison-card-subtitle {
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.comparison-card-body {
  padding: 30px;
}

.comparison-card-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-card-stat:last-of-type {
  margin-bottom: 20px;
}

.comparison-card-stat-label {
  color: #666;
}

.comparison-card-stat-value {
  font-weight: bold;
}

.comparison-card-stat-value.competitor { color: #e65100; }
.comparison-card-stat-value.paidwork { color: #2e7d32; }
.comparison-card-stat-value.savings { color: #326ef1; }

.comparison-card-link {
  display: block;
  text-align: center;
  padding: 15px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.comparison-card-link:hover {
  opacity: 0.9;
}

.comparison-card-link.google {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.comparison-card-link.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
}

.comparison-card-link.tiktok {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.comparison-card-link.apple {
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.comparison-card-link.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.comparison-card-link.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
}

.comparison-card-link.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
}

.comparison-card-link.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.comparison-card-link.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
}

.comparison-card-link.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
}

.comparison-card-link.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.comparison-card-link.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.comparison-card-link.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
}

.comparison-card-link.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
}

.comparison-card-link.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
}

/* Compare ROI Calculator */
.compare-roi-section {
  padding: 80px 20px;
}

.compare-roi-section.google {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.compare-roi-section.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
}

.compare-roi-section.apple {
  background: linear-gradient(135deg, #000000 0%, #A8A8A8 100%);
}

.compare-roi-section.tiktok {
  background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

.compare-roi-section.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.compare-roi-section.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
}

.compare-roi-section.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
}

.compare-roi-section.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.compare-roi-section.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
}

.compare-roi-section.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
}

.compare-roi-section.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.compare-roi-section.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.compare-roi-section.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
}

.compare-roi-section.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
}

.compare-roi-section.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
}

.compare-roi-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.compare-roi-header {
  text-align: center;
  margin-bottom: 40px;
}

.compare-roi-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.compare-roi-subtitle {
  color: #666;
  font-size: 18px;
}

.compare-roi-calc {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.compare-roi-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.compare-roi-row:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.compare-roi-label {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.compare-roi-value {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.compare-roi-value.competitor-cost {
  color: #e65100;
}

.compare-roi-value.google-cost {
  color: #1967D2;
}

.compare-roi-value.meta-cost {
  color: #1565c0;
}

.compare-roi-value.apple-cost {
  color: #000;
}

.compare-roi-value.tiktok-cost {
  color: #c2185b;
}

.compare-roi-value.applovin-cost {
  color: #3B82F6;
}

.compare-roi-value.inmobi-cost {
  color: #0072CE;
}

.compare-roi-value.liftoff-cost {
  color: #6A1B9A;
}

.compare-roi-value.paidwork-cost {
  color: #2e7d32;
}

.compare-roi-value.savings {
  color: #326ef1;
}

.compare-roi-value.savings.apple {
  color: #000;
}

.compare-roi-value.savings.tiktok {
  color: #FF0050;
}

.compare-roi-value.savings.meta {
  color: #4267B2;
}

.compare-roi-value.right {
  text-align: right;
}

.compare-roi-annual {
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  color: white;
}

.compare-roi-annual.google {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.compare-roi-annual.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
}

.compare-roi-annual.apple {
  background: linear-gradient(135deg, #000000 0%, #A8A8A8 100%);
}

.compare-roi-annual.tiktok {
  background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

.compare-roi-annual.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.compare-roi-annual.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
}

.compare-roi-annual.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
}

.compare-roi-annual.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.compare-roi-annual.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
}

.compare-roi-annual.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
}

.compare-roi-annual.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.compare-roi-annual.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.compare-roi-annual.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
}

.compare-roi-annual.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
}

.compare-roi-annual.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
}

.compare-roi-annual-label {
  font-size: 14px;
  margin-bottom: 5px;
}

.compare-roi-annual-value {
  font-size: 36px;
  font-weight: bold;
}

.compare-roi-cta {
  text-align: center;
}

.compare-roi-button {
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
  color: white;
}

.compare-roi-button:hover {
  transform: scale(1.05);
}

.compare-roi-button.google {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.compare-roi-button.meta {
  background: linear-gradient(135deg, #4267B2 0%, #8B9DC3 100%);
  box-shadow: 0 10px 30px rgba(66, 103, 178, 0.4);
}

.compare-roi-button.apple {
  background: linear-gradient(135deg, #000000 0%, #A8A8A8 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.compare-roi-button.tiktok {
  background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
  box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
}

.compare-roi-button.applovin {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.compare-roi-button.inmobi {
  background: linear-gradient(135deg, #0072CE 0%, #00B8D4 100%);
  box-shadow: 0 10px 30px rgba(0, 114, 206, 0.4);
}

.compare-roi-button.liftoff {
  background: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
  box-shadow: 0 10px 30px rgba(106, 27, 154, 0.4);
}

.compare-roi-button.linkedin {
  background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

.compare-roi-button.snapchat {
  background: linear-gradient(135deg, #FFFC00 0%, #F7EC09 100%);
  box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4);
}

.compare-roi-button.microsoft {
  background: linear-gradient(135deg, #00A4EF 0%, #7FBA00 100%);
  box-shadow: 0 10px 30px rgba(0, 164, 239, 0.4);
}

.compare-roi-button.youtube {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.compare-roi-button.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.compare-roi-button.instagram {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #FD1D1D 100%);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.compare-roi-button.bing {
  background: linear-gradient(135deg, #008373 0%, #00A8A0 100%);
  box-shadow: 0 10px 30px rgba(0, 131, 115, 0.4);
}

.compare-roi-button.twitter {
  background: linear-gradient(135deg, #000000 0%, #536471 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Compare FAQ Section */
.compare-faq-section {
  padding: 80px 20px;
}

.compare-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.compare-faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.compare-faq-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.compare-faq-question {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.compare-faq-answer {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .pw_index_ab_footer, .pw_index_delegate_footer {
    font-size: 19px;
    line-height: normal;
  }
  .pw_index_ab_title, .pw_index_delegate_title {
    font-size: 34px;
    text-align: center;
    line-height: normal;
}
.comparison-table-row {
  font-size: 15px;
}
.comparison-table-header-cell {
  font-size: 17px;
}
.comparison-table-title {
  font-size: 32px;
    line-height: normal;
}
}