/* answers.css — GEO answer pages.
   Layered on top of service-pages.css: these pages are written to be READ BY
   ANSWER ENGINES first (direct answer up top, scannable criteria, real FAQ),
   so the styling stays deliberately quiet and legible rather than decorative. */

.answer-hero { padding: clamp(96px, 14vh, 168px) 0 clamp(40px, 6vh, 72px); }
.answer-hero .eyebrow { margin-bottom: 18px; }
.answer-hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 20ch;
}

/* The direct answer. This is the block an answer engine is most likely to
   lift verbatim, so it is first in the DOM and visually unmistakable. */
.answer-direct {
  border-left: 4px solid var(--accent, #2dd4bf);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 0 0 40px;
  max-width: 68ch;
}
.answer-direct p { font-size: clamp(1.05rem, 1.9vw, 1.3rem); line-height: 1.55; margin: 0; }
.answer-direct p + p { margin-top: 14px; }
.answer-direct strong { color: var(--accent, #2dd4bf); }

.answer-body { max-width: 72ch; }
.answer-body h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  margin: 56px 0 16px;
}
.answer-body h3 { font-size: clamp(1.05rem, 1.9vw, 1.25rem); margin: 32px 0 10px; }
.answer-body p, .answer-body li { font-size: 1.02rem; line-height: 1.7; opacity: .92; }
.answer-body ul, .answer-body ol { padding-left: 1.25em; margin: 14px 0; }
.answer-body li { margin: 8px 0; }
.answer-body li strong { opacity: 1; }

/* Criteria checklist — the "how to choose" pattern answer engines love to cite */
.criteria { list-style: none; padding: 0; margin: 20px 0; }
.criteria li {
  position: relative; padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.criteria li::before {
  content: "→"; position: absolute; left: 0; top: 14px;
  color: var(--accent, #2dd4bf); font-weight: 700;
}
.criteria li:last-child { border-bottom: 0; }

.answer-table-wrap {
  overflow-x: auto; margin: 22px 0;
  /* 右侧渐变提示「还能往右滑」。真机是覆盖式滚动条,不滑不出现,
     用户根本不知道表格有更多列 —— 而这是投放广告的落地页,
     「What it covers」那一整列在 375 宽下全在屏幕外。
     background-attachment:local 的经典写法:滑到最右端时渐变自动消失。 */
  background:
    linear-gradient(to right, var(--bg, #050509) 30%, rgba(5,5,9,0)) left center / 32px 100% no-repeat local,
    linear-gradient(to left,  var(--bg, #050509) 30%, rgba(5,5,9,0)) right center / 32px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(184,255,24,.28), rgba(184,255,24,0)) left center / 14px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(184,255,24,.28), rgba(184,255,24,0)) right center / 14px 100% no-repeat scroll;
}
.answer-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.answer-table th, .answer-table td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: .96rem;
}
.answer-table th { opacity: .6; font-weight: 600; }

.faq-list { margin: 24px 0 0; }
.faq-item { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.faq-item h3 { margin: 0 0 10px; font-size: 1.06rem; line-height: 1.35; }
.faq-item p { margin: 0; opacity: .88; }

.answer-cta {
  margin-top: 64px; padding: 32px; border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
}
.answer-cta h2 { margin: 0 0 10px; font-size: clamp(1.3rem, 2.6vw, 1.9rem); }
.answer-cta p { margin: 0 0 20px; opacity: .9; }
.answer-cta .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.answer-related { margin-top: 56px; }
.answer-related ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.answer-related a { text-decoration: none; opacity: .9; }
.answer-related a:hover { opacity: 1; text-decoration: underline; }

/* ───────────────────────────────────────────────────────────────
   Enhanced layout for app-dev answer page. Adds visual rhythm and
   scannable structure WITHOUT removing any of the text an answer
   engine reads — every block is still real, selectable copy.
   ─────────────────────────────────────────────────────────────── */

/* Pull the reading measure in from the very wide global shell and centre it,
   so the page no longer sits pinned to the left with a dead right half. */
body[data-page="answers"] .page-shell { width: min(1080px, calc(100vw - 44px)); }
.answer-hero h1 { font-family: var(--display, "Anton", sans-serif); font-weight: 400; text-transform: uppercase; letter-spacing: -0.015em; line-height: .92; font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; }

/* Two-column body: reading column + sticky rail that uses the old dead space */
.answer-layout { display: grid; grid-template-columns: minmax(0, 1fr) 244px; gap: 58px; align-items: start; }
.answer-layout .answer-body { max-width: none; min-width: 0; }
/* the comparison table is the one wide child; keep it scrolling INSIDE the
   column instead of forcing the whole reading column past the viewport */
.answer-body .answer-table-wrap { max-width: 100%; }
.answer-body .tech-grid, .answer-body .case-note { min-width: 0; }
.answer-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.answer-toc__label { margin: 0 0 12px; font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #8a8994; }
.answer-toc__nav { display: flex; flex-direction: column; }
.answer-toc__nav a {
  display: flex; gap: 11px; align-items: baseline; padding: 8px 0 8px 13px;
  border-left: 2px solid var(--line, #292932); color: #b0afba;
  text-decoration: none; font-size: .9rem; line-height: 1.3;
  transition: color .15s ease, border-color .15s ease;
}
.answer-toc__nav a:hover { color: var(--ink, #f7f7f4); border-left-color: var(--cyan, #17c9f1); }
.answer-toc__nav a i { font-family: var(--display, "Anton"); font-style: normal; font-size: .82rem; color: #797883; }
.answer-toc__cta { padding: 20px; border: 1px solid var(--line, #292932); border-radius: 16px; background: rgba(184, 255, 24, .045); }
.answer-toc__cta p { margin: 0 0 14px; font-size: .9rem; line-height: 1.5; opacity: .92; }
.answer-toc__cta .btn { width: 100%; justify-content: center; }
.answer-toc__meta { font-size: .78rem; line-height: 1.6; color: #8a8994; }
.answer-toc__meta a { color: #b0afba; text-decoration: none; }
.answer-toc__meta a:hover { color: var(--cyan, #17c9f1); }

@media (max-width: 960px) {
  .answer-layout { grid-template-columns: 1fr; gap: 0; }
  .answer-toc { display: none; }
}

/* Section wrapper + numbered eyebrow */
.sec { margin: 60px 0 0; scroll-margin-top: 90px; }
.sec:first-of-type { margin-top: 8px; }
.sec-eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0 0 14px;
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #9a99a6;
}
.sec-eyebrow b {
  font-family: var(--display, "Anton", sans-serif); font-weight: 400;
  font-size: 1.05rem; letter-spacing: .02em; line-height: 1;
  color: var(--sec, #17c9f1);
  padding: 4px 8px; background: color-mix(in srgb, var(--sec, #17c9f1) 14%, transparent);
  border-radius: 6px;
}
.sec--cyan   { --sec: #17c9f1; } .sec--purple { --sec: #9638f4; }
.sec--pink   { --sec: #f22b9b; } .sec--lime   { --sec: #b8ff18; }
.answer-body .sec h2 { margin-top: 0; }
.answer-body .sec h2 mark { background: transparent; color: var(--sec, #17c9f1); }
.answer-aside {
  margin: 16px 0 0; padding-left: 14px;
  border-left: 2px solid color-mix(in srgb, var(--sec, #17c9f1) 55%, transparent);
  color: #b7b6c0; font-style: italic;
}

/* "What building involves" → icon cards instead of a bullet wall */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin: 22px 0 0; }
.tech-card {
  padding: 17px 18px; border: 1px solid var(--line, #292932);
  border-left: 3px solid var(--sec, #17c9f1); border-radius: 13px;
  background: rgba(255, 255, 255, .022);
}
.tech-card iconify-icon { color: var(--sec, #17c9f1); font-size: 1.45rem; }
.tech-card b { display: block; margin: 9px 0 4px; font-size: 1rem; opacity: 1; }
.tech-card span { font-size: .9rem; line-height: 1.55; opacity: .78; }

/* Comparison table accents */
.answer-table.cmp th:first-child, .answer-table.cmp td:first-child { color: #cfcfd6; font-weight: 600; }
.answer-table.cmp thead th { color: var(--ink, #f7f7f4); opacity: 1; font-family: var(--display, "Anton"); font-weight: 400; letter-spacing: .02em; font-size: 1.05rem; text-transform: uppercase; }
.answer-table.cmp .col-yes { color: var(--lime, #b8ff18); }
.answer-table.cmp .col-no  { color: #ff7b6b; }

/* Live-example / case-study callout */
.case-note {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0; margin: 24px 0 0; border: 1px solid var(--line, #292932);
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(150deg, rgba(184,255,24,.05), rgba(255,255,255,.015) 46%);
}
.case-note__img { position: relative; min-height: 220px; background: #08080c; }
.case-note__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-note__body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
.case-badge {
  align-self: flex-start; margin-bottom: 12px; padding: 5px 11px;
  border-radius: 999px; background: var(--lime, #b8ff18); color: #050509;
  font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.case-note__body p { margin: 0; font-size: 1rem; line-height: 1.62; opacity: .92; }
.case-stats { display: flex; gap: 26px; margin-top: 20px; flex-wrap: wrap; }
.case-stats div { display: flex; flex-direction: column; }
.case-stats b { font-family: var(--display, "Anton"); font-weight: 400; font-size: 2rem; line-height: 1; color: var(--lime, #b8ff18); }
.case-stats span { margin-top: 5px; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }

/* Tech-stack chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px;
  border: 1px solid var(--line, #292932); border-radius: 999px;
  background: rgba(255, 255, 255, .025); font-size: .84rem; opacity: .95;
}
.chip iconify-icon { color: var(--sec, #17c9f1); font-size: 1.05rem; }

@media (max-width: 768px) {
  .answer-direct { padding: 18px 20px; }
  .answer-body h2 { margin-top: 42px; }
  .sec { margin-top: 48px; }
  .tech-grid { grid-template-columns: 1fr; }
  .case-note { grid-template-columns: 1fr; }
  .case-note__img { min-height: 190px; }
  .case-note__body { padding: 22px 20px; }
  .case-stats { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   2026-08-12 — these pages are now PAID LANDING PAGES as well as organic ones.
   Google Ads was pointing sixteen keywords across five intents at a single
   page, which scored 1/10 on quality; the campaign is being split so each ad
   group lands on the answer page that actually answers its question. That means
   a paid click has to be able to convert HERE, not after a hop to /start-project.
   ═════════════════════════════════════════════════════════════════════════ */

/* ---- .btn was never styled -------------------------------------------------
   Every answer page already markup'd its CTAs as <a class="btn btn--primary">,
   but no stylesheet on the public site defines .btn at all (only the private
   admin console does, and that is a different page). With the global
   `a{color:inherit;text-decoration:none}` rule, "Start a project" rendered as
   plain body text with no background, no border and no padding — measured on
   the live page: background rgba(0,0,0,0), border 0px none, padding 0px.
   Scoped to the answers layout so the blast radius is these pages only. */
body[data-page="answers"] .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 22px; border: 1px solid var(--line, #292932); border-radius: 999px;
  background: rgba(255, 255, 255, .03); color: var(--ink, #f7f7f4);
  font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  line-height: 1; text-decoration: none; cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body[data-page="answers"] .btn:hover { border-color: var(--cyan, #17c9f1); transform: translateY(-1px); }
body[data-page="answers"] .btn--primary {
  background: var(--lime, #b8ff18); border-color: var(--lime, #b8ff18); color: #050509;
}
body[data-page="answers"] .btn--primary:hover {
  border-color: var(--lime, #b8ff18); box-shadow: 0 10px 26px rgba(184, 255, 24, .22);
}

/* ---- hero jump link --------------------------------------------------------
   Deliberately OUTSIDE .answer-direct: that block is named in the page's
   speakable cssSelector and is the chunk an answer engine lifts verbatim, so
   nothing gets added inside it. This sits after it — one line, so the h1 and the
   direct answer keep the whole top of the page — and gives paid traffic a
   one-click path to the form without moving the form up. */
.answer-jump {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: -22px 0 40px;
}
.answer-jump a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--lime, #b8ff18) 45%, transparent);
  background: rgba(184, 255, 24, .07); color: var(--lime, #b8ff18);
  font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.answer-jump a:hover { background: rgba(184, 255, 24, .13); border-color: var(--lime, #b8ff18); transform: translateY(-1px); }

/* ---- the promise, promoted ------------------------------------------------
   "Free first concept before any deposit — we reply within 24h." was set at
   .88rem / #9a99a6, i.e. quieter than the body copy directly above it. It is
   the single most concrete thing this site offers a stranger (no deposit to
   see work, a bounded reply window), and it was reading as a footnote to the
   button. Now it sits at body size, in near-full-contrast ink, with a lime
   status dot as the visual anchor so the eye lands on it after the CTA.
   Copy unchanged — this is presentation only. */
.answer-jump span {
  display: inline-flex; align-items: center; gap: 10px;
  /* 1.08rem lands it just above body copy (1.02rem) and just under the direct
     answer (clamps to 1.3rem) — high enough in the hierarchy to be read, not
     so high it competes with the answer the page exists to give. */
  font-size: 1.08rem; font-weight: 600; line-height: 1.4;
  color: #e9e8ef;
}
.answer-jump span::before {
  content: ""; flex: 0 0 auto;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime, #b8ff18);
  box-shadow: 0 0 0 4px rgba(184, 255, 24, .16);
}

/* ---- first-screen evidence strip ------------------------------------------
   The four non-app answer pages opened with eyebrow + h1 + answer box + one
   small button and nothing else — no image, no number, no reason to believe
   anything. This strip is the cheapest honest fix: three things a reader can
   verify by clicking, not claims about clients.

   EVERY value here has a source on this site, and it stays that way:
     35  → /work renders "01—35" and 35 case-*.html pages exist. Labelled
           "concept builds" because /work labels them that itself ("Concept
           work. Real methods… the brands and figures are not client data").
           They are NOT client references and must never be worded as such.
     29  → the gg-toolkit worker on googogogo.com/tools/*, counted in
           wrangler.toml and functions/api/admin/estate.js.
     $299 → the same figure already printed in this page's own budget hint
           and on /shopify-cod-funnel-tracking.
   No logos, no testimonials, no success rates, no "trusted by N brands".
   If a number here cannot be opened and counted, it does not belong here. */
.answer-proof {
  display: flex; flex-wrap: wrap; gap: 11px;
  margin: 0; padding: 0; list-style: none;
}
/* tighten the gap only when the strip actually follows the CTA row */
.answer-jump:has(+ .answer-proof) { margin-bottom: 20px; }
.answer-proof li {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin: 0; padding: 11px 17px;
  border: 1px solid var(--line, #292932); border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.answer-proof li:has(a):hover {
  border-color: color-mix(in srgb, var(--lime, #b8ff18) 55%, transparent);
  background: rgba(184, 255, 24, .06);
  transform: translateY(-1px);
}
.answer-proof a {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: inherit; text-decoration: none;
}
.answer-proof a:focus-visible { outline: 2px solid var(--cyan, #17c9f1); outline-offset: 4px; border-radius: 999px; }
.answer-proof b {
  font-family: var(--display, "Anton"), sans-serif; font-weight: 400;
  font-size: 1.45rem; line-height: 1; letter-spacing: .01em;
  color: var(--lime, #b8ff18);
}
.answer-proof span {
  font-size: .77rem; line-height: 1.3; letter-spacing: .07em;
  text-transform: uppercase; color: #a9a8b4;
}

/* ---- bare <h2> anchors -----------------------------------------------------
   The app page numbers its sections inside .sec wrappers, which carry
   scroll-margin-top. These four pages use bare <h2>s, so jumping from the
   sidebar rail would park the heading under the fixed nav without this. */
.answer-body > h2[id] { scroll-margin-top: 96px; }

/* ---- the lead form itself --------------------------------------------------
   Same five fields, same POST /api/contact and the same gg:form_submit
   conversion event as #landing-form on /hire-a-shopify-studio. */
.answer-form {
  margin: 76px 0 0; scroll-margin-top: 96px;
  border: 1px solid var(--line, #292932); border-radius: 20px;
  background:
    radial-gradient(circle at 92% 4%, rgba(23, 201, 241, .10), transparent 46%),
    linear-gradient(155deg, rgba(184, 255, 24, .055), rgba(255, 255, 255, .018) 54%);
}
.answer-form__panel { padding: 32px 34px 30px; }
.answer-form__pin {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding: 6px 13px; border-radius: 999px;
  background: var(--lime, #b8ff18); color: #050509;
  font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.answer-body .answer-form h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.answer-form__sub { margin: 0 0 22px; font-size: .96rem; opacity: .82; }

.answer-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.af-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.af-field--full { grid-column: 1 / -1; }
.af-field > span {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #9a99a6;
}
.af-field input, .af-field select, .af-field textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid #34343e; border-radius: 12px;
  background: #0b0b12; color: var(--ink, #f7f7f4);
  font-family: inherit; font-size: .95rem; line-height: 1.45; outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.af-field textarea { resize: vertical; min-height: 96px; }
.af-field select {
  appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #9a99a6 50%), linear-gradient(135deg, #9a99a6 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.af-field select option { background: #0b0b12; color: var(--ink, #f7f7f4); }
.af-field input:focus, .af-field select:focus, .af-field textarea:focus {
  border-color: var(--cyan, #17c9f1); box-shadow: 0 0 0 3px rgba(23, 201, 241, .16);
}
.af-field [aria-invalid="true"] { border-color: #ff7b6b; }
.af-field input::placeholder, .af-field textarea::placeholder { color: #6b6a76; }
.af-hint { margin: 2px 0 0; font-size: .78rem; line-height: 1.5; color: #8a8994; }

.answer-form__error { margin: 14px 0 0; font-size: .86rem; color: #ff9db5; }
.af-send {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; padding: 16px 26px; border: 0; border-radius: 999px;
  background: var(--lime, #b8ff18); color: #050509;
  font-family: inherit; font-size: .8rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; line-height: 1; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.af-send:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(184, 255, 24, .24); }
.af-send:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.answer-form__note {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 16px 0 0; font-size: .8rem; line-height: 1.55; color: #8a8994;
}
.answer-form__note iconify-icon { color: var(--lime, #b8ff18); font-size: 1rem; flex: 0 0 auto; margin-top: 1px; }

.answer-form__success > iconify-icon { color: var(--lime, #b8ff18); font-size: 2.2rem; }
.answer-form__done {
  margin: 12px 0 10px; font-family: var(--display, "Anton", sans-serif); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1; text-transform: uppercase;
}
.answer-form__success p { margin: 0 0 10px; }
.answer-form__meta { font-size: .86rem; color: #8a8994; }
.answer-form__meta a { color: var(--cyan, #17c9f1); }

/* Phone: the strip becomes full-width rows rather than pills that wrap into
   ragged orphans. 375px cannot fit "concept builds you can open" beside a
   number on one line, and letting it overflow the shell is not an option. */
@media (max-width: 749px) {
  .answer-jump span { font-size: .98rem; }
  .answer-proof { gap: 8px; }
  .answer-proof li { width: 100%; padding: 10px 15px; }
  .answer-proof a { width: 100%; }
  .answer-proof b { font-size: 1.18rem; }
  .answer-proof span { font-size: .72rem; letter-spacing: .05em; }
}

@media (max-width: 768px) {
  .answer-jump { margin: -14px 0 30px; }
  .answer-jump:has(+ .answer-proof) { margin-bottom: 16px; }
  .answer-form { margin-top: 54px; }
  .answer-form__panel { padding: 24px 20px 22px; }
  .answer-form__grid { grid-template-columns: 1fr; }
  /* anything under 16px makes iOS Safari zoom the whole page on focus and never
     zoom back out — same reason popup.js pins its input to 16px */
  .af-field input, .af-field select, .af-field textarea { font-size: 16px; }
  .af-send { width: 100%; }
}

/* ---------------------------------------------------------------------------
   Hero 右侧视觉。
   之前 hero 只有文字,1470px 宽的屏上右边空掉约 550px(实测),看着像页面没做完。
   照服务页 .page-hero 那套两栏走,但答案页 hero 内容更多(标签+大标题+答案框+
   CTA+证据带),所以文字列给得更宽:1.25fr / 0.75fr。
   图是纯装饰:aria-hidden + alt="" + pointer-events:none,不进无障碍树、不挡按钮。
   ≤960px 直接不渲染 —— 手机上它只会把正文挤下去,缩小也没意义。
--------------------------------------------------------------------------- */
.answer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.answer-hero__copy { min-width: 0; }
.answer-hero__art {
  min-width: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  user-select: none;
}
.answer-hero__img {
  width: min(420px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .55));
}
@media (prefers-reduced-motion: no-preference) {
  .answer-hero__img { animation: answerHeroFloat 7s ease-in-out infinite; }
  @keyframes answerHeroFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-12px) rotate(1deg); }
  }
}
@media (max-width: 960px) {
  .answer-hero { display: block; }
  .answer-hero__art { display: none; }
}

/* 2026-09-05 平板/手机:hero 顶部留白。clamp(96px,14vh,168px) 是给桌面首屏排的,
   900 高的 iPad 和手机上是导航下面 126px 的空带,眉题一整段之后才出现。
   ≤1200 收到 6vh(900 高 = 54px);桌面 ≥1201 不在本块里。 */
@media (max-width:1200px){
  .answer-hero{padding-top:clamp(40px,6vh,72px)}
}
