:root {
  --ink: #17212b;
  --ink-2: #263545;
  --muted: #687584;
  --line: #dbe4ea;
  --paper: #f5f1ea;
  --panel: #ffffff;
  --accent: #0f6b78;
  --accent-2: #13a39a;
  --gold: #d7a742;
  --coral: #e85f4a;
  --soft: #eef8f7;
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.13);
  --radius: 8px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(23, 33, 43, 0.09);
  background: rgba(255, 252, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 360px;
}

.brand-logo-wrap {
  display: grid;
  width: 300px;
  height: 54px;
  place-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.brand-logo-fallback {
  display: none;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #42505e;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 680px;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #fffaf1 0%, #edf5f3 48%, #dbe8e7 100%);
  overflow: hidden;
}

.hero-photo {
  grid-template-columns: minmax(0, 680px) minmax(280px, 1fr);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.38) 58%, rgba(255, 255, 255, 0.05) 100%),
    url("./assets/hero/print-output-center.png") center right / cover no-repeat;
}

.hero-photo .hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 4vw, 42px) 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 5.7vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #53606d;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 24px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 107, 120, 0.22);
}

.button.primary:hover {
  background: #0a5661;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button.secondary {
  border: 1px solid rgba(23, 33, 43, 0.16);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}

.button.wide {
  width: 100%;
}

.dark-text {
  color: var(--ink) !important;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.64);
  color: #43515f;
  font-weight: 800;
}

.hero-proof b {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: min(56vw, 570px);
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 35px 90px rgba(23, 33, 43, 0.24);
}

.floating-card {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: 34px;
  display: grid;
  gap: 4px;
  width: min(240px, 70%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(23, 33, 43, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card span,
.floating-card small {
  color: var(--muted);
  font-weight: 800;
}

.floating-card strong {
  color: var(--coral);
  font-size: 32px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(23, 33, 43, 0.08);
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  background: #fff;
}

.trust-band span {
  padding: 22px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.products-section {
  background: #fff;
}

.product-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.guide-grid article,
.process-item {
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.product-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card img {
  width: calc(100% + 48px);
  height: 176px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  background: #f3f7f6;
}

.product-card[data-service="sticker"] img,
.product-card[data-service="poster"] img {
  object-position: center;
}

.product-card[data-service="frame"] img,
.product-card[data-service="canvas"] img,
.product-card[data-service="magnet"] img,
.product-card[data-service="crystal"] img,
.product-card[data-service="design"] img,
.product-card[data-service="event"] img,
.product-card[data-service="tattoo"] img,
.product-card[data-service="digital"] img,
.product-card[data-service="dm"] img,
.product-card[data-service="business-card"] img {
  object-position: center;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 120, 0.35);
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.1);
}

.product-card.featured {
  background: linear-gradient(180deg, #f5fbfa, #fff);
}

.product-card p,
.guide-grid p,
.form-header p,
.checklist p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 16px 0 0;
  color: #4d5b68;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 16px;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  content: "";
}

.product-card::after {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 900;
  content: "查看服務介紹";
}

.product-card:focus {
  outline: 3px solid rgba(15, 107, 120, 0.18);
  outline-offset: 4px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.product-card.image-missing {
  min-height: 340px;
}

.service-detail-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  background: #fff;
  scroll-margin-top: 112px;
  box-shadow: 0 16px 40px rgba(23, 33, 43, 0.06);
}

.service-detail.text-only {
  grid-template-columns: 1fr;
  border-left: 6px solid var(--accent);
}

.service-detail-media {
  min-height: 100%;
  margin: 0;
  background: #eef6f5;
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

#service-sticker .service-detail-media img,
#service-poster .service-detail-media img,
#service-document .service-detail-media img,
#service-magnet .service-detail-media img,
#service-crystal .service-detail-media img,
#service-design .service-detail-media img,
#service-event .service-detail-media img,
#service-tattoo .service-detail-media img,
#service-digital .service-detail-media img,
#service-dm .service-detail-media img,
#service-business-card .service-detail-media img {
  object-position: center;
}

.service-detail-body {
  padding: clamp(24px, 4vw, 38px);
}

.service-detail-body h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.service-detail-body > p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.detail-columns div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.detail-columns h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.detail-columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-extra {
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 8px;
  padding: 16px;
  background: #f8fbfa;
}

.service-extra h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
}

.service-extra ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.service-extra p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 107, 120, 0.16);
}

.service-quote-link:hover {
  background: #0a5965;
}

.line-quote-link,
.line-button {
  background: #06c755;
}

.line-quote-link:hover,
.line-button:hover {
  background: #05ad4a;
}

.line-dialog p {
  color: var(--muted);
  line-height: 1.75;
}

.process-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 98px);
  background: #fff;
}

.process-item {
  padding: 24px;
  background: #17212b;
  color: #fff;
}

.process-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #1d1b15;
  font-weight: 900;
}

.process-item p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  gap: 24px;
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(15, 107, 120, 0.08), rgba(245, 241, 234, 0.2)),
    #eef4f3;
}

.quote-panel,
.summary-panel {
  border: 1px solid rgba(23, 33, 43, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(24px, 4vw, 44px);
}

.summary-panel {
  padding: 28px;
}

.summary-sticky {
  position: sticky;
  top: 98px;
}

.quote-form {
  display: grid;
  gap: 28px;
}

fieldset {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
}

legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 900;
}

legend span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.field-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.hidden {
  display: none !important;
}

.sticker-price-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid #c8e4e0;
  border-radius: var(--radius);
  padding: 18px;
  background: #f5fbfa;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: #354252;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cdd8df;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(15, 107, 120, 0.16);
}

.input-with-unit {
  display: flex;
  overflow: hidden;
  border: 1px solid #cdd8df;
  border-radius: var(--radius);
  background: #fff;
}

.input-with-unit input {
  border: 0;
  border-radius: 0;
}

.input-with-unit b {
  display: grid;
  min-width: 54px;
  place-items: center;
  border-left: 1px solid #e1e8ee;
  color: var(--muted);
}

.drop-zone {
  position: relative;
  display: grid;
  min-height: 178px;
  place-items: center;
  gap: 8px;
  border: 2px dashed #9fb5bd;
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(19, 163, 154, 0.08), transparent),
    #f9fcfc;
  text-align: center;
}

.drop-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.drop-zone.dragging {
  border-color: var(--accent);
  background: var(--soft);
}

.drop-zone span {
  color: var(--muted);
  line-height: 1.6;
}

.file-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: #354252;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.price-box {
  display: grid;
  gap: 8px;
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--ink);
  color: #fff;
}

.price-box strong {
  color: #fff;
  font-size: 36px;
}

.price-box small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.checklist {
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 18px;
  background: #fff5d8;
}

.guide {
  background: #fff;
}

.payment-section {
  background: #f8fbfa;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.payment-card {
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.06);
}

.payment-card.featured {
  border-color: rgba(15, 107, 120, 0.26);
  background: linear-gradient(180deg, #f3fbfa, #fff);
}

.payment-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.payment-card h3 {
  margin: 0 0 10px;
}

.payment-card p {
  color: var(--muted);
  line-height: 1.7;
}

.payment-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.payment-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.payment-card dt {
  color: var(--muted);
  font-weight: 700;
}

.payment-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.line-pay-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.line-pay-qr {
  width: 132px;
  height: 132px;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(23, 33, 43, 0.12);
}

.payment-qr-large {
  display: block;
  width: min(100%, 240px);
  margin-top: 18px;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(23, 33, 43, 0.12);
}

.payment-link {
  width: min(100%, 240px);
  margin-top: 14px;
}

.guide-grid article {
  min-height: 180px;
  padding: 24px;
}

.result-dialog,
.service-dialog {
  width: min(680px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-dialog {
  width: min(1040px, calc(100vw - 32px));
}

.result-dialog::backdrop,
.service-dialog::backdrop {
  background: rgba(14, 22, 31, 0.55);
}

.service-dialog-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.service-dialog-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f3f7f6;
}

.service-dialog-section {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.service-dialog-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #4d5b68;
  line-height: 1.65;
}

.service-dialog-section p,
#serviceDialogIntro {
  color: var(--muted);
  line-height: 1.75;
}

#serviceDialogQuote {
  margin-top: 22px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

pre {
  max-height: 320px;
  overflow: auto;
  border-radius: var(--radius);
  padding: 16px;
  background: #f3f6f8;
  white-space: pre-wrap;
  line-height: 1.6;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .hero,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.26) 100%),
      url("./assets/hero/print-output-center.png") center right / cover no-repeat;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: 460px;
  }

  .product-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .detail-columns {
    grid-template-columns: 1fr;
  }

  .service-extra-grid {
    grid-template-columns: 1fr;
  }

  .summary-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo-wrap {
    width: 220px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-photo {
    padding-bottom: 260px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(255, 255, 255, 0.18) 100%),
      url("./assets/hero/print-output-center.png") center bottom / auto 100% no-repeat;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual img {
    height: 340px;
    min-height: 0;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-band,
  .product-grid,
  .guide-grid,
  .payment-grid,
  .process-section,
  .field-grid.two,
  .field-grid.three,
  .sticker-price-fields,
  .service-dialog-grid,
  .service-detail,
  .detail-columns,
  .service-extra-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media img {
    min-height: 220px;
  }

  .process-section {
    padding-inline: 18px;
  }

  .trust-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}


/* =========================================================
   image-Q 其他服務風格重整
   注意：僅調整視覺，不修改 app.js / pricing-data.js 估價公式。
   ========================================================= */
:root {
  --ink: #30443C;
  --ink-2: #23352e;
  --muted: #766F66;
  --line: #E6DED1;
  --paper: #FFF8F3;
  --panel: #ffffff;
  --accent: #30443C;
  --accent-2: #9B7B4B;
  --gold: #D9C4A1;
  --coral: #FFD7D0;
  --soft: #F5EBDD;
  --shadow: 0 18px 48px rgba(48,68,60,.12);
  --radius: 24px;
  font-family: "Microsoft JhengHei", "Noto Sans TC", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body.imageq-other-services {
  background: var(--paper);
  color: #333;
  line-height: 1.75;
}
body.imageq-other-services a { text-decoration: none; }
.iq-header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px clamp(18px,4vw,64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,248,243,.94);
  backdrop-filter: blur(12px);
}
.iq-brand.brand {
  min-width: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.iq-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--accent);
  font-weight: 900;
  font-size: 25px;
  box-shadow: 0 8px 22px rgba(48,68,60,.08);
}
.iq-brand-text strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  letter-spacing: .01em;
}
.iq-brand-text small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 5px;
}
.iq-header .nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
}
.iq-header .nav a { color: var(--accent); }
.iq-header .nav a:hover { color: var(--accent-2); }
.iq-header .nav-cta {
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff !important;
}
.iq-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px 0;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.iq-breadcrumb a { color: var(--accent); }
.hero.hero-photo.iq-other-hero, .hero.hero-photo {
  min-height: 620px;
  padding: clamp(56px,8vw,96px) clamp(18px,5vw,72px);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,215,208,.58), transparent 32%),
    linear-gradient(90deg, rgba(255,248,243,.98) 0%, rgba(255,248,243,.94) 32%, rgba(255,248,243,.48) 58%, rgba(255,248,243,.12) 100%),
    url("./assets/hero/print-output-center.png") center right / cover no-repeat;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  color: var(--accent-2);
  letter-spacing: .15em;
  font-weight: 900;
}
h1 { color: var(--accent); font-size: clamp(40px,5.5vw,64px); line-height: 1.12; }
h2 { color: var(--accent); }
.hero-copy p:not(.eyebrow) { color: var(--muted); }
.button { border-radius: 999px; min-height: 50px; font-weight: 900; }
.button.primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px rgba(48,68,60,.20); }
.button.primary:hover { background: #22362f; }
.button.secondary { background: #fff; color: var(--accent); border: 1px solid var(--line); }
.trust-band {
  background: #fff;
  border-block: 1px solid var(--line);
  color: var(--accent);
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-band span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--paper);
  font-weight: 900;
}
.section { padding: 72px 22px; }
.section-heading { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 { font-size: clamp(30px,4vw,42px); line-height: 1.2; }
.section-heading p { color: var(--muted); font-size: 17px; }
.products-section, .payment-section { background: var(--paper); }
.product-grid { max-width: 1200px; margin: 0 auto; gap: 20px; }
.product-card, .payment-card, .quote-panel, .summary-panel, fieldset, .drop-zone, .result-card, .checklist {
  border-color: var(--line) !important;
  border-radius: 24px !important;
  background: #fff;
  box-shadow: 0 10px 28px rgba(48,68,60,.08);
}
.product-card { overflow: hidden; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(48,68,60,.14); }
.product-card img { height: 210px; object-fit: cover; }
.product-tag {
  background: var(--gold) !important;
  color: var(--accent) !important;
  border-radius: 999px;
}
.product-card h3 { color: var(--accent); }
.product-card p, .product-card li, .summary-list dt, .checklist p, .payment-card p { color: var(--muted); }
.quote-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding: 72px 22px;
}
.quote-panel { padding: clamp(22px,4vw,38px); }
.form-header { margin-bottom: 22px; }
.form-header h2 { font-size: clamp(30px,4vw,42px); }
fieldset { padding: 22px; margin-bottom: 20px; }
legend { color: var(--accent); font-weight: 900; }
legend span {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
label { color: var(--accent); font-weight: 800; }
input, select, textarea {
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  background: #fff;
  color: #333;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(217,196,161,.55);
  border-color: var(--gold) !important;
}
.drop-zone {
  background: linear-gradient(135deg,#fff,#FFF8F3);
  color: var(--muted);
  border-style: dashed !important;
}
.drop-zone strong { color: var(--accent); }
.summary-sticky { top: 92px; }
.summary-panel { padding: 24px; align-self: start; }
.price-box {
  border-radius: 22px;
  background: linear-gradient(135deg,#F5EBDD,#FFF8F3);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}
.price-box strong { color: #d22f2f; font-size: 42px; }
.payment-grid { max-width: 1200px; margin: 0 auto; gap: 20px; }
.payment-card span { background: var(--accent); color: #fff; }
.payment-card.featured { border: 2px solid rgba(217,196,161,.7) !important; }
.payment-card dl div { border-bottom: 1px solid var(--line); }
.line-pay-row, .twqr-row { display: grid; gap: 12px; justify-items: center; }
.line-pay-qr, .payment-qr-large, .twqr-row img, .payment-card img {
  width: min(190px, 100%);
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
}
.payment-link { margin-top: 12px; }
.guide-section { background: #F5EBDD; }
.guide-card, .finish-card { border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(48,68,60,.08); }
.site-footer { background: var(--accent); color: #F8F5EF; }
.site-footer a, .site-footer p { color: #EDE2CF; }
.hidden { display: none !important; }
@media (max-width: 980px) {
  .iq-header.site-header { align-items: flex-start; flex-direction: column; }
  .iq-header .nav { gap: 10px; }
  .hero.hero-photo { min-height: auto; background: linear-gradient(135deg,#FFF8F3,#F5EBDD); }
  .quote-section { grid-template-columns: 1fr; padding: 48px 16px; }
  .summary-sticky { position: static; }
  .product-card img { height: auto; }
}
