/* ==========================================================
   page.css — styles for all inner pages
   ========================================================== */

/* ---- Page Hero ------------------------------------------ */
.page-hero {
  padding: 140px 0 80px;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ph-c1, #1a0808) 0%, var(--ph-c2, #B07D6E) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,0,0,.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero color themes */
.ph--rose    { --ph-c1: #2a0808; --ph-c2: #B07D6E; }
.ph--blue    { --ph-c1: #081828; --ph-c2: #4A7FA5; }
.ph--green   { --ph-c1: #081808; --ph-c2: #4A7A5A; }
.ph--gold    { --ph-c1: #1a1000; --ph-c2: #B08040; }
.ph--purple  { --ph-c1: #140820; --ph-c2: #7060A8; }
.ph--navy    { --ph-c1: #08081a; --ph-c2: #4A4A8A; }
.ph--teal    { --ph-c1: #041818; --ph-c2: #2A7A7A; }

.page-hero .container { position: relative; z-index: 1; }
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--cp);
  text-align: left;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb > span:last-child { color: rgba(255,255,255,.8); }

.page-hero .section__tag { display: inline-block; margin-bottom: 16px; color: var(--gold); background: rgba(201,164,92,.18); border-color: rgba(201,164,92,.3); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 32px;
}
.page-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

/* ---- Page Sections -------------------------------------- */
.page-section { padding: 80px 0; }
#how-it-works { padding-top: 32px; }

/* ---- Intro grid ----------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-grid.intro-grid--rev { direction: rtl; }
.intro-grid.intro-grid--rev > * { direction: ltr; }

.intro-grid .section__tag { display: inline-block; margin-bottom: 14px; }
.intro-grid .section__title { margin-bottom: 18px; }
.intro-grid > div > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

.intro-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intro-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #fdf6f3 0%, #f7ece7 100%);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}
.intro-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .7;
}

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Intro image block */
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15) 0%, transparent 55%);
}
/* Colour themes */
.intro-img--rose    { background: linear-gradient(135deg, #D4A5A5, #8B6058); }
.intro-img--blue    { background: linear-gradient(135deg, #A8C5DA, #4A7FA5); }
.intro-img--green   { background: linear-gradient(135deg, #B8D8B8, #4A7A5A); }
.intro-img--gold    { background: linear-gradient(135deg, #E8D5A3, #B08040); }
.intro-img--purple  { background: linear-gradient(135deg, #C8B8E0, #7060A8); }
.intro-img--navy    { background: linear-gradient(135deg, #B0B0D8, #4A4A8A); }
.intro-img--teal    { background: linear-gradient(135deg, #A0D0D0, #2A7A7A); }

/* ---- Benefits grid -------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: var(--ease-s);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.benefit-card__icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e6df 0%, #e8cfc6 100%);
  margin-left: auto;
  margin-right: auto;
}
.benefit-card__icon svg { display: block; flex-shrink: 0; }
.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--dark);
  margin-bottom: 10px;
}
.benefit-card p { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- Treatment areas tag cloud -------------------------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.area-tag {
  padding: 8px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
}

/* ---- Process steps -------------------------------------- */
.steps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: var(--ease-s);
}
.step:hover { box-shadow: var(--sh-md); background: var(--white); }
.step__num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: rgba(176,125,110,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  transition: color .4s;
}
.step:hover .step__num { color: rgba(176,125,110,.4); }
.step__body h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--dark);
  margin-bottom: 8px;
}
.step__body p { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- Info boxes (used on location / about pages) -------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.info-box {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.info-box__icon { font-size: 28px; margin-bottom: 12px; display: block; }
.info-box h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.info-box p, .info-box li { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.info-box ul { padding-left: 0; display: flex; flex-direction: column; gap: 4px; }

/* Location map placeholder */
.loc-map {
  width: 100%;
  height: 300px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.loc-map--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.loc-map--2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.loc-map--3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.loc-map--4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.loc-map--5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.loc-map .loc-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ---- FAQ accordion -------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark);
  gap: 16px;
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--ease);
  color: var(--primary);
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ---- Page CTA band -------------------------------------- */
.page-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, var(--dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-cta .section__tag { color: var(--gold); background: rgba(201,164,92,.18); margin-bottom: 18px; }
.page-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.page-cta p { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.page-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Blog cards ----------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease-s);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card__body { padding: 24px; }
.blog-card__tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: block; }
.blog-card__body h3 { font-family: var(--font-head); font-size: 18px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card__body p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card__body a  { font-size: 13px; font-weight: 600; color: var(--primary); }

/* ---- Review cards (reviews page) ------------------------ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.review-card__stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.review-card__text { font-size: 14px; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.review-card__meta { display: flex; align-items: center; gap: 12px; }
.review-card__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-weight: 700; font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__meta strong { display: block; font-size: 14px; color: var(--dark); }
.review-card__meta span  { font-size: 12px; color: var(--text-faint); }

/* ---- Tech cards ----------------------------------------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tech-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: var(--ease-s);
  display: flex;
  gap: 20px;
}
.tech-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.tech-card__num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: rgba(176,125,110,.15);
  line-height: 1;
  flex-shrink: 0;
}
.tech-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.tech-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.tech-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(176,125,110,.1);
  color: var(--primary);
}

/* ---- Stat strip (about / story pages) ------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 48px 0;
}
.stat-strip__item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-strip__label { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: 1px; }

/* ---- Timeline (our story) ------------------------------- */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
}
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(176,125,110,.3);
}
.tl-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.tl-item h3 { font-family: var(--font-head); font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.tl-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .intro-grid   { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid.intro-grid--rev { direction: ltr; }
  .intro-img    { aspect-ratio: 16/9; max-height: 340px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list   { grid-template-columns: 1fr; }
  .info-grid    { grid-template-columns: 1fr; }
  .tech-grid    { grid-template-columns: 1fr; }
  .stat-strip   { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-strip__item:nth-child(2n) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero      { padding: calc(110px + var(--sat, 0px)) 0 56px; }
  .page-section   { padding: 52px 0; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .page-cta       { padding: 60px 0; }
  .blog-grid      { grid-template-columns: 1fr; }
  .stat-strip     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .page-hero__btns { flex-direction: column; align-items: flex-start; }
  .page-cta__btns  { flex-direction: column; align-items: center; }
  .stat-strip      { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; }
}

/* ==========================================================
   430 px — iPhone 17 Pro Max / Plus / large Android
   ========================================================== */
@media (max-width: 430px) {
  /* Page hero */
  .page-hero { padding: calc(100px + var(--sat, 0px)) 0 52px; }
  .breadcrumb { flex-wrap: wrap; font-size: 12px; gap: 5px; }
  .page-hero h1 { font-size: 30px; line-height: 1.1; }
  .page-hero p  { font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
  .page-hero__btns { flex-direction: column; width: 100%; gap: 10px; }
  .page-hero__btns .btn { width: 100%; justify-content: center; }

  /* Section spacing */
  .page-section { padding: 44px 0; }
  .section__title { font-size: 22px; }
  .section__sub { font-size: 14px; }
  .section__head { margin-bottom: 32px; }

  /* Intro grid */
  .intro-grid { gap: 28px; }
  .intro-img  { aspect-ratio: 16/9; max-height: 220px; border-radius: var(--r-md); }
  .intro-grid > div > p { font-size: 14px; }
  .check-list li { font-size: 13px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 24px 18px; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .benefit-card__icon { font-size: 28px; margin-bottom: 0; flex-shrink: 0; }
  .benefit-card h3 { font-size: 15px; margin-bottom: 6px; }
  .benefit-card p  { font-size: 13px; }

  /* Steps */
  .steps-list { gap: 14px; }
  .step { padding: 20px 16px; gap: 14px; }
  .step__num { font-size: 32px; width: 40px; }
  .step__body h3 { font-size: 15px; }
  .step__body p  { font-size: 13px; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a p { padding: 0 18px 16px; font-size: 13px; }
  .faq-icon { width: 26px; height: 26px; font-size: 16px; }

  /* Areas tag cloud */
  .areas-grid { gap: 8px; }
  .area-tag { padding: 7px 14px; font-size: 12px; }

  /* Info grid (location pages) */
  .info-grid { gap: 14px; }
  .info-box { padding: 20px 16px; }
  .info-box h4 { font-size: 15px; }
  .info-box p, .info-box li { font-size: 13px; }
  .loc-map { height: 220px; font-size: 36px; }

  /* Page CTA */
  .page-cta { padding: 52px 0; }
  .page-cta h2 { font-size: 24px; }
  .page-cta p  { font-size: 14px; margin-bottom: 24px; }
  .page-cta__btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .page-cta__btns .btn { width: 100%; justify-content: center; }

  /* Stat strip */
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip__item { padding: 24px 16px; }
  .stat-strip__num { font-size: 32px; }
  .stat-strip__label { font-size: 11px; }

  /* Timeline */
  .timeline { padding-left: 28px; }
  .tl-dot { left: -24px; }
  .tl-item h3 { font-size: 16px; }
  .tl-item p  { font-size: 13px; }

  /* Tech cards */
  .tech-card { flex-direction: column; gap: 10px; padding: 24px 18px; }
  .tech-card__num { font-size: 36px; }
  .tech-card h3 { font-size: 17px; }

  /* Blog cards */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__img { height: 160px; font-size: 36px; }
  .blog-card__body { padding: 18px; }
  .blog-card__body h3 { font-size: 16px; }

  /* Review cards (reviews page) */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 18px; }

  /* iOS input zoom fix for sub-page forms */
  input, select, textarea { font-size: 16px !important; }
}

/* ==========================================================
   390 px — iPhone 17 / 16 standard
   ========================================================== */
@media (max-width: 390px) {
  .page-hero h1 { font-size: 27px; }
  .page-hero p  { font-size: 13px; }
  .section__title { font-size: 20px; }
  .benefit-card h3, .step__body h3 { font-size: 14px; }
  .faq-q { font-size: 13px; padding: 14px 16px; }
  .page-cta h2 { font-size: 22px; }
  .stat-strip__num { font-size: 28px; }
}

/* ==========================================================
   360 px — small Android / iPhone SE
   ========================================================== */
@media (max-width: 360px) {
  .page-hero { padding: calc(88px + var(--sat, 0px)) 0 44px; }
  .page-hero h1 { font-size: 24px; }
  .section__title { font-size: 19px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; }
}

/* ==========================================================
   Chinese language — bump small text sizes for readability
   ========================================================== */
:lang(zh-Hans) .page-hero p,
:lang(zh-Hans) .page-hero__inner > p,
:lang(zh-Hans) .intro-text p,
:lang(zh-Hans) .intro-grid > div > p,
:lang(zh-Hans) .intro-list li,
:lang(zh-Hans) .section-header p { font-size: 17px; line-height: 1.85; }

:lang(zh-Hans) .benefit-card p,
:lang(zh-Hans) .step__body p,
:lang(zh-Hans) .faq-q,
:lang(zh-Hans) .faq-a p,
:lang(zh-Hans) .page-cta p { font-size: 16px; line-height: 1.85; }

:lang(zh-Hans) .breadcrumb { font-size: 16px; letter-spacing: 0.3px; }

:lang(zh-Hans) .page-hero__btns .btn,
:lang(zh-Hans) .page-cta__btns .btn { font-size: 15px; letter-spacing: 0.5px; }

/* Chinese — mobile adjustments */
@media (max-width: 768px) {
  :lang(zh-Hans) .page-hero h1 { font-size: 28px; }
  :lang(zh-Hans) .page-hero p,
  :lang(zh-Hans) .intro-text p,
  :lang(zh-Hans) .intro-list li { font-size: 15px; }
  :lang(zh-Hans) .breadcrumb { font-size: 15px; }
  :lang(zh-Hans) .benefit-card p,
  :lang(zh-Hans) .step__body p,
  :lang(zh-Hans) .faq-q,
  :lang(zh-Hans) .faq-a p { font-size: 14px; }
}
@media (max-width: 430px) {
  :lang(zh-Hans) .page-hero h1 { font-size: 24px; }
  :lang(zh-Hans) .breadcrumb { font-size: 14px; }
}
