/* =========================================================
   0) Reset / Utils
========================================================= */
.landing-seo *, 
.landing-seo *::before, 
.landing-seo *::after{ box-sizing:border-box; }

.landing-seo .nowrap{ white-space: nowrap; }
.landing-seo .container{
  width:100%;
  padding-right: .75rem;
  padding-left: .75rem;
  margin-right:auto; margin-left:auto;
}
/* ===================================== */
.landing-seo h1{ 
  font-weight: 700; 
  line-height: 1.3; 
  margin: 0 0 15px; 
}

.landing-seo h2{
  font-size: 28px;
  font-weight: 700;
  color: #443a3ae6;
  margin: 10px 0 5px;
}

.landing-seo h3{
  font-size: 26px;
  font-weight: 700;
  color: #443a3ae6;
  line-height: 1.5;
}

.landing-seo p{ 
  font-size: 16px; 
  line-height: 1.5; 
  color: #666; 
}
/* ===================================== */
.landing-seo{
  --strong-hero: 500;
  --strong-default: 600;
  --strong-emphasis: 700;
}

.landing-seo strong,
.landing-seo .secondary-intent__note strong,
.landing-seo .u-strong{
  font-weight: var(--strong-default);
}
.landing-seo .hero .hero__description strong{
  font-weight: var(--strong-hero);
}

.landing-seo .coupon__code strong{
  font-weight: var(--strong-emphasis);
}

.landing-seo .faq-section strong,
.landing-seo .faq-section .u-strong{
  color: #333;
}
/* ===================================== */
.landing-seo{
  --header-offset-desktop: 96px;
  --header-offset-mobile: 72px;
}

.landing-seo #service-areas{
  scroll-margin-top: var(--header-offset-desktop);
}

@media (max-width: 768px){
  .landing-seo #service-areas{
    scroll-margin-top: var(--header-offset-mobile);
  }
}
/* ===================================== */
.landing-seo .icon-emoji{
  display: inline-block;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
}
/* 只在支持 hover 的设备上启用动效 */
@media (hover:hover){
  .landing-seo .icon-emoji{
    transition: transform .2s ease, filter .2s ease;
  }
  .landing-seo .icon-emoji:hover,
  .landing-seo .icon-emoji:focus-visible,
  .landing-seo .coupon__icon:hover,
  .landing-seo .coupon__icon:focus-visible{
    transform: scale(1.15);
    filter: brightness(1.15);
  }
}
/* 无动画偏好 */
@media (prefers-reduced-motion: reduce){
  .landing-seo .icon-emoji,
  .landing-seo .coupon__icon{
    transition: none;
    transform: none;
    filter: none;
  }
}
/* ================= 移动端 hover 统一弱化（必须保留） ================= */
@media (max-width: 768px){
  .landing-seo .reviews-grid__item:hover,
  .landing-seo .c-feature:hover,
  .landing-seo .gallery__item:hover img,
  .landing-seo .carousel-gallery:hover img,
  .landing-seo .btn--coupon:hover,
  .landing-seo .btn--invert:hover,
  .landing-seo .btn--secondary:hover,
  .landing-seo .link-action:hover{
    transform:none;
    box-shadow:none;
    animation:none;
  }
}
/* ============================================ hero ================================================= */
/* ========== Desktop / Mobile switch ========== */
.landing-seo .show-desktop{
  display: block;
  visibility: visible;
}
.landing-seo .show-mobile{
  display: none;
  visibility: hidden;
}

@media (max-width: 767.98px){
  .landing-seo .show-desktop{
    display: none;
    visibility: hidden;
  }
  .landing-seo .show-mobile{
    display: block;
    visibility: visible;
  }
}

.landing-seo{
  overflow-x: hidden;
}

/* ========== HERO WRAPPER ========== */
.landing-seo .hero{
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: clamp(520px, 62vh, 560px);
  overflow: hidden;
}

@media (max-width: 767.98px){
  .landing-seo .hero{
    min-height: clamp(420px, 70vh, 540px);
  }
}

/* ========== HERO OVERLAY (FINAL) ========== */
.landing-seo .hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.22) 35%,
    rgba(0,0,0,.12) 65%,
    rgba(0,0,0,.04) 100%
  );
  z-index:1;
  pointer-events:none;
}

/* ========== VIDEO ========== */
.landing-seo .hero .hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

/* ========== OVERLAY CONTENT ========== */
.landing-seo .hero .hero__overlay{
  position: relative;
  z-index: 2;
  max-width: var(--overlay-maxw, 980px);
  margin-inline: auto;
  padding:
    calc(var(--overlay-pad-top, 50px) + env(safe-area-inset-top, 0px))
    var(--overlay-pad-x, 16px)
    var(--overlay-pad-bottom, 40px);
  text-align: center;
  color: #fff;
  background: none;
}

/* ========== TEXT SHADOW (FINAL · LIGHT) ========== */
.landing-seo .hero__logo,
.landing-seo .hero__title,
.landing-seo .hero__price,
.landing-seo .hero__description{
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* ========== LOGO ========== */
.landing-seo .hero__logo{
  font-size: clamp(40px, 6vw + 4px, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 25px;
  color: #fff;
}

.landing-seo .hero__logo-highlight{
  color: #00ff26;
  font-size: clamp(40px, 6vw + 4px, 54px);
}

/* ========== TITLE ========== */
.landing-seo .hero .hero__title{
  font-size: clamp(26px, 3.2vw + 6px, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 24px;
  color: #fff;
}

/* ========== PRICE ========== */
.landing-seo .hero__price{
  font-size: clamp(16px, 2.2vw, 17px);
  line-height: 1.6;
  font-weight: 500;
  margin: 12px 0 24px;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ========== DESCRIPTION ========== */
.landing-seo .hero .hero__description{
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 0 16px;
  color: #fff;
  text-align: center;
}
.landing-seo .hero .hero__min {
  font-weight: 400;
}
/* ========== CTA ========== */
.landing-seo .hero .hero__cta{
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    isolation: isolate;
}

.landing-seo .hero .hw-btn{
  pointer-events: auto;
}

.landing-seo .btn--invert{
  --btn-bg: #ffffff;
  --btn-bg-hover: #d0cfcf;
  --btn-text: #333;
  --btn-text-hover: #3e6353;
  --btn-border: rgba(255,255,255,.65);
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
  padding: 18px 44px;
  margin: 40px 0 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  filter: none;
  backdrop-filter: none;
  -webkit-text-fill-color: initial;
}

/* CTA 内不吃 text-shadow */
.landing-seo .hero .hero__cta,
.landing-seo .hero .hero__cta .hw-btn,
.landing-seo .hero .hero__cta .hw-btn *{
  text-shadow: none !important;
}
/* ============================================ intent ===============================================*/
.landing-seo #intent{
  padding: 6px 12px 2px;
}

.landing-seo .intent__container{ 
  max-width: 960px; 
  margin: 0 auto;
  padding: 0 4px; 
  text-align: center; 
}

.landing-seo .intent__title{
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  margin: 12px auto;
  padding: 0 6px; 
  word-break: normal;
  overflow-wrap: anywhere;
}

.landing-seo .intent__subtitle{ 
  display: block; 
  font-size: clamp(18px, 1.7vw, 22px); 
  color: #ff4f00; 
  margin-top: 4px; 
  line-height: 1.2;
  font-weight: 600;
}

.landing-seo .intent__lead{
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.6; 
  color:#4a4a4a;
  margin: 3px 0 0;
  padding: 2px 0;
}
.landing-seo .intent-trust{
    text-align: center;
    font-size: clamp(15px, 1.7vw, 17px);
    font-weight: 600;
    color: #444;
    margin: 6px 0 12px;
    padding: 0 .75rem;
    line-height: 1.6;
}

.landing-seo .intent__actions{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.landing-seo .intent-pricing__container{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 .75rem;
  text-align: center;
}

.landing-seo .intent-pricing__title{
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 21px);
  color: #ff4f00;
  line-height: 1.25;
  text-align: center;
  margin: 8px 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.landing-seo .intent-pricing__list{
  list-style: none; 
  padding: 0; 
  margin: 0 auto;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.6; 
  color: #4a4a4a;
}

.landing-seo .intent-pricing__item{ 
  padding: 2px 0; 
  color: #4a4a4a;
}

.landing-seo .intent-pricing__chip{
  display: inline-block; 
  padding: 0 .35em; 
  border-radius: 8px; 
  font-weight: 600;
  color: #ff4f00; 
  background: rgba(255,79,0,.06);
}
.landing-seo .intent-pricing__note {
    font-size: clamp(14px, 1.7vw, 15px);
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
}
@media (max-width: 360px){
  .landing-seo .intent__actions .hw-btn{
    white-space: normal;
  }
}
/* ============================================ How It Works ===============================================*/
.landing-seo .how-it-works{
  padding: clamp(16px, 5vw, 24px) 0;
}

.landing-seo .how-it-works h2{
  margin: 0 0 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.12;
  color: #333;
}

.landing-seo .how-it-works__grid{
  width: min(1180px, 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

.landing-seo .how-it-works__card{
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 16px;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.landing-seo .how-it-works__step{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  color: #ff6a00;
  border: 2px solid #ff6a00;
  background: #fff;
  margin: 0 auto 6px;
}

.landing-seo .how-it-works__card h3{
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

.landing-seo .how-it-works__card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17, 24, 39, 0.78);
}

.landing-seo .how-it-works__card a{
  color: rgba(17, 24, 39, 0.78);
  text-decoration: none;
  font-weight: 400;
}

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

@media (max-width: 980px){
  .landing-seo .how-it-works__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .landing-seo .how-it-works{
    padding: 12px 0;
  }

  .landing-seo .how-it-works h2{
    margin-bottom: 16px;
    padding: 0 8px;
  }

  .landing-seo .how-it-works__grid{
    width: min(560px, 92vw);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-seo .how-it-works__card{
    padding: 12px 12px 18px;
    border-radius: 16px;
  }

  .landing-seo .how-it-works__step{
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-seo .how-it-works *{
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
/* ============================================ Reviews ============================================== */
.landing-seo .reviews__container{
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 12px;
}

.landing-seo .reviews__title{
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 6px 10px;
  margin: 2px 0 8px;
}

.landing-seo .reviews-grid__intro{
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 700;
  text-align: center;
  color: #ff6f33;
  line-height: 1.5;
  margin: 0 auto 18px;
  padding: 6px 10px;
  border-radius: 10px;
}

.landing-seo .reviews-grid__list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 16px;
  
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px){
  .landing-seo .reviews-grid__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px){
  .landing-seo .reviews-grid__list{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.landing-seo .reviews-grid__item{
  margin: 0;
  padding: 0;
  min-width: 0;
}

.landing-seo .reviews-grid__card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
  padding: 18px 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

@media (hover:hover){
  .landing-seo .reviews-grid__card:hover{
    background: #f3f4f6;
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  }
}

.landing-seo .reviews-grid__header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  min-width: 0;
}

.landing-seo .reviews-grid__avatar{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.landing-seo .reviews-grid__author{
  font-weight: 600;
  font-size: 0.98rem;
  color: #111827;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-seo .reviews-grid__stars{
  color: #ffb400;
  font-size: 14px;
  letter-spacing: .3px;
  line-height: 1.1;
  margin-top: 2px;
}

.landing-seo .reviews-grid__text{
  margin: 6px 0 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}

@media (max-width: 680px){
  .landing-seo .reviews-grid__text{
    -webkit-line-clamp: 5;
  }
}

@media (max-width: 768px){
  .landing-seo .reviews-grid__card{
    padding: 14px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-seo .reviews-grid__card{
    transition: none;
  }
}
/* ============================================== feature ================================================ */
.landing-seo .section{ 
  padding: 0 0 10px; 
  margin: 20px auto 0;
}

.landing-seo .section__container{ 
  max-width: 1080px; 
  margin: 0 auto; 
  padding: 0 16px; 
}
.landing-seo .text-highlight{
  color: #ff4f00;
  font-weight: 800;
}

.landing-seo .section__title{ 
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 8px 16px; 
  margin: 0 0 15px;
}

.landing-seo .section__subtitle{
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0;
  padding: 6px 10px;
  color: #ff4f00;
}

.landing-seo .c-features__subtitle{ 
  font-size: clamp(15px, 2.2vw, 17px); 
}

.landing-seo .c-features__list{
  list-style: none; 
  margin: 0; 
  padding: 0;
  display: grid; 
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 992px){
  .landing-seo .c-features__list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .landing-seo .c-features__list{
    grid-template-columns: 1fr;
  }
}

.landing-seo .c-feature{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.landing-seo .c-feature:hover,
.landing-seo .c-feature:focus-within{
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.landing-seo .c-feature__icon{ 
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 24px; 
  line-height: 1; 
  border-radius: 12px;
  background: rgba(255, 79, 0, 0.08);
  transform: translateZ(0);
  will-change: transform;
  transition:
    transform .25s cubic-bezier(.25, .8, .25, 1),
    background-color .25s ease;
}

.landing-seo .c-feature:hover .c-feature__icon,
.landing-seo .c-feature:focus-within .c-feature__icon{
  transform: translateY(-6px) rotate(-6deg) scale(1.12);
  background: rgba(255, 79, 0, 0.14);
}

.landing-seo .c-feature__title{ 
  margin: 0 0 4px; 
  font-weight: 600; 
  font-size: clamp(16px, 2vw, 18px); 
  line-height: 1.25;
  text-align: left;
  color: #222;
}

.landing-seo .c-feature__desc{ 
  margin: 0; 
  color: #4a4a4a; 
  line-height: 1.45; 
  text-align: left; 
  font-size: clamp(14px, 1.7vw, 16px);
}

.landing-seo .c-features__cta{ 
  text-align: center; 
  margin-top: 18px; 
}

@media (prefers-reduced-motion: reduce){
  .landing-seo .c-feature,
  .landing-seo .c-feature__icon{
    transition: none;
  }
  .landing-seo .c-feature:hover .c-feature__icon,
  .landing-seo .c-feature:focus-within .c-feature__icon{
    transform: none;
  }
}
/* ============================================== Secondary Intent ======================================= */
.landing-seo .secondary-intent{
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 20px 12px;
  box-sizing: border-box;
}

.landing-seo .secondary-intent__actions{
  margin: 30px 0;
  align-items: center;
  justify-content: center;
  display: flex;
}

.landing-seo .secondary-intent__title{
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 6px 12px;
  margin: 0 0 12px;
}

.landing-seo .secondary-intent__trust {
    font-weight: 500;
    color: #ff4f00;
    margin: 16px 0 12px;
    font-size: clamp(16px, 1.7vw, 18px);
    text-align: center;
    line-height: 1.3;
}
.landing-seo .secondary-intent__note {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color:#4a4a4a;
  max-width: 820px;
}

.landing-seo .secondary-intent__desc{
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.5;
  color: #4a4a4a;
  margin: 4px auto 8px;
}

.landing-seo .secondary-intent__price{
    font-weight: 600;
    color: #333;
    margin: 8px 0 12px;
    font-size: clamp(16px, 1.7vw, 18px);
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.3;
}

.landing-seo .secondary-intent .nowrap{
  white-space: nowrap;
}

.landing-seo .secondary-intent__actions .hw-btn{
  max-width: 100%;
}

@media (max-width: 360px){
  .landing-seo .secondary-intent .nowrap{
    white-space: normal;
  }
  .landing-seo .secondary-intent__price{
    flex-wrap: wrap;
    row-gap: 6px;
  }
}
/* ============================================== service-areas ========================================== */
.landing-seo .service-areas__container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 12px;
}

.landing-seo .service-areas__title{
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  margin: 2px 0 12px;
  padding: 2px 4px;
}

.landing-seo .service-areas__intro,
.landing-seo .service-areas__note,
.landing-seo .service-areas__group-note{
  text-align: center;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 2px;
}

.landing-seo .service-areas__group-note{
  margin: 6px 0 20px;
}

/* ============================
   Group layout + divider
============================ */

.landing-seo .service-areas__group{
  max-width: 720px;
  margin: 10px auto;
  padding: 14px 0 6px;
}

.landing-seo .service-areas__subtitle{
  font-size: 18px;
  font-weight: 750;
  margin: 0 0 10px;
  color: #222;
}

.landing-seo .service-areas__region-link{
  color: inherit;
  text-decoration: none;
}

.landing-seo .service-areas__region-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-seo .service-areas__grid{
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.landing-seo .service-areas__grid--single{
  grid-template-columns: 1fr;
}

.landing-seo .service-areas__grid li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-seo .service-areas__grid li::before{ content: none; }
.landing-seo .service-areas__grid li::marker{ content: none; }

.landing-seo .service-areas__grid a,
.landing-seo .service-areas__grid span{
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  color: inherit;
  text-decoration: none;
  transition:
    transform .15s ease,
    background .15s ease,
    border-color .15s ease;
}

.landing-seo .service-areas__grid a:visited{
  color: inherit;
}

.landing-seo .service-areas__grid a:hover,
.landing-seo .service-areas__grid span:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.14);
}

.landing-seo .service-areas__trust{
  color: #ff4f00;
  font-weight: 500;
  text-align: center;
  font-size: clamp(15px, 2vw, 17px);
  margin: 14px auto 6px;
  line-height: 1.5;
  align-items: center;
}
.landing-seo .service-areas__foot {
    margin: 6px auto 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    text-align: center;
}
.landing-seo .service-areas__region-note{
  margin: 10px 0 0;
  font-size: 13.5px;
  color: rgba(0,0,0,.62);
}

.landing-seo .service-areas__trust,
.landing-seo .service-areas__actions{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.landing-seo .service-areas__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 48px;
}
.landing-seo .service-areas__grid li.service-areas__city-secondary {
  padding-left: 14px;
}
.landing-seo .service-areas__coverage {
  margin: 10px 0 14px;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
}
.landing-seo .service-areas__snippet {
  margin-top: 6px;
  font-size: clamp(12.5px, 1.8vw, 13.5px);
  line-height: 1.5;
  color: #8b93a1;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .landing-seo .service-areas__snippet {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .landing-seo .service-areas__grid li.service-areas__city-secondary {
    padding-left: 14px;
  }
}

@media (max-width: 600px){
  .landing-seo .service-areas__grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .landing-seo .service-areas__actions{
    flex-direction: column;
  }
  .landing-seo .service-areas__actions .hw-btn{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================== FAQ ==================================================== */
/* ---------- Section ---------- */
.landing-seo .faq-section{
  max-width: 1200px;
  margin: 16px auto;
  padding: 0 16px;
}

.landing-seo .faq-wrap{
  width: 100%;
}

.landing-seo .faq-title{
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 6px 12px;
  margin: 10px 0 20px;
}

/* ---------- Grid ---------- */
.landing-seo .faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

@media (max-width: 768px){
  .landing-seo .faq-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- FAQ Card ---------- */
.landing-seo .faq-section .faq-item{
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

@media (hover:hover){
  .landing-seo .faq-section .faq-item:hover{
    transform: translateY(-1px);
    border-color: #dfdfdf;
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
  }
}

/* ---------- Summary ---------- */
.landing-seo .faq-section .faq-item > summary::-webkit-details-marker{
  display: none;
}

.landing-seo .faq-section .faq-item > summary{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 56px;
  cursor: pointer;
  font-size: clamp(15px, 2.6vw, 17px);
  font-weight: 600;
  line-height: 1.25;
  color: #333;
  background: #fff;
  transition: background .18s ease;
  width: 100%;
  user-select: none;
}

@media (hover:hover){
  .landing-seo .faq-section .faq-item > summary:hover{
    background: #fff7f1;
  }
}

.landing-seo .faq-section .faq-item > summary:focus-visible{
  outline: 2px solid #bdbdbd;
  outline-offset: 1px;
}

/* optional hook (not required): summary.faq-question {} */
.landing-seo .faq-section .faq-question{
  /* hook for future overrides if you want */
}

/* Plus icon */
.landing-seo .faq-section .faq-item > summary::after{
  content: "+";
  margin-left: auto;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  color: #ff6a00;
  transform: rotate(0deg);
  transition: transform .20s ease;
  flex: 0 0 auto;
  pointer-events: none;
}

.landing-seo .faq-section .faq-item[open] > summary::after{
  transform: rotate(45deg);
}

.landing-seo .faq-section .faq-item[open] > summary{
  background: #faf2eb;
}

.landing-seo .faq-section .faq-item[open]{
  border-color: #eddbcb;
  box-shadow: 0 10px 24px rgba(15,23,42,.12);
}

/* ---------- Body ---------- */
.landing-seo .faq-section .faq-body{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 18px;
  transition:
    max-height .32s ease,
    opacity .22s ease,
    transform .22s ease,
    padding .22s ease;
}

.landing-seo .faq-section .faq-item[open] .faq-body{
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  padding: 12px 18px 16px;
  background: #fbfbfb;
  position: relative;
}

/* Divider line */
.landing-seo .faq-section .faq-item[open] .faq-body::before{
  content: "";
  display: block;
  height: 1px;
  margin: 0 -18px 12px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,106,0,.18),
    transparent
  );
}

/* ---------- Text ---------- */
.landing-seo .faq-section .faq-text{
  font-size: clamp(14px, 2.1vw, 16px);
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 12px;
}

/* links (base) */
.landing-seo .faq-section .faq-text a,
.landing-seo .faq-section .faq-body a{
  color: #4169e1;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 1px;
}

/* link-action / tel-link (light CTA chips) */
.landing-seo .faq-section a.link-action,
.landing-seo .faq-section a.tel-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(65,105,225,.10);
  text-decoration: none;
}

.landing-seo .faq-section a.tel-link{
  background: rgba(255,106,0,.12);
  color: #8a2c00;
}

@media (hover:hover){
  .landing-seo .faq-section a.link-action:hover,
  .landing-seo .faq-section a.tel-link:hover{
    filter: brightness(0.96);
  }
}

.landing-seo .faq-section a.link-action:focus-visible,
.landing-seo .faq-section a.tel-link:focus-visible{
  outline: 2px solid rgba(0,0,0,.25);
  outline-offset: 2px;
}

/* ---------- Key / Value rows ---------- */
.landing-seo .faq-section .faq-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  margin: 8px 0;
  line-height: 1.6;
}

.landing-seo .faq-section .faq-key{
  font-weight: 700;
  color: #222;
}

.landing-seo .faq-section .faq-val{
  color: #444;
}

@media (max-width: 600px){
  .landing-seo .faq-section .faq-row{
    grid-template-columns: 1fr;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .landing-seo .faq-section .faq-item,
  .landing-seo .faq-section .faq-item > summary,
  .landing-seo .faq-section .faq-item > summary::after,
  .landing-seo .faq-section .faq-body{
    transition: none;
    transform: none;
  }

  .landing-seo .faq-section .faq-body{
    max-height: none;
    opacity: 1;
    padding: 12px 18px 16px;
  }
}
/* ============================================= cta-bottom ============================================== */
.landing-seo .cta-bottom__container{
  text-align: center;
  padding: 6px 10px;
  max-width: 900px;
  margin: 0 auto 2px;
  width: 100%;
  box-sizing: border-box;
}

.landing-seo .cta-bottom__title{
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-align: center;
  padding: 6px 12px;
  margin: 0 0 6px; 
}

.landing-seo .cta-bottom__desc{
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  color: #444;
  padding: 2px 10px;
  font-weight: 500;
  margin-bottom: 2px;
}

.landing-seo .cta-bottom__note{
  color: #ff4f00;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  margin: 0.5rem auto;
  line-height: 1.6;
}

.landing-seo .cta-bottom__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 50px;
}

.landing-seo .cta-bottom__actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ================= link-action（保留稳定版） ================= */
.landing-seo .link-action{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #ff6a00;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-seo .link-action:hover{
  color: #ff8a33;
}

.landing-seo .link-action:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,106,0,.25);
  border-radius: 4px;
}

.landing-seo .link-action .icon{
  width:1.05em;
  height:1.05em;
  line-height:1;
  display:inline-block;
}

/* ================= Reduced Motion（保留） ================= */
@media (prefers-reduced-motion: reduce){
  .landing-seo .btn,
  .landing-seo .link-action{
    transition:none;
  }
  .landing-seo .btn[aria-busy="true"]::after{
    animation:none;
  }
}