/* Why Choose Influencer Marketing Section */
.why-influencer-section {
  background: var(--white);
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
}

.why-influencer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-influencer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-influencer-card {
  background: var(--white);
  border: 1px solid #d0f0ff;
  border-left: 4px solid var(--mint);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-influencer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.why-influencer-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.why-influencer-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.why-influencer-card strong {
  font-weight: 700;
}

.influencer-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 950px;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(46,216,182,0.07);
  border: 1.5px solid #eaf6fb;
  padding: 1.5rem 1rem;
}

.influencer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 1.08rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.influencer-table th, .influencer-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
}

.influencer-table th {
  background: #f8fffa;
  color: #183b56;
  font-weight: 700;
  border-bottom: 2px solid #00b3ff;
  font-size: 1.1rem;
}

.influencer-table tr {
  border-bottom: 1px solid #00ff55;
}

.influencer-table tr:last-child td {
  border-bottom: none;
}

.influencer-table td {
  color: #183b56;
  vertical-align: middle;
  font-size: 1.05rem;
}

.influencer-table tr:nth-child(even) td {
  background: #f6fcfa;
}

@media (max-width: 600px) {
  .influencer-table-wrapper {
    padding: 0.5rem 0.2rem;
  }
  .influencer-table th, .influencer-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.98rem;
  }
}

/* Creator Types Section */
.creator-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .creator-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .creator-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.creator-type-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f8fffa;
  border-radius: 0.75rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(46,216,182,0.07);
  min-height: 120px;
}

.creator-type-icon {
  font-size: 2.5rem;
  color: #2ed8b6;
  min-width: 48px;
  margin-top: 0.2rem;
}

.creator-type-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #183b56;
  margin-bottom: 0.5rem;
}

.creator-type-card p {
  font-size: 1.08rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Platforms Section */
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .platforms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.platforms-col {
  display: flex;
  flex-direction: column;
}
.platforms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.platforms-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.08rem;
  color: #183b56;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.platforms-list li:last-child {
  margin-bottom: 0;
}
.platform-icon {
  font-size: 2rem;
  color: #2ed8b6;
  min-width: 2.2rem;
  margin-top: 0.2rem;
}
.platforms-list strong {
  color: #183b56;
  font-weight: 700;
}

/* Payment Models Section */
.payment-models-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto; /* Centered horizontally */
  align-items: flex-start; /* Align cards to left */
}

.payment-model-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.payment-model-number {
  background: #e6faff;
  color: #2ed8b6;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 2.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px rgba(46,216,182,0.07);
}

.payment-model-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #183b56;
  margin-bottom: 0.4rem;
}

.payment-model-card p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.deliver-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .deliver-results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
  }
}

.deliver-results-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 120px;
}

.deliver-results-arrow {
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #e6faff 80%, #b3eaff 100%);
  border-radius: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.deliver-results-arrow::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 8px;
  width: 24px;
  height: 16px;
  background: transparent;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #b3eaff;
  border-radius: 0 2rem 2rem 0;
}

.deliver-results-content {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.deliver-results-icon {
  font-size: 2.2rem;
  color: #2ed8b6;
  min-width: 48px;
  margin-top: 0.2rem;
}

.deliver-results-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #183b56;
  margin-bottom: 0.4rem;
}

.deliver-results-content p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* ROI Section */
.roi-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 900px) {
  .roi-grid {
    flex-direction: row;
    gap: 3rem;
  }
  .roi-left, .roi-right {
    width: 50%;
  }
}
.roi-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.roi-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}
.roi-icon {
  font-size: 1.3rem;
  color: #2ed8b6;
  margin-right: 0.5rem;
}
.roi-sample-box {
  background: #e6f0ff;
  border-radius: 0.7rem;
  padding: 1.2rem 1.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(46,216,182,0.07);
  color: #183b56;
}
.roi-sample-icon {
  font-size: 1.3rem;
  color: #2ed8b6;
  margin-right: 0.5rem;
}
.roi-sample-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.2rem;
  display: inline-block;
}
.roi-sample-box ul {
  margin: 0.7rem 0 0 0;
  padding-left: 1.2rem;
}
.roi-sample-box li {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
  color: #183b56;
}
.roi-math-list {
  margin: 0;
  padding-left: 1.2rem;
}
.roi-math-list li {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: #183b56;
}
.roi-math-list li:last-child {
  margin-bottom: 0;
}
