.containeig {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ===== HERO SECTION ===== */
.hero-modern {
  background: linear-gradient(135deg, #6C63FF 0%, #3B82F6 50%, #00C9A7 100%);
  border-radius: 16px;
  padding: 56px 40px;
  margin-bottom: 48px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-modern h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #FFFFFF;
}

.hero-modern .subtitle {
  font-size: 19px;
  opacity: 0.95;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 24px 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  opacity: 0.95;
  color: #FFFFFF;
}

.hero-stats .stat-item i {
  font-size: 18px;
}

/* Primary Button - Free Likes */
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #6C63FF;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.cta-button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  color: #5A52D5;
}

.cta-button.primary .pulse {
  animation: pulse 2s infinite;
}

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

/* Secondary Button - Buy Likes */
.cta-button.secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255,255,255,0.35);
  border-color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-button.secondary .sparkle {
  display: inline-block;
  animation: sparkle 2.5s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.15) rotate(10deg); }
  75% { transform: scale(1.15) rotate(-10deg); }
}

/* ===== RESPONSIVE BUTTON GROUP ===== */
@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button.primary,
  .cta-button.secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 16px;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .cta-button.primary,
  .cta-button.secondary {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.cta-sub {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 12px;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.cta-sub strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ===== BOXES ===== */
.success-box {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  border-left: 5px solid #00C9A7;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 24px 0;
  color: #065F46;
}

.success-box strong {
  color: #065F46;
}

.warning-box {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-left: 5px solid #FFC857;
  padding: 24px 32px;
  border-radius: 16px;
  margin: 24px 0;
  color: #92400E;
}

.warning-box strong {
  color: #92400E;
}

/* ===== STEP LIST ===== */
.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.step-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #E5E7EB;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
  border-color: #8B83FF;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6C63FF, #8B83FF);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.step-item h4 {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 8px;
}

.step-item p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.feature-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #E5E7EB;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
  border-color: #8B83FF;
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  color: #1A1A2E;
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: #8B83FF;
}

.faq-question {
  padding: 20px 24px;
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 600;
  color: #1A1A2E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.faq-question:hover {
  background: #F3F4F6;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #6C63FF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #6B7280;
  line-height: 1.7;
  display: none;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== SECTION HEADINGS ===== */
.containeig h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.containeig h3 {
  font-size: 21px;
  font-weight: 600;
  color: #1A1A2E;
  margin: 24px 0 8px;
  line-height: 1.3;
}

.containeig p {
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
  font-size: 16px;
}

/* ===== UNORDERED LIST (Benefits) ===== */
.containeig ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.containeig ul li {
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.containeig ul li:last-child {
  border-bottom: none;
}

.containeig ul li span:first-child {
  font-size: 24px;
  flex-shrink: 0;
}

.containeig ul li strong {
  color: #1A1A2E;
  font-size: 16px;
}

.containeig ul li p {
  margin: 4px 0 0;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  padding: 48px 40px;
  border-radius: 16px;
  margin: 48px 0;
  border: 1px solid #E5E7EB;
}

.final-cta h3 {
  font-size: 32px;
  color: #1A1A2E;
  margin-top: 0;
  font-weight: 700;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #374151;
  font-size: 16px;
}

.final-cta .cta-button {
  margin-bottom: 8px;
}

.final-cta .cta-sub {
  color: #6B7280;
  font-size: 14px;
  margin-top: 12px;
}

/* ===== RESPONSIVE - PX ONLY ===== */
@media (max-width: 768px) {
  .hero-modern {
    padding: 40px 24px;
  }
  
  .hero-modern h1 {
    font-size: 32px;
  }
  
  .hero-modern .subtitle {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-stats .stat-item {
    font-size: 13px;
  }
  
  .step-list {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .containeig h2 {
    font-size: 26px;
  }
  
  .containeig h3 {
    font-size: 18px;
  }
  
  .final-cta {
    padding: 32px 24px;
  }
  
  .final-cta h3 {
    font-size: 24px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 16px 20px;
  }
  
  .faq-answer {
    font-size: 14px;
    padding: 0 20px 20px;
  }
  
  .success-box,
  .warning-box {
    padding: 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-modern {
    padding: 32px 16px;
  }
  
  .hero-modern h1 {
    font-size: 26px;
  }
  
  .hero-modern .subtitle {
    font-size: 15px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  
  .hero-stats .stat-item {
    font-size: 13px;
  }
  
  .containeig h2 {
    font-size: 22px;
  }
  
  .containeig h3 {
    font-size: 17px;
  }
  
  .containeig p {
    font-size: 15px;
  }
  
  .final-cta {
    padding: 24px 16px;
  }
  
  .final-cta h3 {
    font-size: 20px;
  }
  
  .step-number {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  
  .step-item h4 {
    font-size: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card h4 {
    font-size: 16px;
  }
  
  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .success-box,
  .warning-box {
    padding: 16px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero-modern h1 {
    font-size: 22px;
  }
  
  .containeig h2 {
    font-size: 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
   
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-button {
  background-color: #cbffee;
  color: #380252;
  text-align: left;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 30px;
  transition: background 0.3s ease;
  min-width: 100px;
}

.green-icon {
  color: green;
}

@media (max-width: 600px) {
  .feature-button {
    flex: 1 1 calc(50% - 20px);
    width: 90%;
    font-size: 11px;
    padding: 3px 3px;
  }
}

.container-product-table {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.table-body {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

.tagline {
  font-size: 18px;
  color: #333;
  text-align: center;
  font-weight: normal;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

.price {
  list-style-type: none;
  border: 0 solid #eee;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}

.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
}

.price li {
  padding: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.price .option {
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.price .itemcolor {
  background-color: #eee;
  font-size: 35px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 10px;
}

.price .product-item {
  background-color: #eee;
  font-size: 28px;
  font-weight: 400;
  color: #000;
}

/* Reusable color classes */
.red-bg {
  background-color: #FD403A;
  color: #fff;
}

.blue-bg {
  background-color: #0866FF;
  color: #fff;
}

.pink-bg {
  background-color: #CF245F;
  color: #fff;
}

.black-bg {
  background-color: #1D0010;
  color: #fff;
}

.orange-bg {
  background-color: #F55100;
  color: #fff;
}

.green-bg {
  background-color: #2DB35E;
  color: #fff;
}

.price .product-quantity {
  font-size: 28px;
  padding: 5px 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  text-align: center;
}

.price .product-title {
  font-size: 20px;
  padding: 0 0 10px;
  text-align: center;
}

.price .button {
  display: inline-block;
  border: none;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.price .button:hover {
  background-color: #381928;
}

.save {
  background-color: #000;
  color: #C3C3C3;
  font-size: 18px;
}

.starting {
  background-color: #EEEEEE;
  font-size: 16px;
}

.pricing {
  color: #002255;
  background-color: #fff;
}

.per-title {
  color: #fff;
  font-size: 15px;
  background-color: #1A7E13;
  border-radius: 7px;
  padding: 2px 5px 2px 5px;
}

h1 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.price .product-quantity,
.price .product-title,
.price .button {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .table-body {
    width: 50%;
  }
}

@media only screen and (max-width: 500px) {
  .table-body {
    width: 90%;
    max-width: 280px;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  h1 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 14px;
    max-width: 1000px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}

/*/////////////////////PRICE TABLE END///////////////////////*/

.heading {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.subheading {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.stepoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 0px;
  padding: 20px;
}

.stepoint {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0 0 0 / .1);
  transition: transform 0.3s ease-in-out;
}

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

.stepoint-number {
  font-size: 36px;
  font-weight: 700;
  color: #d32f2f;
}

.stepoint-title {
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
  color: #333;
}

.stepoint-description {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

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

.section-container {
  max-width: 1240px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgb(0 0 0 / .1);
}

.section-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  padding: 0 20px;
}

.highlight {
  color: #d32f2f;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #d32f2f;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.cta-button:hover {
  background: #b71c1c;
}

.cta-container {
  text-align: center;
  background: #5796fc;
  background: linear-gradient(90deg, #5796fc 0%, #b2dbfe 80%);
  background: -webkit-linear-gradient(90deg, #5796fc 0%, #b2dbfe 80%);
  background: -moz-linear-gradient(90deg, #5796fc 0%, #b2dbfe 80%);
  color: #000;
  padding: 40px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1250px;
  box-shadow: 0 4px 10px rgb(0 0 0 / .1);
}

.cta-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #d32f2f;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.cta-button:hover {
  background: #f5f5f5;
}

@media (max-width:600px) {
  .cta-title {
    font-size: 22px;
  }
  .cta-text {
    font-size: 16px;
  }
  .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.table-width {
  max-width: 1000px;
}

.title-text {
  font-size: 18px;
  text-align: center;
  max-width: 1000px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.middlemenu {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.select-option {
  padding: 5px;
  border: 2px solid green;
  background-color: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: blue;
}

.textheader {
  font-size: 24px;
  font-weight: 700;
  margin: 20px;
}

.flag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.flag-card {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.flag-card img {
  max-width: 28px;
  max-height: 18px;
  object-fit: cover;
  border-radius: 3px;
}

input {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s;
  outline: none;
}

input:focus {
  border-color: #ff0000;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}

input::placeholder {
  color: #aaa;
}

.buttonx {
  color: #fff;
  font-size: 20px;
  background: #ff0000;
  background: linear-gradient(267deg,#ff0000 0%, #980202 80%);
  background: -webkit-linear-gradient(267deg,#ff0000 0%, #980202 80%);
  background: -moz-linear-gradient(267deg,#ff0000 0%, #980202 80%);
  width: 70%;
  margin: 0 auto;
  padding: 10px;
}

#result {
  margin-top: 35px;
  font-size: 22px;
  font-weight: bold;
  min-height: 40px;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.2); }
  70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.instructions {
  margin-top: 30px;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
}

.instructions h3 {
  margin-bottom: 10px;
  color: #ff0000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.imagemit-container {
  text-align: center;
}

.imagemit-container img {
  width: auto;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .imagemit-container img {
    width: 100%;
  }
}

.boost-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.boost-links .offerbtn {
  display: inline-block;
  width: 300px;
  text-align: center;
  padding: 7px 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.boost-links .offerbtn.btn-a {
  background: #0066FF;
  color: white;
  border: 2px solid #0066FF;
}

.boost-links .offerbtn.btn-b {
  background: #fff;
  color: #052FD5;
  border: 2px solid #052FD5;
}

.boost-links .offerbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.experiment-note {
  background: #fef2e8;
  border-left: 4px solid #f97316;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 8px;
}

.honest-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
  justify-content: center;
}

.stat-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  transition: transform 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f97316;
  display: block;
}

.what-works-list {
  background: #e6f7e6;
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
}

.what-works-list h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.what-works-list ul {
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.comparison-table th {
  background: #f97316;
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: white;
}

.comparison-table tr:hover td {
  background: #fef9f5;
}

.check-yes {
  color: #22c55e;
  font-weight: bold;
}

.check-no {
  color: #ef4444;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.resource-link {
  padding: 12px 20px;
  background: #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease;
}

.resource-link:hover {
  background: #e0e0e0;
}

.strategy-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7e6 100%);
  padding: 28px;
  border-radius: 20px;
  margin: 32px 0;
}

.strategy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.strategy-card {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.strategy-card h4 {
  margin: 0 0 12px 0;
  color: #f97316;
}

.strategy-card ul {
  margin: 0;
  padding-left: 20px;
}

.strategy-card li {
  margin: 8px 0;
}

.update-badge {
  display: inline-block;
  background: #f97316;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 12px;
  vertical-align: middle;
}

.author-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #6c6c6c;
}

@media (max-width: 600px) {
  .honest-stats {
    flex-direction: column;
  }
  .strategy-grid {
    flex-direction: column;
  }
  .comparison-table th, .comparison-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* ============================================ */
/* NEW CSS SECTION - Professional, px units only */
/* Does NOT interfere with existing styles      */
/* ============================================ */

.seo-content-wrapper {
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 16px;
}

.rich-seo-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef2f8;
}

.rich-seo-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
  border-left: 4px solid #9146FF;
  padding-left: 20px;
}

.rich-seo-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 24px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rich-seo-card h3 i {
  color: #9146FF;
  font-size: 20px;
  width: 28px;
}

.rich-seo-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 16px;
}

.two-col-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 16px;
}

.two-col-grid > div {
  flex: 1;
  min-width: 250px;
}

.feature-highlight {
  background: #faf8ff;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px 0 0;
  border-left: 3px solid #9146FF;
}

.feature-highlight strong {
  color: #9146FF;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: #faf9fe;
  border-radius: 20px;
  padding: 28px 24px;
  margin: 32px 0;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 110px;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #9146FF;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
  font-weight: 500;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
}

.step {
  flex: 1;
  background: #fafbfe;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #edf2f7;
  min-width: 150px;
}

.step-number {
  width: 44px;
  height: 44px;
  background: #9146FF;
  color: white;
  border-radius: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.step h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a202c;
  font-size: 18px;
}

.step p {
  font-size: 14px;
  margin-bottom: 0;
  color: #718096;
  line-height: 1.5;
}

.cta-banner {
  background: linear-gradient(105deg, #f6f3ff 0%, #fef9ff 100%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin: 32px 0 16px;
  border: 1px solid #e9dfff;
}

.cta-banner h3 {
  margin-top: 0;
  color: #1a202c;
  font-size: 24px;
}

.pill-badge {
  display: inline-block;
  background: #edf2f7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #4a5568;
  margin: 0 6px;
}

hr.divider {
  margin: 32px 0;
  border: 0;
  height: 1px;
  background: #e2e8f0;
}

@media (max-width: 768px) {
  .rich-seo-card {
    padding: 24px;
  }
  .rich-seo-card h2 {
    font-size: 24px;
  }
  .trust-stats {
    flex-direction: column;
    gap: 20px;
  }
  .step {
    min-width: 100%;
  }
  .cta-banner h3 {
    font-size: 20px;
  }
}

.center-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 20px auto;
}