@import url("./design-system/colors_and_type.css");

/* ============================================================
   AstraYo 美業預約銷售頁
   白底為主・lime 點綴・8px radius・DM Sans + Noto Sans TC
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---- Layout primitives ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

/* ---- Type ---- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--astra-accent-press);
}
.h-display {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-display em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 64%, var(--astra-accent) 64%);
  padding: 0 4px;
}
.h-section {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.h-card {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0;
}
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
}
.small { font-size: 14px; color: var(--fg-2); }
.num { font-family: var(--font-numeric); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--primary { background: var(--astra-accent); color: var(--fg-on-accent); }
.btn--primary:hover { background: var(--astra-accent-hover); border-bottom-color: var(--astra-border-light); }
.btn--primary:active { background: var(--astra-accent-press); transform: scale(0.98); }
.btn--dark { background: var(--astra-dark); color: var(--astra-white); }
.btn--dark:hover { background: #1f2a1d; border-bottom-color: var(--astra-mid); }
.btn--ghost { color: var(--astra-dark); border-color: var(--astra-border-light); background: #fff; }
.btn--ghost:hover { background: var(--astra-light); border-bottom-color: var(--astra-border-light); }
.btn--line { background: #06C755; color: #fff; }
.btn--line:hover { background: #05b04b; }

/* ---- Pills ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  background: var(--astra-light);
  color: var(--fg-1);
}
.pill--accent { background: var(--astra-accent); color: var(--fg-on-accent); font-weight: 600; }
.pill--mint { background: var(--astra-mint); color: var(--fg-1); }
.pill--dark { background: var(--astra-dark); color: var(--astra-white); }
.pill--dot::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: currentColor;
  display: inline-block;
}

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,250,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--astra-border-light);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand img { height: 26px; }
.nav__brand { border: none; }
.nav__links { display: flex; gap: 28px; flex: 1; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-1);
  border: none;
}
.nav__links a:hover { color: var(--astra-accent-press); }
.nav__actions { display: flex; gap: 10px; align-items: center; }

/* ---- Hero ---- */
.hero { padding: 80px 0 96px; position: relative; overflow: hidden; }
.hero.is-dark { background: var(--astra-dark); color: var(--fg-1-on-dark); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow { color: var(--astra-accent-press); margin-bottom: 22px; }
.hero.is-dark .hero__eyebrow { color: var(--astra-accent); }
.hero.is-dark .h-display em { background: linear-gradient(180deg, transparent 64%, var(--astra-accent) 64%); color: var(--astra-dark); }
.hero__lead { margin: 28px 0 36px; max-width: 540px; }
.hero.is-dark .hero__lead { color: var(--fg-2-on-dark); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  display: flex; gap: 24px; margin-top: 28px;
  font-size: 13px; color: var(--fg-3);
}
.hero.is-dark .hero__meta { color: var(--fg-3-on-dark); }
.hero__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta-item svg { color: var(--astra-accent-press); }
.hero.is-dark .hero__meta-item svg { color: var(--astra-accent); }

/* Hero phone visual */
.hero__visual { position: relative; min-height: 600px; }
.hero__phone {
  position: relative;
  width: 320px;
  margin: 0 auto;
  z-index: 2;
}
.hero__accent-blob {
  position: absolute;
  inset: 40px -40px 40px -40px;
  background: var(--astra-mint);
  border-radius: 200px;
  z-index: 0;
}
.hero.is-dark .hero__accent-blob { background: #1E261D; }
.hero__lime-dot {
  position: absolute;
  width: 120px; height: 120px; border-radius: 999px;
  background: var(--astra-accent);
  top: -10px; right: 30px; z-index: 1;
}
.hero__hint {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-hover);
  font-size: 13px;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
}
.hero__hint--top { top: 80px; left: 0; }
.hero__hint--bot { bottom: 100px; right: 0; }
.hero__hint .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--astra-accent-press); }

/* ---- Phone frame ---- */
.phone {
  background: #1a1a1a;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 60px -20px rgba(12,21,10,0.25),
    0 12px 24px -8px rgba(12,21,10,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone__screen {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/19;
  display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; background: #1a1a1a;
  border-radius: 14px; z-index: 5;
}
.phone__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px 6px;
  font-family: var(--font-numeric);
  font-size: 13px;
  font-weight: 600;
  color: #0C150A;
}
.phone__statusbar-icons { display: flex; gap: 5px; align-items: center; }

/* ---- LINE chat ---- */
.line-chat { background: #8FA9C2; flex: 1; display: flex; flex-direction: column; }
.line-chat__header {
  background: #B0C4D8;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.line-chat__avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, #EAF670, #BAC73E);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #0C150A;
}
.line-chat__body {
  flex: 1;
  padding: 16px 12px;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.line-bubble {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 85%;
  color: #0C150A;
  position: relative;
}
.line-bubble--me {
  background: #B6E36F;
  align-self: flex-end;
}
.line-bubble__row { display: flex; gap: 4px; }
.line-bubble__row + .line-bubble__row { margin-top: 4px; }
.line-bubble__label { color: #6b6b6b; min-width: 38px; }
.line-bubble__title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
}
.line-bubble__time {
  font-size: 10px;
  color: rgba(0,0,0,0.5);
  align-self: flex-end;
  margin: 0 4px;
}
.line-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 85%;
}
.line-card__media {
  height: 90px;
  background: linear-gradient(135deg, #EAF670 0%, #E2F2DF 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--astra-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.line-card__body { padding: 10px 12px; }
.line-card__title { font-size: 12.5px; font-weight: 700; margin-bottom: 6px; }
.line-card__row { font-size: 11.5px; color: var(--fg-2); display: flex; gap: 6px; }
.line-card__btn {
  margin-top: 10px;
  background: var(--astra-dark);
  color: var(--astra-accent);
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* ---- Stats trust band ---- */
.trust { background: var(--astra-mint); padding: 22px 0; }
.trust__inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: space-between;
}
.trust__item { display: flex; gap: 12px; align-items: baseline; }
.trust__n { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.trust__l { font-size: 13px; color: var(--fg-2); }
.trust__divider { width: 1px; height: 28px; background: rgba(12,21,10,0.12); }

/* ---- Pain section ---- */
.pain { background: var(--astra-light); }
.pain__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--astra-border-light);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.pain-card__before {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C75B5B;
  margin-bottom: 8px;
}
.pain-card__after {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--astra-accent-press);
  margin-bottom: 8px;
}
.pain-card__quote {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 16px;
  color: var(--fg-1);
}
.pain-card__quote--bad { color: #5C6259; text-decoration: line-through; text-decoration-color: rgba(199,91,91,0.4); }
.pain-card__divider {
  height: 1px;
  background: var(--astra-border-light);
  margin: 18px 0;
}
.pain-card__solve {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
}
.pain-card__solve svg { color: var(--astra-accent-press); margin-top: 2px; flex-shrink: 0; }

/* ---- Features ---- */
.features__intro { margin-bottom: 56px; max-width: 720px; }
.features__intro p { margin-top: 24px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features__highlight {
  grid-column: 1 / -1;
  background: var(--astra-dark);
  color: var(--fg-1-on-dark);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.features__highlight::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 999px;
  background: #1E261D;
  right: -160px; top: -160px;
}
.features__highlight > * { position: relative; z-index: 1; }
.fcard {
  background: #fff;
  border: 1px solid var(--astra-border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.fcard:hover { border-color: var(--astra-dark); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.fcard__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--astra-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--astra-dark);
}
.fcard__desc { color: var(--fg-2); font-size: 15px; line-height: 1.6; }

/* ---- Multi-select demo (inside highlight) ---- */
.multi-demo {
  background: #fff;
  color: var(--fg-1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-hover);
}
.multi-demo__head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--astra-border-light);
  margin-bottom: 14px;
}
.multi-demo__time { color: var(--fg-3); font-family: var(--font-numeric); font-size: 12px; }
.multi-demo__slot {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 14px 0;
  align-items: center;
  border-top: 1px dashed var(--astra-border-light);
}
.multi-demo__slot:first-of-type { border-top: none; }
.multi-demo__time-label {
  font-family: var(--font-numeric);
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 600;
}
.multi-demo__service {
  background: var(--astra-mint);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.multi-demo__service--accent { background: var(--astra-accent); }
.multi-demo__service-staff {
  margin-left: auto;
  font-size: 11px;
  color: var(--fg-2);
  background: rgba(255,255,255,0.6);
  padding: 2px 8px;
  border-radius: 999px;
}
.multi-demo__overlap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.multi-demo__addon {
  display: flex; align-items: center; gap: 10px;
  background: var(--astra-light);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12.5px;
  border: 1px dashed var(--astra-border-light);
}
.multi-demo__check {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: var(--astra-accent-press);
  display: flex; align-items: center; justify-content: center;
  color: var(--astra-dark);
}

/* ---- One-page website showcase ---- */
.site-showcase { padding: 96px 0; background: var(--bg-page); position: relative; }
.site-showcase__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.site-showcase__head h2 { max-width: 540px; }
.site-showcase__includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 24px;
}
.site-showcase__includes-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--fg-2); line-height: 1.55;
}
.site-showcase__includes-item svg {
  color: var(--astra-accent-press);
  flex-shrink: 0; margin-top: 3px;
}
.site-showcase__includes-item strong { color: var(--fg-1); font-weight: 600; }

/* Browser frame */
.browser {
  background: #E5E7E1;
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 30px 60px -20px rgba(12,21,10,0.18),
    0 12px 24px -8px rgba(12,21,10,0.10);
  overflow: hidden;
  border: 1px solid var(--astra-border-light);
}
.browser__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #F1F1F1;
  border-bottom: 1px solid var(--astra-border-light);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dot { width: 11px; height: 11px; border-radius: 999px; background: #D7D9D2; }
.browser__url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-numeric);
  font-size: 12px;
  color: var(--fg-3);
  border: 1px solid var(--astra-border-light);
  display: inline-flex; align-items: center; gap: 6px;
}
.browser__body { background: #fff; }

/* Site mock content */
.sm {
  font-family: var(--font-body);
  color: var(--fg-1);
}
.sm__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--astra-border-light);
}
.sm__hero-copy { padding: 40px 36px; }
.sm__nav {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 28px;
}
.sm__nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  flex: 1;
}
.sm__nav-brand::before {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--astra-accent);
  border-radius: 4px;
  vertical-align: -3px;
  margin-right: 8px;
}
.sm__nav-link {
  font-size: 12px;
  color: var(--fg-2);
}
.sm__hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.sm__hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 64%, var(--astra-accent) 64%);
  padding: 0 2px;
}
.sm__hero-lead {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 20px;
}
.sm__hero-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #06C755;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
}
.sm__hero-meta {
  display: flex; gap: 16px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--fg-3);
}
.sm__hero-meta-item { display: inline-flex; align-items: center; gap: 4px; }

/* Studio space photo placeholder */
.sm__studio {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(234,246,112,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(226,242,223,0.6) 0%, transparent 50%),
    linear-gradient(135deg, #F1F1F1 0%, #E5E7E1 100%);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sm__studio-frame {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(12,21,10,0.08);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 11px;
  color: var(--fg-2);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  position: relative;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.sm__studio-frame svg { color: var(--astra-dark); }
.sm__studio-deco {
  position: absolute;
  border-radius: 999px;
}
.sm__studio-deco--1 {
  width: 140px; height: 140px;
  background: var(--astra-accent);
  top: 20px; left: 20px;
  opacity: 0.7;
}
.sm__studio-deco--2 {
  width: 90px; height: 90px;
  background: var(--astra-dark);
  bottom: 30px; right: 40px;
  opacity: 0.8;
}
.sm__studio-deco--3 {
  width: 60px; height: 60px;
  background: var(--astra-mint);
  top: 60%; left: 25%;
}

/* Sections inside site mock */
.sm__section { padding: 36px; border-bottom: 1px solid var(--astra-border-light); }
.sm__section:last-child { border-bottom: none; }
.sm__section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.sm__section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.sm__section-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Services & price */
.sm__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.sm__service {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 14px 0;
  border-bottom: 1px dashed var(--astra-border-light);
  gap: 16px;
}
.sm__service:nth-child(2n) { padding-left: 20px; padding-right: 0; }
.sm__service-name {
  font-size: 14px;
  font-weight: 600;
}
.sm__service-time {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 2px;
}
.sm__service-price {
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.sm__service-tag {
  display: inline-block;
  background: var(--astra-accent);
  color: var(--astra-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 2px;
}

/* Portfolio grid */
.sm__portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.sm__portfolio-item {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--astra-light);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--fg-3);
}
.sm__portfolio-item--1 { background: linear-gradient(135deg, #F1F1F1 0%, #E5E7E1 100%); }
.sm__portfolio-item--2 { background: linear-gradient(135deg, #E2F2DF 0%, #EAF670 100%); }
.sm__portfolio-item--3 { background: linear-gradient(135deg, #161E15 0%, #3F463E 100%); color: var(--astra-accent); }
.sm__portfolio-item--4 { background: linear-gradient(135deg, #FFF 0%, #E2F2DF 100%); }
.sm__portfolio-item--5 { background: linear-gradient(135deg, #0C150A 0%, #1E261D 100%); color: #fff; }
.sm__portfolio-item--6 { background: linear-gradient(135deg, #EAF670 30%, #E2F2DF 100%); color: var(--astra-dark); }
.sm__portfolio-item--7 { background: linear-gradient(135deg, #F1F1F1 0%, #FFF 100%); }
.sm__portfolio-item--8 { background: linear-gradient(135deg, #E5E7E1 0%, #F1F1F1 100%); }
.sm__portfolio-item__num {
  font-family: var(--font-numeric);
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* Site CTA footer */
.sm__cta {
  background: var(--astra-dark);
  color: var(--fg-1-on-dark);
  padding: 36px;
  text-align: center;
}
.sm__cta-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
}
.sm__cta-sub {
  color: var(--fg-2-on-dark);
  font-size: 13px;
  margin-bottom: 18px;
}
.sm__cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--astra-accent);
  color: var(--astra-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 6px;
}

/* Floating callout markers around the browser */
.site-showcase__wrap { position: relative; }
.callout {
  position: absolute;
  background: #fff;
  border: 1px solid var(--astra-border-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
  max-width: 220px;
}
.callout .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--astra-accent-press);
  flex-shrink: 0;
}
.callout--1 { top: 60px; left: -16px; }
.callout--2 { top: 40%; right: -20px; }
.callout--3 { bottom: 80px; left: -10px; }

/* ---- Flow / Walkthrough ---- */
.walk__intro { text-align: center; margin: 0 auto 64px; max-width: 720px; }
.walk__intro p { margin-top: 20px; }
.walk__intro .h-section { white-space: nowrap; }
.walk__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.walk-step {
  display: flex; flex-direction: column; gap: 16px;
}
.walk-step__head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 4px;
}
.walk-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--astra-accent-press);
}
.walk-step__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.walk-step__desc {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 4px;
}
.walk-step__visual {
  background: var(--astra-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--astra-border-light);
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

/* Admin dashboard mock */
.admin-mock {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--astra-border-light);
  padding: 14px;
  font-size: 11px;
}
.admin-mock__title {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-mock__badge {
  background: var(--astra-accent);
  color: var(--astra-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}
.admin-mock__row {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr 0.5fr;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--astra-border-light);
  align-items: center;
}
.admin-mock__row:first-of-type { border-top: none; padding-top: 4px; }
.admin-mock__cell {
  font-size: 11px;
  color: var(--fg-2);
}
.admin-mock__cell--head { color: var(--fg-3); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.admin-mock__toggle {
  width: 24px; height: 14px;
  background: var(--astra-accent-press);
  border-radius: 999px;
  position: relative;
}
.admin-mock__toggle::after {
  content: "";
  position: absolute;
  right: 1px; top: 1px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: #fff;
}
.admin-mock__tag {
  font-size: 10px;
  background: var(--astra-light);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

/* Calendar mock */
.cal-mock {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--astra-border-light);
}
.cal-mock__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.cal-mock__title { font-weight: 700; font-size: 14px; }
.cal-mock__nav { display: flex; gap: 6px; color: var(--fg-3); }
.cal-mock__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-mock__dow {
  text-align: center; font-size: 10px; font-weight: 600;
  color: var(--fg-3); padding: 4px 0;
}
.cal-mock__day {
  font-family: var(--font-numeric);
  text-align: center;
  padding: 7px 0;
  font-size: 12px;
  border-radius: 6px;
  color: var(--fg-2);
}
.cal-mock__day--avail { background: var(--astra-mint); color: var(--astra-dark); font-weight: 600; }
.cal-mock__day--selected { background: var(--astra-accent-press); color: var(--astra-dark); font-weight: 700; }
.cal-mock__day--full { color: #C75B5B; text-decoration: line-through; text-decoration-color: rgba(199,91,91,0.4); }
.cal-mock__legend {
  display: flex; gap: 12px; margin-top: 12px;
  font-size: 10px; color: var(--fg-3);
}
.cal-mock__legend .dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; margin-right: 4px; }

/* LINE confirm message */
.line-confirm {
  background: linear-gradient(180deg, #8FA9C2 0%, #B0C4D8 100%);
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  min-height: 280px;
}
.line-confirm .line-bubble {
  margin-top: 32px;
  max-width: 100%;
}

/* ---- Pricing ---- */
.pricing__intro { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.pricing__intro p { margin-top: 20px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  padding-top: 16px;
}
.price {
  background: #fff;
  border: 1px solid var(--astra-border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.price--featured {
  background: var(--astra-dark);
  color: var(--fg-1-on-dark);
  border-color: var(--astra-dark);
  transform: translateY(-8px);
}
.price__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--astra-accent);
  color: var(--astra-dark);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
.price__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
.price__tag {
  color: var(--fg-3);
  font-size: 13px;
  margin-bottom: 24px;
  min-height: 38px;
}
.price--featured .price__tag { color: var(--fg-2-on-dark); }
.price__amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price__currency { font-size: 16px; font-weight: 600; color: var(--fg-2); }
.price--featured .price__currency { color: var(--fg-2-on-dark); }
.price__num {
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price__per { font-size: 14px; color: var(--fg-3); }
.price--featured .price__per { color: var(--fg-2-on-dark); }
.price__note { font-size: 12px; color: var(--fg-3); margin-bottom: 28px; }
.price--featured .price__note { color: var(--fg-2-on-dark); }
.price__cta { margin-bottom: 24px; width: 100%; justify-content: center; }
.price__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--astra-border-light);
  padding-top: 24px;
  flex: 1;
}
.price--featured .price__features { border-top-color: var(--astra-mid); }
.price__features li {
  display: flex; gap: 10px; font-size: 14px; line-height: 1.5;
}
.price__features svg {
  color: var(--astra-accent-press); flex-shrink: 0; margin-top: 2px;
}
.price--featured .price__features svg { color: var(--astra-accent); }

/* ---- FAQ ---- */
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--astra-border-light);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--astra-border-light); }
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  user-select: none;
}
.faq-item__icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--astra-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all var(--dur) var(--ease);
}
.faq-item.is-open .faq-item__icon {
  background: var(--astra-accent);
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), margin var(--dur) var(--ease);
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  margin-top: 16px;
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--astra-dark);
  color: var(--fg-1-on-dark);
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta__lead { color: var(--fg-2-on-dark); max-width: 540px; margin: 28px auto 36px; }
.final-cta__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta__orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 999px;
  background: #1E261D;
  z-index: 1;
}
.final-cta__orb--l { left: -200px; bottom: -200px; }
.final-cta__orb--r { right: -240px; top: -240px; background: #182018; }
.final-cta__accent-line {
  width: 60px; height: 4px;
  background: var(--astra-accent);
  margin: 0 auto 24px;
  border-radius: 4px;
}

/* ---- Footer ---- */
.footer {
  background: var(--astra-dark);
  color: var(--fg-1-on-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--astra-mid);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__brand img { height: 28px; margin-bottom: 14px; }
.footer__brand p { color: var(--fg-2-on-dark); font-size: 14px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3-on-dark);
  margin: 0 0 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--fg-1-on-dark); border: none; }
.footer__col a:hover { color: var(--astra-accent); }
.footer__base {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--astra-mid);
  font-size: 12px;
  color: var(--fg-3-on-dark);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .price--featured { transform: none; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 480px; margin-top: 32px; }
  .pain__intro { grid-template-columns: 1fr; }
  .pain__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .features__highlight { grid-template-columns: 1fr; padding: 32px; }
  .walk__steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .faq__wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.22s; }
.reveal--d3 { transition-delay: 0.32s; }
.reveal--d4 { transition-delay: 0.42s; }

/* ---- Cursor glow ---- */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 230, 100, 0.13) 0%, rgba(120, 200, 80, 0.06) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
  filter: blur(40px);
  transition: opacity 0.5s ease;
  will-change: left, top, opacity;
}
.cursor-glow.is-active {
  opacity: 1;
}

/* ---- Footer contact info ---- */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-3-on-dark, rgba(255,255,255,0.5));
  line-height: 1.6;
}
.footer__base a {
  color: var(--fg-3-on-dark, rgba(255,255,255,0.5));
  text-decoration: none;
  font-size: 13px;
}
.footer__base a:hover {
  color: var(--fg-1-on-dark, #fff);
  border-bottom: none;
}

/* ---- Mobile (480px) ---- */
@media (max-width: 480px) {
  /* Nav */
  .nav__inner { padding: 14px 16px; }
  .nav__actions .btn { font-size: 13px; padding: 8px 14px; }

  /* Hero */
  .hero { padding: 80px 0 48px; }
  .hero__copy { padding: 0 4px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .hero__meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero__meta-item { font-size: 13px; }

  /* Site showcase */
  .site-showcase__head { grid-template-columns: 1fr; gap: 20px; }
  .site-showcase__includes { grid-template-columns: 1fr; }

  /* Walk title — allow natural wrap on mobile */
  .walk__intro .h-section { white-space: normal; }

  /* Pricing */
  .price__amount { flex-wrap: wrap; }

  /* FAQ */
  .faq__wrap { gap: 32px; }

  /* Final CTA */
  .final-cta__inner { padding: 48px 20px; }
  .final-cta__cta { flex-direction: column; align-items: stretch; }
  .final-cta__cta .btn { text-align: center; justify-content: center; }

  /* Footer */
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__base { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer__base > div { flex-wrap: wrap; gap: 12px; }
}

/* ---- Hamburger & mobile menu ---- */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--fg-1);
  align-items: center;
  justify-content: center;
}
.nav__mobile-menu {
  display: flex;
  flex-direction: column;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--astra-border-light);
  padding: 12px 20px 20px;
  gap: 0;
}
.nav__mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-1);
  padding: 14px 0;
  border-bottom: 1px solid var(--astra-border-light);
  text-decoration: none;
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover { color: var(--astra-accent-press); border-bottom-color: var(--astra-border-light); }

@media (max-width: 900px) {
  .nav__hamburger { display: flex; margin-left: auto; }
}

/* ---- SIGNATURE 手機修正 ---- */
@media (max-width: 480px) {
  .features__highlight { padding: 24px 20px; gap: 28px; }
  .multi-demo { padding: 16px; }
  .multi-demo__overlap { grid-template-columns: 1fr; }
  .multi-demo__service { font-size: 13px; flex-wrap: wrap; }
  .multi-demo__head { font-size: 13px; }
  .multi-demo__head .multi-demo__time { display: none; }
}
