/**
 * 首頁樣式 (index.php)
 *
 * 此檔案包含首頁的所有特定樣式
 * 引入順序：依賴於 component.css
 *
 * 內容：
 * - 網站架設流程區塊樣式
 * - 特色卡片樣式
 * - 特色描述文字
 * - CTA 按鈕區域
 *
 * @package 瓦吉科技
 */
/* ============================================
   網站架設流程區塊
   ============================================ */

/* 流程標題 */

.section-features {
  padding: 49px 0;
}
.features-title {
  color: #000;
  text-align: center;
  margin-bottom: 2.625rem;
  font-weight: 400;
}

/* 流程卡片網格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.275rem 4.288rem;
  justify-items: center;
  max-width: 35rem;
  margin: 0 auto;
}

/* 流程卡片基本樣式 */
.feature-card {
  position: relative;
  width: 130px;
  height: 130px;
  background-color: #fffcd7;
  border: 0.108rem solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
}

/* 流程卡片上方的數字圖片 */
.feature-card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 各步驟的數字圖片引入 */
.feature-card[data-step="1"]::before {
  background-image: url("../../images/首頁流程數字1.webp");
}

.feature-card[data-step="2"]::before {
  background-image: url("../../images/首頁流程數字2.webp");
}

.feature-card[data-step="3"]::before {
  background-image: url("../../images/首頁流程數字3.webp");
}

.feature-card[data-step="4"]::before {
  background-image: url("../../images/首頁流程數字4.webp");
}

.feature-card[data-step="5"]::before {
  background-image: url("../../images/首頁流程數字5.webp");
}

.feature-card[data-step="6"]::before {
  background-image: url("../../images/首頁流程數字6.webp");
}

/* 卡片互動效果 */
.feature-card:hover {
  transform: translateY(-0.219rem);
  box-shadow: 0 0.35rem 0.7rem rgba(0, 0, 0, 0.1);
}

/* 隱藏不需要的元素 */
.feature-card .feature-icon {
  display: none;
}

.feature-card h3 {
  display: none;
}

/* 卡片內文字樣式 */
.feature-card p {
  color: #000;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================
   特色描述與 CTA 按鈕區域
   ============================================ */

/* 特色描述文字 */
/* CTA 按鈕容器 */
.features-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-2xl);
}

/* ============================================
   響應式設計 (RWD)
   ============================================ */

/* 大螢幕調整 (max-width: 1440px) */
@media (max-width: 1440px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid,
  .strategy-grid {
    max-width: 95%;
    margin: 0 auto;
  }

  .contact-title-wrapper {
    width: 100%;
    gap: 0.875rem;
  }

  .marketing-left {
    width: 100%;
  }

  .marketing-items {
    width: 100%;
  }

  .contact-title-wrapper::before,
  .contact-title-wrapper::after {
    width: 4.375rem;
  }

  /* SEO 區塊響應式 */
  .seo-services-grid {
    justify-content: center !important;
  }

  .seo-services-grid > :nth-child(3) {
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(4),
  .seo-services-grid > :nth-child(5) {
    margin-left: 0 !important;
  }

  .seo-image img {
    width: 65% !important;
  }

  .seo-subtitle {
  }

  .section-description {
  }

  /* 雙項目區塊響應式 */
  .dual-items-grid {
    flex-direction: column;
    gap: 1.75rem;
  }

  .dual-item::before {
    left: -1.575rem !important;
    width: 13.344rem !important;
    height: 4.288rem !important;
  }

  .dual-item::after {
    right: -1.575rem !important;
    width: 13.344rem !important;
    height: 4.725rem !important;
  }

  .dual-item {
    padding: 2.188rem 1.313rem;
  }

  .dual-item h3 {
  }

  /* 核心策略區塊響應式 */
  .section-core-strategy {
    padding: 4.375rem 0 3.5rem;
  }

  .core-strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
    width: 100%;
    justify-items: center;
  }

  .platform-icon {
    width: 3.15rem !important;
    height: 3.15rem !important;
  }

  .strategy-left h3,
  .strategy-right h3 {
  }

  .strategy-items {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }

  .strategy-text {
    margin-left: 0;
    margin-top: 0.438rem;
  }

  .strategy-right {
    padding: 1.313rem 0.875rem;
  }

  .strategy-points {
    grid-template-columns: 1fr;
  }

  .marketing-items {
    grid-template-columns: repeat(1, 1fr) !important;
    width: 100% !important;
    justify-items: center;
  }

  .marketing-item h4 {
    padding-left: 0.91rem;
  }

  .marketing-left {
    width: 100% !important;
  }

  .marketing-right {
    max-width: 21.263rem !important;
  }

  .marketing-box-bottom {
    border: 0.119rem solid #000 !important;
    border-top: none !important;
    margin-top: -14px !important;
    padding-bottom: 7px !important;
  }

  .integrated-marketing-grid {
    flex-direction: column;
    gap: 1.75rem;
  }

  .box-decoration {
    height: 11.988rem !important;
    top: 1.575rem !important;
    right: -5.644rem !important;
  }

  .box-content {
    max-width: 16.45rem !important;
  }

  .index-dec-img {
    max-width: 46px;
  }

  .contact-title-wrapper::before,
  .contact-title-wrapper::after {
    width: 30% !important;
  }
}

/* 平板尺寸 (max-width: 1024px) */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.275rem 4.288rem;
  }
}

/* ============================================
   SEO 服務區塊
   ============================================ */

/* SEO 區塊基本樣式 */
.section-seo {
  padding: 2.625rem 0 1.4rem;
  background-color: #fffcd7;
}

/* SEO 描述文字 */
/* SEO 副標題 */
.seo-subtitle {
  color: #960000;
  margin-bottom: 2.8rem;
  font-weight: 400;
  margin-top: 21px;
}

/* ============================================
   服務卡片網格（3-2 排列）
   ============================================ */

/* 服務卡片網格 */
.seo-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3.938rem 3.063rem;
  justify-content: center;
  align-items: center;
  max-width: 45.25rem;
}

/* 前三個卡片佔據一行 */
.seo-services-grid > :nth-child(1),
.seo-services-grid > :nth-child(2),
.seo-services-grid > :nth-child(3) {
  flex: 0 0 28%;
  white-space: nowrap;
}

/* 第 4、5 個卡片佔據第二行 */
.seo-services-grid > :nth-child(4),
.seo-services-grid > :nth-child(5) {
  flex: 0 0 18.375rem;
}

/* ============================================
   單個服務卡片樣式
   ============================================ */

/* 服務卡片基本樣式 */
.service-card {
  position: relative;
  max-width: 14.175rem;
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 0.127rem solid #000;
  padding: 1.61rem 0 1.05rem;
  text-align: center;
}

/* 服務卡片標題 */
.service-title {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffd036;
  color: #000;
  font-weight: 400;
  padding: 11px 28px;
  border: 0.127rem solid #000;
  border-radius: 3.806rem;
  white-space: nowrap;
  z-index: 10;
}

/* 服務卡片描述文字 */
.service-description {
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   圖片與 CTA 按鈕區域
   ============================================ */

/* 了解更多圖片 */
.seo-image {
  text-align: center;
  margin-bottom: 3.063rem;
}

.seo-image img {
  width: 100%;
  max-width: 382px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* SEO CTA 按鈕容器 */
.seo-cta {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
  margin-bottom: 2.1rem;
}

/* ============================================
   響應式設計 (RWD) - SEO 區塊
   ============================================ */

/* 平板尺寸 (768px - 1024px) */
@media (max-width: 1024px) {
  /* 平板版本：2-2-1 排列 */
  .seo-services-grid > :nth-child(1),
  .seo-services-grid > :nth-child(2) {
    flex: 0 0 calc(50% - 0.656rem);
  }

  .seo-services-grid > :nth-child(3) {
    flex: 0 0 calc(50% - 0.656rem);
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(4),
  .seo-services-grid > :nth-child(5) {
    flex: 0 0 calc(50% - 0.656rem);
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(4) {
    margin-left: calc(25% - 0.328rem);
  }

  .seo-subtitle {
  }

  .section-description {
  }
}

/* ============================================
   雙項目展示區塊
   ============================================ */

/* 雙項目區塊基本樣式 */
.section-dual-items {
  padding-top: 84px;
}

/* 雙項目網格布局 */
.dual-items-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  width: 100%;
}

/* 單個項目容器 */
.dual-item {
  position: relative;
  flex: 1;
  background-color: transparent;
  text-align: center;
  width: 100%;
  max-width: 329px;
  height: auto;
  min-height: 266px;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
}

/* 項目左上角裝飾圖 */
.dual-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: 336px;
  height: 74px;
  background-image: url("../../images/G.A左上裝飾.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 項目右下角裝飾圖 */
.dual-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -35px;
  width: 336px;
  height: 74px;
  background-position: right;
  background-image: url("../../images/G.A右下裝飾.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 項目標題 */
.dual-item h3 {
  font-size: 1.25rem;
  color: #ffab36;
  margin-bottom: 16px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 項目描述文字 */
.dual-item-description {
  color: #000;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* 項目 CTA 按鈕容器 */
.dual-item-cta {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.531rem;
}

/* ============================================
   響應式設計 (RWD) - 雙項目區塊
   ============================================ */

/* 平板尺寸 (768px - 1024px) */
@media (max-width: 1024px) {
  .dual-items-grid {
    flex-direction: column;
    gap: 1.75rem;
  }

  .dual-item {
    padding: 2.188rem 1.313rem;
  }

  .dual-item h3 {
  }
}

/* ============================================
   核心策略區塊
   ============================================ */

.section-core-strategy {
  padding: 84px 0;
  background-color: #fff;
}

.core-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  margin-top: 34px;
}

/* 左區塊 */
.strategy-left {
  width: 100%;
  justify-items: center;
  padding: 21px;
}

.strategy-left h3,
.strategy-right h3 {
  font-weight: 400;
  color: #960000;
  margin-bottom: 21px;
  text-align: center;
}

.strategy-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 14px;
  margin-bottom: 14px;
}

.strategy-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  text-align: center;
  gap: 1.094rem;
}

.strategy-item:nth-child(5) {
  grid-column: 1 / 2;
}

.strategy-number {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.strategy-text {
  color: #000;
  line-height: 1.5;
  white-space: nowrap;
}

/* 右區塊 */
.strategy-right {
  border: 0.127rem solid #000;
  padding: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.strategy-divider {
  height: 0;
  border-top: 0.088rem dashed #000;
  margin-bottom: 1.313rem;
  width: 100%;
}

.strategy-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex-grow: 1;
}

.point-item {
  color: #000;
  display: flex;
  align-items: center;
  padding-left: 1.291rem;
  position: relative;
  white-space: nowrap;
}

.point-item::before {
  content: "";
  position: absolute;
  width: 0.569rem;
  height: 0.569rem;
  background-color: #960000;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 1.03125rem;
}

.point-item:last-child {
  grid-column: 1 / 2;
}

.strategy-cta {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

/* ============================================
   廣告投放區塊
   ============================================ */

.section-advertising {
  padding: 3.75rem 0 6.25rem;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
}

.advertising-concept {
  color: #960000;
  text-align: center;
  margin-bottom: 3.125rem;
  font-weight: 400;
}

.advertising-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
}

.step-title {
  color: #000;
  font-weight: 400;
  text-align: left;
  align-self: flex-start;
  padding-left: 0;
}

.step-label {
  font-weight: 700;
  margin-right: 1.9375rem;
  font-style: italic;
}

.step-arrow {
  width: 11.75rem;
  height: auto;
  margin-left: 1.125rem;
  object-fit: contain;
  align-self: center;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-5-border {
  width: 11.75rem;
  height: auto;
  object-fit: contain;
  align-self: center;
}

.social-platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.platform-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.advertising-cta {
  display: flex;
  justify-content: center;
}

/* ============================================
   整合行銷區塊
   ============================================ */

.section-integrated-marketing {
  padding: 120px 0;
  background-color: #fff;
}

.integrated-marketing-grid {
  display: flex;
  gap: 6.25rem;
  align-items: center;
  flex-direction: column;
}

.marketing-left {
}

.marketing-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1440px;
  margin-top: 56px;
  justify-items: start;
}

.marketing-item {
  display: flex;
  text-align: center;
}

.marketing-item-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 230px;
}

.marketing-item h4 {
  color: #000;
  font-weight: 400;
  background: #ffd036;
  border-radius: 2.5rem;
  border: 0.228125rem solid #000;
  min-width: 230px;
  height: 3rem;
  align-content: center;
  margin: 0;
}

.marketing-item-overlay {
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 8.125rem;
  height: 3rem;
  border: 0.228125rem solid #000;
  border-left: none;
  border-radius: 0 2.5rem 2.5rem 0;
  box-sizing: border-box;
}

.marketing-item p {
  color: #000;
  line-height: 1.5;
  margin-left: 4.75rem;
  text-align: left;
  max-width: 28.25rem;
}

/* 右側框 */
.marketing-right {
  position: relative;
  width: 100%;
  max-width: 36.375rem;
  margin: 0 auto;
}

.marketing-animal {
  width: 9.375rem;
  height: auto;
  margin-bottom: 1.875rem;
  object-fit: contain;
}

.marketing-box-top {
  display: flex;
  flex-direction: column;
  padding: 3.875rem 0;
  margin-bottom: 12px;
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}

.index-dec-img {
  position: absolute;
  left: 0;
  bottom: 10px;
}

.marketing-box-top-animal {
  background: #fffcd7;
  border: 3px solid #000;
}

.box-content {
  color: #000;
  line-height: 1.6;
  flex: 1;
  text-align: center;
  align-content: center;
  max-width: 18.5rem;
}

.box-decoration {
  position: absolute;
  width: auto;
  height: 20.125rem;
  right: -8.0625rem;
  top: -2.75rem;
  z-index: 10;
  object-fit: cover;
  flex-shrink: 0;
}

.marketing-box-bottom {
  border: 0.228125rem solid #000;
  border-top: none;
  padding-bottom: 3.3125rem;
  margin-top: -2.5rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  position: relative;
}

.btn-marketing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border: 0.228125rem solid #000;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: -0.228125rem;
  left: 50%;
  transform: translateX(-50%);
}

.btn-marketing-cta img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

/* ============================================
   聯絡瓦吉區塊
   ============================================ */

.pc-br {
  display: block !important;
}

.mo-br {
  display: none !important;
}

/* ============================================
   RWD - 新區塊響應式設計
   ============================================ */

@media (max-width: 1024px) {
  .section-core-strategy {
    padding: 6.25rem 0 5rem;
  }

  .core-strategy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
  }

  .strategy-left h3,
  .strategy-right h3 {
  }

  .strategy-items {
    grid-template-columns: 1fr;
  }

  .strategy-text {
    margin-left: 0;
    margin-top: 0.625rem;
  }

  .strategy-right {
    padding: 1.875rem 1.25rem;
  }

  .strategy-points {
    grid-template-columns: 1fr;
  }

  .marketing-items {
    grid-template-columns: 1fr;
  }

  .marketing-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .integrated-marketing-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .marketing-left {
    width: 100%;
  }

  .marketing-items {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pc-br {
    display: none !important;
  }

  .mo-br {
    display: block !important;
  }

  /* 首頁手機版顯示聯絡瓦吉區塊 */
  .section-contact-wagi {
    display: block !important;
    padding: 2.5rem 0 !important;
    background-size: 90%;
    background-position: 4rem 1rem;
  }

  .section-core-strategy,
  .section-advertising,
  .section-integrated-marketing {
    padding: 3.125rem 0;
  }

  .strategy-items {
    grid-template-columns: repeat(2, 1fr);
    max-width: 15.5625rem;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .strategy-item {
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
    align-items: center;
  }

  .strategy-item:nth-child(5) {
    grid-column: auto;
  }

  .strategy-left {
    width: 100%;
    padding: 0;
  }

  .strategy-right {
    padding: 0 0.625rem 0;
    justify-items: center;
  }

  .strategy-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
    margin-bottom: 0.625rem;
  }

  .strategy-divider {
    margin-top: 0;
    margin-bottom: 0.9375rem;
  }

  .point-item {
    padding-left: 0;
    gap: 0.3125rem;
  }

  .point-item::before {
    position: relative;
    transform: translateY(0);
    top: 0;
    width: 0.25rem;
    height: 0.25rem;
    margin-right: 0;
  }

  .marketing-item-wrapper {
    max-width: 120px;
  }

  .point-item:last-child {
    grid-column: auto;
  }

  .step-title {
  }

  .step-label {
    margin-right: 0.625rem;
  }

  .step-arrow,
  .step-5-border {
    width: 4.5rem;
    height: auto;
  }

  .social-platforms {
    gap: 0.9375rem;
    padding: 1.875rem 0;
    margin-top: 0;
    margin-bottom: 0;
    flex-wrap: nowrap;
  }

  .platform-icon {
    width: 2.875rem !important;
    height: 2.875rem !important;
  }

  .marketing-items {
    grid-template-columns: 1fr;
    max-width: 14.25rem;
    width: 100%;
    gap: 0;
    margin-top: 1rem;
  }

  .marketing-item {
    flex-direction: column;
    width: 100%;
  }

  .marketing-item-overlay {
    left: 1rem;
    border-width: 0.0625rem;
    width: 100%;
    height: 25px;
  }

  .marketing-item p {
    margin: 0.625rem 0 1.125rem 0.625rem;
    max-width: 100%;
  }

  .marketing-right {
    width: 100%;
    max-width: 100% !important;
  }

  .marketing-box-top {
    position: relative;
    padding: 15px 55px 40px 25px;
    max-width: 270px;
    margin-bottom: 0;
    width: 100%;
    min-height: auto;
    background-size: 100% 100%;
    justify-content: flex-start;
    border: 1px solid #000;
  }

  .index-dec-img {
    max-width: 50px;
  }

  .marketing-box-bottom {
    position: relative;
    padding: 0 !important;
    padding-bottom: 3px !important;
    max-width: 270px !important;
    width: 100%;
    min-height: auto !important;
    border: 0.0625rem solid #000 !important;
    border-top: none !important;
    margin-top: -0.5rem !important;
  }

  .box-content {
    max-width: 12.25rem !important;
  }

  .box-decoration {
    position: absolute !important;
    width: 6.75rem !important;
    height: auto !important;
    right: -40px !important;
    top: 30px !important;
  }

  .btn-marketing-cta {
    padding: 0.5rem 1.25rem !important;
  }

  .section-dual-items {
    padding-top: 50px;
  }

  .dual-item {
    padding: 1.25rem 1rem 1.6875rem 1.0625rem;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .dual-items-grid {
    flex-direction: row;
    gap: 0.25rem;
  }

  .dual-item::before {
    width: 8.125rem !important;
    height: 2.0625rem !important;
    left: 0 !important;
    position: absolute;
  }

  .dual-item::after {
    width: 7.9375rem !important;
    height: 2.1875rem !important;
    right: 0 !important;
    bottom: -5px;
    position: absolute;
  }

  .dual-item h3 {
    text-align: center;
    margin-bottom: 0.9375rem;
  }

  .dual-item-description {
    margin-bottom: 0.625rem;
    width: 145px;
    line-height: 1.25rem;
  }

  .dual-item-cta {
    margin-bottom: 0;
  }

  /* Features section */
  .section-features .features-cta {
    margin-top: 0;
  }

  .section-core-strategy .section-description {
    padding: 16px 0;
    margin: 0;
  }

  .section-features .section-description {
  }

  .core-strategy-grid {
    justify-items: center;
    gap: 1.25rem;
    margin-top: 16px;
  }

  /* 超小手機相关样式 */
  .section-features {
    padding: 1.5rem 0 3.5rem !important;
    display: flex;
    justify-content: center;
  }

  .features-title {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .features-grid {
    gap: 1rem 3rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    width: 95px;
    height: 95px;
    border: 1px solid #000;
  }

  /* 流程卡片上方的數字圖片 */
  .feature-card::before {
    content: "";
    position: absolute;
    top: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
  }

  .feature-card p {
    min-width: 3.75rem;
  }

  .section-seo {
    padding: 1.5rem 0 0;
    margin-bottom: 30px;
  }

  .seo-subtitle {
    margin-bottom: 1.5rem;
    margin-top: 16px;
  }

  .section-description {
    margin: 1.25rem 0 1.875rem;
  }

  .section-seo .section-description {
    margin: 1rem 0;
  }

  .section-title,
  .section-header {
    margin-bottom: 0;
  }

  .seo-services-grid {
    gap: 2.125rem;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1.5rem;
    max-width: 225px;
  }

  .seo-services-grid > :nth-child(1) {
    order: 1;
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(2) {
    order: 2;
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(3) {
    order: 5;
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(4) {
    order: 3;
    margin-left: 0;
  }

  .seo-services-grid > :nth-child(5) {
    order: 4;
    margin-left: 0;
  }

  .seo-image {
    margin-bottom: 1rem;
    order: 5;
  }

  .seo-image img {
    width: 14rem !important;
  }

  /* SEO CTA 按鈕容器 */
  .seo-cta {
    margin-top: 0;
    margin-bottom: -1rem;
  }

  .service-card {
    width: 100%;

    padding: 2rem 0 0.625rem 1.125rem;
    border-width: 0.125rem;
    border: 1px solid #000;
  }

  .service-title {
    padding: 5px 19px;
    top: -12px;
    border-width: 0.125rem;
    border: 1px solid #000;
  }

  .service-description {
  }

  .section-core-strategy {
    padding: 1.875rem 0;
  }

  .strategy-left h3,
  .strategy-right h3 {
    margin-bottom: 0.8125rem;
    margin-top: 1.125rem;
  }

  .strategy-number {
    width: 1.25rem;
    height: 1.25rem;
  }

  .strategy-text {
    margin-top: 0;
  }

  .strategy-cta {
    margin-top: 1rem;
    margin-bottom: 3.75rem;
  }

  .section-advertising {
    padding: 1.875rem 0;
  }

  .advertising-concept {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
  }

  .step-item {
    gap: 0.5rem;
  }

  .step-title {
  }

  .step-label {
    margin-right: 0.5rem;
  }

  .platform-icon {
    width: 3.125rem;
    height: 3.125rem;
  }

  .section-integrated-marketing {
    padding: 1.875rem 0;
  }

  .marketing-item h4 {
    border-width: 0.0625rem;
    width: 100%;
    height: 25px;
    min-width: 4.375rem;
    padding-left: 0;
  }

  .marketing-item p {
  }
}
