/* =========================================================
   好評五星 HaoPing 5-Star — Brand Stylesheet
   Visual identity: warm orange + gold-star accent + cream
   ========================================================= */

:root {
  /* Brand palette */
  --brand-orange: #F26B2A;
  --brand-orange-deep: #E04A1E;
  --brand-orange-light: #FFB87A;
  --brand-gold: #F8A23B;
  --brand-amber: #FFD56B;

  /* Surfaces */
  --bg: #FFF8EC;            /* cream / 奶茶米白 */
  --bg-soft: #FFFBF3;
  --bg-warm: #FFEEDB;
  --surface: #FFFFFF;

  /* Ink */
  --ink-900: #2A1A0F;
  --ink-700: #5C4632;
  --ink-500: #8C7762;
  --ink-300: #C4B5A3;
  --line: #EFE3D0;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(42, 26, 15, 0.06), 0 2px 6px rgba(42, 26, 15, 0.04);
  --shadow-md: 0 4px 14px rgba(42, 26, 15, 0.08), 0 10px 30px rgba(242, 107, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(42, 26, 15, 0.12), 0 24px 60px rgba(242, 107, 42, 0.12);

  /* Type */
  --font-zh: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-en: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-display: "Fraunces", "Noto Sans TC", serif;

  /* Sizing */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-zh);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(242, 107, 42, 0.25));
}
.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(242, 107, 42, 0.28));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-zh { font-size: 17px; letter-spacing: 0.5px; color: var(--ink-900); }
.brand-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--brand-orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--brand-orange-deep); background: var(--bg-warm); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.lang-toggle:hover { border-color: var(--brand-orange); color: var(--brand-orange-deep); }
.lang-toggle .lang-current { color: var(--brand-orange-deep); }
.lang-toggle .lang-sep { color: var(--ink-300); }
.lang-toggle .lang-other { color: var(--ink-500); font-family: var(--font-en); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-deep) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(242, 107, 42, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 107, 42, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand-orange); color: var(--brand-orange-deep); background: var(--bg-warm); }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; padding: 14px 22px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(248, 162, 59, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 184, 122, 0.20), transparent 65%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(248, 162, 59, 0.45), transparent 70%);
  top: -120px; right: -80px;
  animation: float 18s ease-in-out infinite;
}
.hero-blob--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 213, 107, 0.45), transparent 70%);
  bottom: -100px; left: -60px;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}
.hero-stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(242, 107, 42, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-orange-deep);
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(242, 107, 42, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-title-line { display: block; }
.hero-title-accent {
  background: linear-gradient(120deg, var(--brand-orange) 0%, var(--brand-gold) 50%, var(--brand-orange-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(242, 107, 42, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--brand-orange-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .pct { font-size: 0.55em; opacity: 0.8; margin-left: 2px; }
.stat-label {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 64px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(242, 107, 42, 0.08);
  border-radius: 999px;
}
.eyebrow-light { background: rgba(255, 255, 255, 0.15); color: var(--brand-amber); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink-900);
}
.section-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* =========================================================
   About
   ========================================================= */
.section-about { background: var(--bg-soft); }
.section-about p {
  font-size: 16px;
  color: var(--ink-700);
  margin: 0 0 18px;
  line-height: 1.75;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.value {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 107, 42, 0.3);
}
.value-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-amber) 0%, var(--brand-orange) 100%);
  color: white;
  border-radius: 12px;
  margin-bottom: 14px;
}
.value-icon svg { width: 22px; height: 22px; }
.value h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--ink-900);
}
.value p {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   Welcome Bonus (7-day)
   ========================================================= */
.section-welcome {
  background: linear-gradient(165deg, #2A1A0F 0%, #3D2618 60%, var(--brand-orange-deep) 130%);
  color: #FFF8EC;
  position: relative;
  overflow: hidden;
}
.section-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(248, 162, 59, 0.22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(242, 107, 42, 0.20), transparent 60%);
  pointer-events: none;
}
.section-welcome > .container { position: relative; z-index: 1; }
.section-title-light { color: #FFF8EC; }
.section-lede-light { color: rgba(255, 248, 236, 0.78); }
.hl-amber {
  background: linear-gradient(120deg, var(--brand-amber) 0%, #FFE89C 50%, var(--brand-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
}
.welcome-hero {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 162, 59, 0.25);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.big-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  line-height: 1;
}
.big-amount-currency {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--brand-amber);
}
.big-amount-num {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-amber) 0%, #FFE89C 50%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.big-amount-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 248, 236, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.welcome-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.welcome-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 248, 236, 0.15);
  font-size: 14.5px;
  color: rgba(255, 248, 236, 0.85);
}
.welcome-breakdown li:last-child { border-bottom: none; }
.welcome-breakdown strong {
  color: var(--brand-amber);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.btn-amber {
  background: linear-gradient(135deg, #FFD56B 0%, #F8A23B 100%);
  color: var(--ink-900);
  box-shadow: 0 6px 20px rgba(248, 162, 59, 0.35);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(248, 162, 59, 0.5);
}

.day-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.day-card {
  position: relative;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.day-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-amber);
  background: rgba(248, 162, 59, 0.08);
}
.day-card--feature {
  background: linear-gradient(140deg, var(--brand-orange) 0%, var(--brand-orange-deep) 100%);
  border-color: transparent;
}
.day-card--feature .day-tag { color: rgba(255, 248, 236, 0.9); }
.day-card--feature .day-amount { color: white; }
.day-card--feature .day-desc { color: rgba(255, 248, 236, 0.9); }
.day-card--bonus {
  background: linear-gradient(140deg, rgba(248, 162, 59, 0.22) 0%, rgba(255, 213, 107, 0.08) 100%);
  border-color: rgba(248, 162, 59, 0.4);
}
.day-card--bonus .day-amount { color: var(--brand-amber); }
.day-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--brand-amber);
  margin-bottom: 8px;
}
.day-amount {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: #FFF8EC;
  line-height: 1.2;
  margin-bottom: 4px;
}
.day-desc {
  font-size: 12.5px;
  color: rgba(255, 248, 236, 0.7);
  line-height: 1.5;
}
.welcome-note {
  margin: 32px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 248, 236, 0.55);
}

/* =========================================================
   Services (legacy, kept in case)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  padding: 44px 36px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card--merchant {
  background: linear-gradient(160deg, #FFF8EC 0%, #FFE4C8 100%);
  border-color: rgba(242, 107, 42, 0.2);
}
.service-card--reviewer {
  background: linear-gradient(160deg, #2A1A0F 0%, #4A2E1C 100%);
  color: #FFF8EC;
  border-color: transparent;
}
.service-card--reviewer .card-title,
.service-card--reviewer .card-desc { color: #FFF8EC; }
.service-card--reviewer .card-list li { color: rgba(255, 248, 236, 0.85); }
.service-card--reviewer .card-list li::before { background: var(--brand-amber); }
.service-card--reviewer .card-cta { color: var(--brand-amber); }

.card-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--brand-orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.card-tag--alt { background: var(--brand-amber); color: var(--ink-900); }
.card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 26px;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.card-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--ink-700);
  border-bottom: 1px dashed rgba(140, 119, 98, 0.2);
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--brand-orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.service-card--reviewer .card-list li {
  border-bottom-color: rgba(255, 248, 236, 0.15);
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange-deep);
  padding: 8px 0;
  border-bottom: 2px solid currentColor;
  transition: gap 0.2s var(--ease);
}
.card-cta:hover { gap: 14px; }

/* =========================================================
   How it works
   ========================================================= */
.section-how { background: var(--bg-warm); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative;
  padding: 32px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--brand-orange);
  border-right: 2px solid var(--brand-orange);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.4;
}
.step:last-child::after { display: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

.how-callout {
  margin-top: 44px;
  padding: 22px 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--brand-orange);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.callout-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--bg-warm);
  color: var(--brand-orange-deep);
  border-radius: 50%;
  flex-shrink: 0;
}
.callout-icon svg { width: 20px; height: 20px; }
.how-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-700);
}
.how-callout strong { color: var(--brand-orange-deep); }

/* =========================================================
   Testimonials
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 22px;
}
.testi-card {
  margin: 0;
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card--feature {
  background: linear-gradient(160deg, var(--brand-orange) 0%, var(--brand-orange-deep) 100%);
  color: white;
  border-color: transparent;
}
.testi-card--feature blockquote,
.testi-card--feature .testi-name,
.testi-card--feature .testi-role { color: white; }
.testi-card--feature .testi-role { opacity: 0.85; }
.testi-card--feature .stars { color: var(--brand-amber); }
.stars {
  color: var(--brand-orange);
  font-size: 18px;
  letter-spacing: 4px;
}
blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  font-weight: 500;
}
.testi-card figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-card--feature figcaption { border-top-color: rgba(255, 255, 255, 0.2); }
.testi-name { display: block; font-weight: 700; color: var(--ink-900); margin-bottom: 2px; }
.testi-role { display: block; font-size: 13px; color: var(--ink-500); }

/* =========================================================
   FAQ
   ========================================================= */
.section-faq { background: var(--bg-soft); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
  transition: border-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] {
  border-color: rgba(242, 107, 42, 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-orange);
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 16px;
  padding-right: 32px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-700);
}

/* =========================================================
   Contact
   ========================================================= */
.section-contact { background: var(--bg); padding-bottom: clamp(80px, 10vw, 140px); }
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.contact-right {
  padding: clamp(36px, 5vw, 60px);
  background: linear-gradient(165deg, #FFF8EC 0%, #FFEEDB 100%);
  display: grid;
  place-items: center;
}
.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 320px;
}
.qr-box {
  background: white;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(42, 26, 15, 0.10);
  border: 1px solid var(--line);
}
.qr-box img { width: 200px; height: 200px; display: block; }
.qr-text { width: 100%; }
.qr-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.qr-id {
  font-size: 14px;
  color: var(--ink-700);
  margin-bottom: 10px;
}
.qr-id strong { color: var(--brand-orange-deep); font-family: var(--font-en); letter-spacing: 0.5px; }
.qr-text p { font-size: 13px; color: var(--ink-500); margin: 0; line-height: 1.6; }

.contact-line-cta {
  margin-top: 28px;
  width: 100%;
  box-sizing: border-box;
}
.faq-line-btn {
  margin-top: 18px;
}
.contact-left {
  padding: clamp(36px, 5vw, 60px);
  background: linear-gradient(165deg, var(--ink-900) 0%, #3D2618 50%, var(--brand-orange-deep) 130%);
  color: #FFF8EC;
}
.contact-left .section-title { color: #FFF8EC; }
.contact-left p { color: rgba(255, 248, 236, 0.8); margin: 0 0 28px; font-size: 15px; line-height: 1.7; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(248, 162, 59, 0.15);
  color: var(--brand-amber);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 12px;
  color: rgba(255, 248, 236, 0.6);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.contact-list a { color: #FFF8EC; font-weight: 500; }
.contact-list a:hover { color: var(--brand-amber); }

.contact-form { padding: clamp(36px, 5vw, 60px); display: none; }
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--ink-900);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-block { display: block; margin-bottom: 14px; }
.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(242, 107, 42, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 40px 0 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-logo { width: 36px; height: 36px; border-radius: 50%; }
.footer-brand .brand-zh { font-weight: 700; color: var(--ink-900); }
.footer-brand .brand-en { font-family: var(--font-en); font-size: 11px; color: var(--brand-orange); letter-spacing: 1.2px; }
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--ink-700);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--brand-orange-deep); }
.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

/* =========================================================
   Scroll reveal
   ========================================================= */
/* Reveal animations DISABLED: content always visible — !important to override any cached older rules. */
.reveal,
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .nav-wrap { gap: 12px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .menu-toggle { display: flex; }
  .nav-actions { margin-left: auto; }
  .nav-cta { display: none; }
  .hero-stars { opacity: 0.45; }
  .hero-blob--1 { width: 320px; height: 320px; }
  .hero-blob--2 { width: 280px; height: 280px; }

  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .welcome-grid { grid-template-columns: 1fr; }
  .day-list { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps-3 { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding-top: 56px; padding-bottom: 72px; }
  .hero-pill { font-size: 12px; padding: 6px 12px; }
  .hero-stats { grid-template-columns: 1fr; padding: 20px; gap: 18px; }
  .hero-stats .stat { padding: 4px 0; border-bottom: 1px dashed var(--line); }
  .hero-stats .stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .day-list { grid-template-columns: 1fr; }
  .steps-3 { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
