/* Platform Page Styles */

/* Section Title Center */
.section-title-center {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-desc {
  text-align: center;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* 
카테고리 스타일 추가
 */
/* 카테고리 스타일 */
.category-wrapper {
  margin: 30px 0 80px;
}

.category-wrapper > ul {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.category-wrapper > ul > li > a {
  color: #1a1a1a;
  text-decoration: none;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
}
.category-wrapper > ul > li > a.active {
  background: #3b70ff;
  color: white;
}

/* Platform Hero Section */
.platform-hero {
  background: linear-gradient(180deg, #ffe5f0 0%, #ffffff 100%);
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

.platform-hero.youtube {
  background: linear-gradient(180deg, #ffe5e5 0%, #fff 40%);
}

.platform-hero.tiktok {
  background: linear-gradient(180deg, #e3f7f7 0%, #fff 40%);
}

.platform-hero.twitter {
  background: linear-gradient(180deg, #f5f5f5 0%, #fff 40%);
}

.platform-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-bg-icon {
  position: absolute;
  color: #6366f1;
  opacity: 0.2;
}

.platform-hero-bg.youtube .hero-bg-icon {
  color: #ff0000;
  opacity: 0.15;
}

.platform-hero-bg.tiktok .hero-bg-icon {
  color: #40c9c9;
  opacity: 0.15;
}

.platform-hero-bg.twitter .hero-bg-icon {
  color: #6f6f6f;
  opacity: 0.15;
}

.hero-bg-icon-1 {
  left: 140px;
  top: 230px;
  font-size: 320px;
  transform: rotate(-29deg);
}

.hero-bg-icon-2 {
  right: 200px;
  top: 30px;
  font-size: 250px;
  transform: rotate(19deg);
}

.platform-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.platform-icons {
  margin-bottom: 20px;
}

.platform-icons i {
  font-size: 48px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-icons.twitter i {
  color: #6f6f6f;
  background: none;
  -webkit-text-fill-color: unset;
}

.platform-icons.tiktok i {
  color: #e3f7f7;
  background: none;
  -webkit-text-fill-color: unset;
}

.platform-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #f43f5e;
  margin-bottom: 28px;
}

.platform-hero-title.youtube {
  color: #ff0000;
}

.platform-hero-title.tiktok {
  color: #40c9c9;
}

.platform-hero-title.twitter {
  color: #6f6f6f;
}

.platform-hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #737373;
  line-height: 1.5;
  margin-bottom: 48px;
}

.platform-cta-btn {
  display: inline-block;
  background: #f43f5e;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #f43f5e;
  transition: all 0.3s;
}
.platform-cta-btn.youtube {
  background-color: #ff0000;
  border-color: #ff0000;
}

.platform-cta-btn.youtube:hover {
  background: #cc0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.platform-cta-btn:hover {
  background: #e11d48;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
}

.platform-cta-btn.tiktok {
  background-color: #000000;
  color: #fff;
  border: none;
}
.platform-cta-btn.tiktok:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-cta-btn.twitter {
  background-color: #6f6f6f;
  border-color: #6f6f6f;
  color: #ffffff;
}
.platform-cta-btn.twitter:hover {
  background: #5a5a5a;
  box-shadow: 0 10px 30px rgba(111, 111, 111, 0.3);
}

/* Platform Services Section */
.platform-services {
  background: transparent;
  padding: 100px 0;
}
.platform-services.youtube {
  background: transparent;
}

.platform-services.tiktok {
  background: transparent;
}

.platform-services.twitter {
  background: transparent;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-feature-card {
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 30px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 10px;
}

.feature-card-content p {
  font-size: 20px;
  color: #737373;
  line-height: 1.5;
}

.feature-card-icon {
  width: 144px;
  height: 144px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon.pink {
  background: rgba(255, 228, 230, 0.5);
}

.feature-card-icon i {
  font-size: 72px;
  color: #f43f5e;
}

/* Service Categories Section */
.service-categories {
  background: #fff1f2;
  padding: 80px 0;
}

.service-categories.youtube {
  background: #ffeded;
}

.service-categories.tiktok {
  background: #e3f7f7;
}

.service-categories.twitter {
  background: #f5f5f5;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 32px;
  display: flex;
  gap: 28px;
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.category-thumb {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb-icon {
  width: 128px;
  height: 144px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.thumb-icon i {
  font-size: 48px;
}

.thumb-icon.blue i {
  color: #3b82f6;
}

.thumb-icon.red i {
  color: #ef4444;
}

.thumb-icon.gray i {
  color: #6b7280;
}

.thumb-icon.purple i {
  color: #a5b4fc;
}

.thumb-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.thumb-btn:hover {
  background: #f43f5e;
  color: #ffffff;
}

.category-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 10px;
}

.category-info > p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
  margin-bottom: 14px;
}

.category-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-features li {
  font-size: 14px;
  color: #18181b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-features li i {
  color: #f43f5e;
  font-size: 16px;
}

/* How to Use Section */
.how-to-use {
  background: #ffffff;
  padding: 100px 0;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 80px;
}

.step-item {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-image {
  background: #f3f4f6;
  border-radius: 12px;
  border: 2px solid #e4e4e7;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}

.step-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.05);
}

.step-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: #f43f5e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.step-number.tiktok {
  background: #40c9c9;
}

.step-number.twitter {
  background: #6f6f6f;
}

.step-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #18181b;
}

.step-item > p {
  font-size: 20px;
  color: #737373;
  line-height: 1.5;
  text-align: left;
}

/* Benefits Section */
.benefits-section {
  background: #f3f4f6;
  padding: 100px 0;
}

.benefits-grid {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 48px;
}

.benefit-icon {
  width: 144px;
  height: 144px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 80px;
  color: #3b82f6;
}

.benefit-card p {
  font-size: 20px;
  color: #737373;
  line-height: 1.6;
  text-align: left;
}

/* Why SNS헬프 Section */
.why-snshelp {
  background: #ffffff;
  padding: 100px 0;
}

.why-snshelp .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

.why-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin: 80px auto 0;
  width: 100%;
}

.why-snshelp .why-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.why-snshelp .why-icon {
  width: 220px;
  height: 220px;
  padding: 40px;
  background: #f3f5f7;
  border-radius: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-snshelp .why-icon i {
  font-size: 80px;
  color: #6b7280;
}

.why-snshelp .why-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 24px;
  text-align: center !important;
  width: 100% !important;
  margin: 0 !important;
}

.why-snshelp .why-item p {
  font-size: 18px;
  font-weight: 400;
  color: #6f6f6f;
  line-height: 25px;
  text-align: center !important;
  width: 100% !important;
  margin: 0 !important;
}

.why-snshelp .why-item h3,
.why-snshelp .why-item p {
  display: block;
}

.why-snshelp .why-item > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

/* Trust Section */
.trust-section {
  background: #fff1f2;
  padding: 100px 0;
}

.trust-section.tiktok {
  background: #e3f7f7;
}

.trust-section.twitter {
  background: #f5f5f5;
}

.concerns-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 48px;
}

.concern-item {
  background: #ffffff;
  border-radius: 50px;
  padding: 14px 16px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.concern-item p {
  font-size: 24px;
  color: #525252;
}

.concern-item .highlight {
  color: #f43f5e;
  font-weight: 600;
}

.concern-item .highlight.tiktok {
  color: #40c9c9;
}

.concern-item .highlight.twitter {
  color: #6f6f6f;
}

.concern-arrow {
  color: transparent;
  font-size: 20px;
  padding: 8px 0;
  background: transparent;
  width: 36px;
  height: 20px;
}

.concern-arrow i {
  color: #d4d4d8;
}

.trust-divider {
  width: 2px;
  height: 96px;
  background: #d6d3d1;
  margin: 48px auto;
}

.trust-message {
  font-size: 36px;
  text-align: center;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 80px;
}

.trust-features {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  max-width: 972px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-feature i {
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, #c7d2fe 0%, #93c5fd 50%, #818cf8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.trust-feature span {
  font-size: 24px;
  color: #525252;
}

.trust-conclusion {
  font-size: 36px;
  text-align: center;
  color: #000000;
  line-height: 1.5;
}

.trust-conclusion strong {
  font-weight: 700;
}

/* Policy Section */
.policy-section {
  background: #f3f4f6;
  padding: 100px 0;
}

.policy-grid {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-card {
  flex: 1;
}

.policy-header {
  background: #f43f5e;
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}

.policy-header.tiktok {
  background: #40c9c9;
}

.policy-header.twitter {
  background: #6f6f6f;
}

.policy-content {
  background: #ffffff;
  padding: 28px 12px;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.policy-content p {
  font-size: 20px;
  color: #18181b;
  line-height: 2;
}

.policy-content .highlight {
  color: #f43f5e;
  font-weight: 600;
}

/* Target Users Section */
.target-users {
  background: #ffffff;
  padding: 100px 0;
}

.target-grid {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.target-card {
  flex: 1;
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.target-image {
  height: 256px;
  background: #f3f4f6;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.target-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}

.target-image.personal::before {
  content: "👤";
}

.target-image.business::before {
  content: "🏪";
}

.target-image.influencer::before {
  content: "🎬";
}

.target-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  text-align: center;
  margin-bottom: 20px;
}

.target-info > p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
  margin-bottom: 20px;
}

.target-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.target-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  color: #18181b;
  font-weight: 500;
}

.target-info ul li i {
  color: #3b82f6;
  margin-top: 4px;
}

/* Products Section */
.products-section {
  background: #ffffff;
  padding: 0 0 100px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.product-tab {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #e4e4e7;
  background: transparent;
  color: #737373;
}

.product-tab.active {
  background: #f43f5e;
  color: #ffffff;
  border-color: #f43f5e;
  font-weight: 600;
}
.product-tab.tiktok.active {
  background: #40c9c9;
  border-color: #40c9c9;
}

.product-tabs.youtube .product-tab.active {
  background: #ff0000;
  border-color: #ff0000;
}

.product-tabs.youtube .product-tab:hover:not(.active) {
  border-color: #ff0000;
  color: #ff0000;
}

.product-tabs.twitter .product-tab.active {
  background: #6f6f6f;
  border-color: #6f6f6f;
  color: #ffffff;
}

.product-tabs.twitter .product-tab:hover:not(.active) {
  border-color: #6f6f6f;
  color: #6f6f6f;
}

.product-tab:hover:not(.active) {
  border-color: #f43f5e;
  color: #f43f5e;
}

/* Product Tab Content */
.product-tab-content {
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content.youtube {
  padding-bottom: 100px;
}

.product-tab-content.active .product-info-box {
  background: #e3f7f7;
}

.product-tab-content.active .product-info-box h3 {
  color: #40c9c9;
}

.product-tab-content.twitter.active .product-info-box {
  background: #f5f5f5;
}

.product-tab-content.twitter.active .product-info-box h3 {
  color: #6f6f6f;
}

.product-info-box {
  background: #fff1f2;
  border-radius: 20px;
  padding: 28px;
  max-width: 1200px;
  margin: 0 auto 28px;
  text-align: center;
}

.product-info-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f43f5e;
  margin-bottom: 20px;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-benefit {
  background: #ffffff;
  border-radius: 50px;
  padding: 16px 20px;
  font-size: 20px;
  color: #18181b;
}

.product-faq {
  max-width: 1200px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e4e4e7;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-q {
  color: #f43f5e;
  font-size: 20px;
  font-weight: 600;
}

.faq-question > span:not(.faq-q) {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
}

.faq-question > i {
  color: #9ca3af;
  font-size: 12px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question > i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  border-top: 1px solid #e4e4e7;
}

.faq-answer p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
  padding-top: 20px;
}

.order-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: #f43f5e;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #f43f5e;
  transition: all 0.3s;
}

.order-cta-btn.tiktok {
  background: black;
  color: #fff;
  border: black;
}

.order-cta-btn:hover {
  background: #e11d48;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
}

.order-cta-btn.tiktok:hover {
  background: black;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-cta-btn.twitter {
  background: #6f6f6f;
  border-color: #6f6f6f;
}

.order-cta-btn.twitter:hover {
  background: #5a5a5a;
  box-shadow: 0 10px 30px rgba(111, 111, 111, 0.3);
}

/* YouTube Page Specific Styles */
.youtube-page .order-cta-btn {
  background: #ff0000;
  border-color: #ff0000;
}

.youtube-page .order-cta-btn:hover {
  background: #cc0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-page .product-info-box h3 {
  color: #ff0000;
}

.youtube-page .faq-q {
  color: #ff0000;
}

.youtube-page .category-features li i {
  color: #ff0000;
}

.youtube-page .thumb-btn:hover {
  background: #ff0000;
  color: #ffffff;
}

.youtube-page .step-number {
  background: #ff0000;
}

/* Twitter Page Specific Styles */
.twitter-page .order-cta-btn {
  background: #6f6f6f;
  border-color: #6f6f6f;
}

.twitter-page .order-cta-btn:hover {
  background: #5a5a5a;
  box-shadow: 0 10px 30px rgba(111, 111, 111, 0.3);
}

.twitter-page .product-info-box h3 {
  color: #6f6f6f;
}

.twitter-page .faq-q {
  color: #6f6f6f;
}

.twitter-page .category-features li i {
  color: #6f6f6f;
}

.twitter-page .thumb-btn:hover {
  background: #6f6f6f;
  color: #ffffff;
}

.twitter-page .step-number {
  background: #6f6f6f;
}

/* FAQ Section */
.faq-section {
  background: #f3f4f6;
  padding: 100px 0;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Tips Section */
.tips-section {
  background: #ffffff;
  padding: 100px 0;
}

.tips-grid {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  flex: 1;
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.tip-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  text-align: center;
  margin-bottom: 20px;
}

.tip-card p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
}

/* Monetization Section */
.monetization-section {
  background: linear-gradient(270deg, #ffffff 0%, #fffbeb 100%);
  padding: 100px 0 144px;
}

.monetization-grid {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.monetization-card {
  flex: 1;
  background: #ffffff;
  border: 2px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.monetization-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  text-align: center;
  margin-bottom: 20px;
}

.monetization-card p {
  font-size: 16px;
  color: #737373;
  line-height: 1.5;
}

/* Info Section */
.info-section {
  background: #eff6ff;
  padding: 100px 0;
}

.info-highlight-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  max-width: 926px;
  margin: 0 auto 48px;
  text-align: center;
}

.info-highlight-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 28px;
}

.info-highlight-box p {
  font-size: 24px;
  color: #525252;
  line-height: 1.6;
}

.info-divider {
  width: 2px;
  height: 96px;
  background: #d6d3d1;
  margin: 48px auto;
}

.info-warning-title {
  font-size: 36px;
  text-align: center;
  color: #000000;
  margin-bottom: 48px;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  padding: 100px 0;
  position: relative;
}

.final-message-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 28px;
  max-width: 933px;
  margin: 0 auto;
  text-align: center;
}

.final-message-box p {
  font-size: 24px;
  font-weight: 600;
  color: #18181b;
  line-height: 1.6;
}

.final-message-box .blue {
  color: #3b82f6;
}

/* Service Links Section */
.service-links-section {
  background: #ffffff;
  padding: 100px 0;
}

.start-now {
  text-align: center;
  margin-bottom: 80px;
}

.start-now-text {
  font-size: 30px;
  font-weight: 700;
  color: #3b82f6;
  display: block;
  margin-bottom: 20px;
}

.start-now p {
  font-size: 24px;
  color: #737373;
  line-height: 1.5;
}

.service-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
  margin: 0 auto;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s;
}

.service-link:hover {
  transform: translateX(10px);
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.15);
}

.service-link-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

.service-link-icon.instagram {
  background: linear-gradient(135deg, #fbbf24 0%, #dc2626 50%, #9333ea 100%);
}

.service-link-icon.youtube {
  background: #dc2626;
}

.service-link-icon.tiktok {
  background: #000000;
}

.service-link-icon.twitter {
  background: #000000;
}

.service-link span:not(.service-link-icon) {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
}

.service-link i {
  color: #9ca3af;
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1400px) {
  .why-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-snshelp .why-item {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }

  .why-snshelp .why-icon {
    width: 160px;
    height: 160px;
    border-radius: 60px;
  }

  .why-snshelp .why-icon i {
    font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .service-features-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-item {
    width: calc(33.33% - 20px);
    min-width: 240px;
  }

  .benefits-grid,
  .policy-grid,
  .target-grid,
  .tips-grid,
  .monetization-grid {
    flex-direction: column;
  }

  .why-snshelp .why-item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .platform-hero-title {
    font-size: 28px;
  }

  .platform-hero-subtitle {
    font-size: 18px;
  }

  .section-title-center {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

  .hero-bg-icon {
    display: none;
  }

  .feature-card-content h3 {
    font-size: 22px;
  }

  .feature-card-content p {
    font-size: 16px;
  }

  .feature-card-icon {
    width: 100px;
    height: 100px;
  }

  .feature-card-icon i {
    font-size: 48px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    width: 100%;
    max-width: 320px;
  }

  .product-tabs {
    flex-wrap: wrap;
  }

  .product-tab {
    font-size: 16px;
    padding: 8px 16px;
  }

  .concern-item p {
    font-size: 18px;
  }

  .trust-message,
  .trust-conclusion {
    font-size: 24px;
  }

  .trust-feature span {
    font-size: 18px;
  }

  .why-snshelp .why-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-snshelp .why-icon {
    width: 120px;
    height: 120px;
    border-radius: 40px;
  }

  .why-snshelp .why-icon i {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .platform-hero {
    padding: 60px 0 40px;
  }

  .platform-cta-btn {
    font-size: 18px;
    padding: 16px 40px;
  }

  .service-feature-card {
    flex-direction: column;
    text-align: center;
  }

  .category-card {
    flex-direction: column;
  }

  .category-thumb {
    flex-direction: row;
    align-items: center;
  }

  .order-cta-btn {
    font-size: 18px;
    padding: 16px 32px;
  }
}
