/* ==========================================================================
   SECTIONS -- CSS for every block in templates/sections/. Organized to
   match those files 1:1. All values reference tokens.css variables; the
   only thing that should ever need brand-specific tweaking here is which
   variant sections you keep vs delete, not the values themselves.

   Section rhythm reminder (SKILL.md section 1/2): don't stack two sections
   of the same layout pattern back to back, alternate background tokens
   (surface/surface-alt/ink), and use at least 3 different rhythms per page.
   ========================================================================== */

/* Tighter than the old 100px: now that middle sections are all white (no grey
   band to justify the gap), 100+100=200px between modules read as empty. */
section { padding: 72px 0; }
@media (max-width: 760px) {
  section { padding: 52px 0; }
}

/* ---- Hero: full-bleed photography variant ---- */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  color: var(--surface);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 100%);
  z-index: -1;
}
.hero-inner { padding: 80px 0 88px; max-width: 780px; }
/* Hero title sits in the narrow (2fr) text column, so the global h1 clamp is
   too big here -- it wraps each designed line into several. Cap it smaller so
   the two-line headline reads as two clean lines. */
.hero-title { font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1.12; }
.hero-title em { font-style: italic; color: var(--accent-light); }
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.trust-line { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-muted); }
@media (max-width: 760px) {
  .hero { min-height: 600px; }
  .hero-inner { padding: 60px 0 64px; }
}

/* ---- Hero: data-card overlay variant (.hero--split) ---- */
.hero--split {
  min-height: 0;
  align-items: unset;
  display: block;
  padding: 64px 0 0;
  color: var(--ink);
  background:
    radial-gradient(760px 380px at 18% -4%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 68%),
    radial-gradient(620px 320px at 100% 0%, color-mix(in srgb, var(--secondary) 8%, transparent), transparent 62%),
    var(--surface);
  overflow: visible;
}
.hero-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: center; padding-bottom: 60px; }
.hero-sub { font-size: 1.14rem; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; margin: 34px 0 40px; flex-wrap: wrap; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.trust-item { font-weight: 700; font-size: 0.88rem; color: var(--accent-dark); }
.hl { color: var(--accent-dark); }
.hero-visual { position: relative; aspect-ratio: 5/4.6; }
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-card {
  position: absolute;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 20px 22px;
  max-width: 220px;
  z-index: 2;
}
.hero-card.card-a { top: 8%; left: -8%; }
.hero-card.card-b { bottom: 6%; right: -6%; }
.hero-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.hero-card span { font-size: 0.8rem; color: var(--muted); }
.hero-card.accent { background: var(--secondary, var(--accent)); }
.hero-card.accent strong, .hero-card.accent span { color: #fff; }
.hero--split .data-note { text-align: left; margin-top: 20px; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Below this breakpoint the overlapping-card layout is too fragile
     (percentage offsets against a variable-height box collapse under
     narrow widths) -- degrade to a plain static stack instead. */
  .hero-visual { position: static; display: flex; flex-direction: column; gap: 14px; max-width: 420px; margin: 30px auto 0; aspect-ratio: auto; }
  .hero-photo { position: static; width: 100%; height: auto; aspect-ratio: 4/3.1; }
  .hero-card { position: static; max-width: none; width: 100%; }
}

/* ---- Hero: work-stack variant (.hero--work) ---- */
.hero--work .hero-grid { align-items: center; grid-template-columns: 1.1fr 1fr; }
/* Hero figure: the abstract SVG "site + growth" illustration (replaces the
   old two-screenshot stack). Sits in the wider 3fr hero column; overflow is
   visible so the floating chips can extend past the artboard edges. */
.hero-figure { position: relative; width: 100%; }
.hero-figure svg { width: 100%; height: auto; display: block; overflow: visible; }
@media (max-width: 960px) { .hero-figure { max-width: 480px; margin: 8px auto 0; } }
.work-stack { position: relative; aspect-ratio: 5/4.6; }
.browser-card {
  position: absolute;
  width: 80%;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-card-hover);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}
.browser-card:hover, .browser-card:focus-visible { transform: translateY(-6px); z-index: 3; }
.browser-card img { width: 100%; height: auto; display: block; }
.browser-chrome { display: flex; gap: 6px; padding: 12px 16px; background: var(--surface-alt); }
.browser-chrome span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.card-a { top: 0; left: 0; z-index: 2; }
.card-b { top: 22%; right: 0; }
@media (max-width: 960px) {
  /* Same fragility as hero-split-cards.html's cards under narrow widths --
     percentage offsets against a variable-height box collapse and overlap.
     Degrade to a plain static stack instead. */
  .work-stack { position: static; display: flex; flex-direction: column; gap: 20px; aspect-ratio: auto; margin-top: 30px; }
  .browser-card { position: static; width: 100%; }
}

/* ---- Service grid: classic image-led (pillars) ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); margin-top: 56px; }
.pillar-card { background: var(--surface); position: relative; display: flex; flex-direction: column; transition: transform 0.35s ease; }
.pillar-card:hover { transform: translateY(-6px); z-index: 1; }
.pillar-media { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.pillar-card:hover .pillar-media img { transform: scale(1.05); }
.pillar-body { padding: 34px 32px 40px; flex: 1; display: flex; flex-direction: column; }
.pillar-body p { color: var(--muted); flex: 1; }
.pillar-link {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-dark); border-bottom: 1px solid var(--accent-dark); align-self: flex-start; padding-bottom: 2px;
}
@media (max-width: 1000px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ---- Service grid: bento/masonry ---- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 24px; margin-top: 40px; }
.bento .card.featured {
  grid-column: span 2; grid-row: span 2;
  display: flex; flex-direction: column; justify-content: space-between;
  border-color: var(--accent); box-shadow: var(--shadow-accent);
}
.bento .card.featured .card-icon { background: var(--accent); color: var(--on-accent); }
.bento .card { grid-column: span 2; }
@media (min-width: 961px) {
  .bento .card:nth-child(2), .bento .card:nth-child(3), .bento .card:nth-child(4), .bento .card:nth-child(5) { grid-column: span 1; }
}
.card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt); /* fallback for browsers without color-mix() */
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-dark); margin-top: 10px; font-size: 0.92rem; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card, .bento .card.featured { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }

/* ---- Stats band: full-bleed image + overlay ---- */
.stats-section { position: relative; color: var(--surface); overflow: hidden; }
.stats-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.9), rgba(0,0,0,0.75)); z-index: 1; }
.stats-section .wrap { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; margin-top: 40px; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4.2vw, 3.4rem); font-weight: 800; color: var(--accent); }
.stat-item:nth-child(even) .stat-num { color: var(--secondary, var(--accent)); }
.stat-label { color: var(--on-dark-muted); font-size: 0.95rem; }
.data-note { text-align: center; margin-top: 34px; font-size: 0.78rem; color: var(--on-dark-muted); font-style: italic; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Values grid: text-only, numbered ---- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); margin-top: 50px; }
.value-card { background: var(--surface); padding: 40px 28px; transition: transform 0.35s ease; position: relative; }
.value-card:hover { transform: translateY(-6px); z-index: 1; }
.value-num { font-family: var(--font-display); color: var(--accent); font-size: 1.2rem; margin-bottom: 0.6em; }
@media (max-width: 1000px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

/* ---- Asymmetric split: image + copy ---- */
.split { display: grid; grid-template-columns: 2fr 3fr; gap: 0; align-items: stretch; }
.split.reverse { grid-template-columns: 3fr 2fr; }
.split.reverse .split-media { order: 2; }
.split-media { overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px; }
@media (max-width: 1000px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media img { min-height: 320px; }
  .split.reverse .split-media { order: 0; }
  .split-copy { padding: 48px 32px; }
}

/* ---- Process: vertical connector timeline ---- */
.process-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; }
.section-head-left { max-width: 480px; }
.process-steps { display: flex; flex-direction: column; }
.step-row { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding-bottom: 40px; position: relative; }
.step-row:not(:last-child)::before { content: ""; position: absolute; left: 29px; top: 54px; bottom: 0; width: 2px; background: var(--line); }
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--surface-card); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
@media (max-width: 860px) { .process-layout { grid-template-columns: 1fr; gap: 30px; } }

/* ---- Process: horizontal scroll-snap cards ---- */
.process-scroll { display: flex; gap: 26px; overflow-x: auto; padding: 8px 0 20px; scroll-snap-type: x mandatory; margin-top: 40px; }
.process-scroll::-webkit-scrollbar { height: 5px; }
.process-scroll::-webkit-scrollbar-thumb { background: var(--line); }
.process-card {
  scroll-snap-align: start; min-width: 300px; flex: 0 0 300px;
  background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.process-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent); line-height: 1; margin-bottom: 0.4em; }
.process-card p { color: var(--muted); margin-bottom: 0; }

/* ---- Industry/location tag cloud ---- */
.industries-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: start; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.chip { padding: 11px 22px; border-radius: 999px; background: var(--surface-card); border: 1px solid var(--line); font-weight: 600; font-size: 0.92rem; transition: color 0.2s ease, border-color 0.2s ease; }
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }
@media (max-width: 860px) { .industries-layout { grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card { background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 38px 34px; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card .quote { font-style: italic; color: var(--ink); flex: 1; }
.testimonial-name { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0; }
.placeholder-flag {
  display: inline-block; margin-top: 30px; font-size: 0.76rem; color: var(--muted);
  border: 1px dashed var(--line); padding: 14px 20px; max-width: 640px;
}
@media (max-width: 1000px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---- FAQ accordion ---- */
.faq-wrap { max-width: 760px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 26px 4px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--ink);
}
.faq-q .plus { font-family: var(--font-body); font-size: 1.4rem; color: var(--accent-dark); transition: transform 0.25s ease; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-a { padding: 0 4px 26px; color: var(--muted); max-width: 62ch; }
@media (prefers-reduced-motion: reduce) { .faq-q .plus { transition: none; } }

/* ---- Final CTA: clean light banner with a faint indigo wash (no dark block) ---- */
.cta-banner {
  padding: 110px 0; text-align: center;
  background:
    radial-gradient(680px 340px at 50% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%),
    var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner h2 { color: var(--ink); }
.cta-banner .lede { color: var(--muted); margin-left: auto; margin-right: auto; }
.cta-banner-row { display: flex; justify-content: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }

/* ---- Final CTA: rounded card + full-bleed photo ---- */
.cta-photo { position: relative; text-align: center; padding: 100px 0; color: var(--surface); border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; }
.cta-photo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.9), rgba(0,0,0,0.75)); z-index: -1; }
.cta-photo-inner { max-width: 560px; margin: 0 auto; padding: 0 24px; }

/* ---- Pain-point comparison: two-column old-vs-new ---- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); margin-top: 56px; }
.compare-card { background: var(--surface); padding: 44px 40px; }
.compare-card h3 { margin-bottom: 1em; }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.compare-card li { position: relative; padding-left: 30px; color: var(--muted); }
/* Neutral semantic red for the "old way" ✕ marker only -- not a brand
   accent, used nowhere else, so it doesn't count as a second highlight
   colour under the "one accent, CTAs only" rule. */
.compare-old li::before { content: "\2715"; position: absolute; left: 0; top: 0; color: #a3453a; font-weight: 700; }
.compare-new li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent-dark); font-weight: 700; }
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---- Work/portfolio grid (reuses .browser-chrome from hero--work) ---- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 50px; }
.work-card { position: relative; background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.work-card:has(.pillar-link:hover), .work-card:has(.pillar-link:focus-visible) { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.work-media img { width: 100%; height: auto; display: block; }
.work-body { padding: 30px 32px 36px; }
.work-body p { color: var(--muted); }
/* Click-anywhere card: the visible link's own hitbox plus a full-card
   overlay via ::after, scoped to .work-card only (not global .pillar-link,
   which is also used for plain inline links elsewhere -- see ui-craft SOP 1
   "卡片" rule on expanding click area without div+onclick). */
.work-card .pillar-link { position: relative; z-index: 2; }
.work-card .pillar-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr; } }

/* ---- Pricing tiers ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; align-items: start; }
.pricing-card { position: relative; background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 40px; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
/* Setting color on the card itself (not just h3/p) matters: li/span have no
   global color rule of their own, so they'd otherwise inherit body's --ink
   straight through and go near-invisible on this dark card -- the same
   "global element rule beats dark-section inheritance" gotcha as .on-dark,
   just for elements a global rule DOESN'T cover instead of one that does. */
.pricing-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-accent); }
.pricing-badge {
  position: absolute; top: -14px; right: 32px;
  background: var(--accent); color: var(--surface);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.pricing-figure { display: flex; align-items: baseline; gap: 6px; margin-bottom: 0.2em; }
.pricing-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; }
.pricing-suffix { font-size: 0.9rem; color: var(--muted); }
.pricing-billing { font-size: 0.85rem; color: var(--muted); margin-top: -6px; margin-bottom: 1.4em; }
.pricing-features { list-style: none; margin: 6px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-features li { position: relative; padding-left: 26px; font-size: 0.92rem; }
.pricing-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
.pricing-card .btn { align-self: flex-start; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 0.85rem; color: var(--muted); font-style: italic; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---- Service pages (web design + digital-marketing offering) ---- */
.service-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 56px; align-items: start; }
.service-includes { margin-top: 24px; }
.service-includes li { font-size: 1rem; padding-left: 30px; margin-bottom: 8px; }
.service-aside { position: sticky; top: 104px; }

/* Service card grid: the flagship (web design) is a full-width feature card,
   the marketing services fill an even 4-across row below -- no orphan gap
   the way 5 equal cards (3 + 2) would leave. Wraps 2-up then 1-up. */
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { grid-column: span 1; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card-body { display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin: 4px 0 0; }
.service-card p { color: var(--muted); margin: 8px 0 0; font-size: 0.95rem; }
.service-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.service-price { font-weight: 600; color: var(--ink); }
/* Hero trust strip: honest reassurances under the CTAs (no fabricated stats). */
.trust-strip { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 34px 0 0; padding: 0; }
.trust-strip li { position: relative; padding-left: 24px; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.trust-strip li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
/* Related-services cross-sell cards (2-3 up). */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }

/* Performance-by-default tiles (build-standard Lighthouse targets). */
.perf-section .lede { max-width: 52em; }
.perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 44px 0 24px; }
.perf-tile { background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 28px 22px; text-align: center; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.perf-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.perf-score { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.perf-label { font-weight: 600; margin-top: 12px; }
.perf-note { font-size: 0.84rem; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.perf-foot { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: 4px; }
@media (max-width: 720px) { .perf-grid { grid-template-columns: repeat(2, 1fr); } }

/* Free-rebuild offer card (accent-tinted callout). */
.rescue-card { background: color-mix(in srgb, var(--accent) 7%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--surface)); border-radius: 20px; padding: 48px 44px; max-width: 860px; margin: 0 auto; }
.rescue-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; margin: 8px 0 26px; }
.rescue-points li { position: relative; padding-left: 24px; font-weight: 500; }
.rescue-points li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
@media (max-width: 640px) { .rescue-card { padding: 34px 26px; } }

/* Comparison links strip + comparison-page table. */
/* Merged comparison links (now inside the Why Switch section). */
.compare-switch { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); }
.compare-switch-lead { color: var(--muted); margin-bottom: 4px; }
.compare-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 22px; }
.compare-link { padding: 14px 24px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-card); box-shadow: var(--shadow-card); font-weight: 600; transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }
.compare-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); color: var(--accent-dark); }
.compare-table-wrap { overflow-x: auto; margin-top: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.compare-table th[scope="row"] { font-weight: 600; color: var(--muted); font-family: var(--font-body); font-size: 0.95rem; width: 24%; }
.compare-table .col-us { background: color-mix(in srgb, var(--accent) 6%, var(--surface)); font-weight: 500; }
.compare-table thead .col-us { color: var(--accent-dark); }
.compare-table .col-them { color: var(--muted); }
.compare-table .tick { color: var(--accent-dark); font-weight: 700; margin-right: 8px; }
.verdict { margin-top: 40px; padding: 30px 34px; background: var(--surface-alt); border: 1px solid var(--line); border-radius: 16px; }
.verdict p { font-size: 1.12rem; margin: 8px 0 0; color: var(--ink); }

/* Why-switch tabbed comparison (in-page, replaces the standalone /vs-* pages). */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.switch-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 40px 0 8px; }
.switch-tab {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 11px 24px; border-radius: 999px; cursor: pointer;
  background: var(--surface-card); border: 1px solid var(--line); color: var(--ink);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.switch-tab:hover { border-color: var(--accent); color: var(--accent-dark); }
.switch-tab.active { border-color: var(--accent); color: var(--on-accent); background: var(--accent); box-shadow: var(--shadow-accent); }
.switch-panel { margin-top: 30px; }
.switch-panel-h { text-align: center; max-width: 22ch; margin-left: auto; margin-right: auto; }
.switch-panel-intro { color: var(--muted); text-align: center; max-width: 62ch; margin: 0 auto 26px; }
/* Progressive enhancement: only hide inactive panels once JS runs; no-JS
   shows every comparison stacked. */
.js .switch-panel { display: none; }
.js .switch-panel.active { display: block; }
@media (prefers-reduced-motion: reduce) {
  .feature-card, .perf-tile, .switch-tab { transition: none; }
}

/* Service page: soft accent-tinted section ground (for the pillars grid). */
.bg-accent-soft { background: color-mix(in srgb, var(--accent) 5%, var(--surface)); }
/* Stat lead-in: a big cited figure + supporting line above the outcomes. */
.stat-lead { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.stat-figure { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.3rem, 4.6vw, 3.3rem); line-height: 0.95; color: var(--accent); }
.stat-text { flex: 1 1 320px; font-size: 1.15rem; color: var(--ink); margin: 0; max-width: 40em; }
.stat-source { color: var(--muted); font-size: 0.9rem; }
/* Generic feature/benefit card grid (outcomes, pillars). */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-card { background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 26px 24px; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
/* 3-up variant (applied when a feature grid has a multiple-of-3 item count,
   e.g. the 6-item SEO pillars) so rows stay balanced instead of an auto-fit
   4+2 split. */
.feature-grid--tri { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .feature-grid--tri { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid--tri { grid-template-columns: 1fr; } }
.feature-card h3 { font-size: 1.12rem; margin: 0 0 8px; }
.feature-card p { color: var(--muted); margin: 0; line-height: 1.55; }
/* Pain-point cards: a muted red marker distinguishes frustrations from the
   cobalt positive cards. */
.pain-card h3 { display: flex; align-items: baseline; gap: 9px; }
.pain-card h3::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #dd5236; flex: 0 0 auto; }
.service-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 48px; }
.service-card--wide .service-card-body { flex: 1; }
.service-card--wide .service-card-foot { flex-direction: column; align-items: flex-end; gap: 8px; margin-top: 0; padding-top: 0; border-top: none; white-space: nowrap; }
@media (max-width: 980px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { flex-direction: column; align-items: stretch; gap: 0; }
  .service-card--wide .service-card-foot { flex-direction: row; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
}
@media (max-width: 560px) { .service-cards { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .service-layout { grid-template-columns: 1fr; gap: 34px; }
  .service-aside { position: static; }
}

/* ---- Footer design-moment: giant ghost wordmark ---- */
.footer-ghost {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 15vw, 11.5rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-on-dark);
  margin: 40px 0 0;
  user-select: none;
  overflow: hidden;
}
@media (max-width: 760px) { .footer-ghost { font-size: clamp(2.6rem, 16vw, 5rem); } }

/* ---- Inner-page hero (about/pricing/services/service/get-started) ----
   Was a flat --surface-alt block that read as bland next to the home hero's
   gradient split. Now a soft twin-radial wash (same accent+secondary language
   as .hero--split) plus a low-key brand arc in the corner, so every inner
   banner feels designed and on-brand, not just a grey bar. */
.page-hero {
  padding: 76px 0 84px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(720px 360px at 8% -8%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 64%),
    radial-gradient(560px 320px at 98% 8%, color-mix(in srgb, var(--secondary) 14%, transparent), transparent 56%),
    var(--surface-alt);
}
/* Decorative brand growth-curve: an accelerating arc that RISES to the right
   and ends in a dot -- the logo's "only goes up" motif, expressing growth
   rather than a drooping ring. Inline SVG data-URI so it stays a single CSS
   change across every inner page. Purely decorative, non-interactive. */
.page-hero::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 0;
  width: min(44vw, 440px);
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20320%20300'%3E%3Cpath%20d='M16%20272%20C130%20264%20214%20220%20304%2038'%20fill='none'%20stroke='%230e68de'%20stroke-opacity='0.20'%20stroke-width='5'%20stroke-linecap='round'/%3E%3Ccircle%20cx='304'%20cy='38'%20r='9'%20fill='%230e68de'%20fill-opacity='0.22'/%3E%3C/svg%3E") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
}
.page-hero > .wrap { position: relative; z-index: 1; }
/* Match the homepage hero title size so every page's H1 reads consistently. */
.page-hero h1 { max-width: 20ch; font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1.12; }
@media (max-width: 760px) { .page-hero { padding: 56px 0 60px; } .page-hero::after { right: 12px; width: 60vw; height: 200px; } }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* ---- Legal pages (privacy / terms): constrained prose ---- */
.legal-body { max-width: 760px; }
.legal-body .legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.2em; }
.legal-body h2 { font-size: 1.4rem; margin: 1.7em 0 0.5em; }
.legal-body ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.legal-body li { margin-bottom: 0.55em; }
.legal-body a:not(.pillar-link) { color: var(--accent-dark); text-decoration: underline; }

/* ==========================================================================
   BLOG -- listing (/blog) + article (/blog/<slug>). Card style matches the
   rest of the site (white cards, soft shadow, hover lift, cobalt accents);
   no stock photos -- each card/article uses a tinted gradient "thumb" with a
   category tag instead. Data-driven from config.json "blog".
   ========================================================================== */
/* Category filter chips */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.blog-cat { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; padding: 9px 18px; border-radius: 999px; background: var(--surface-card); border: 1px solid var(--line); color: var(--ink); cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.blog-cat span { color: var(--muted); font-weight: 400; margin-left: 5px; }
.blog-cat:hover { border-color: var(--accent); color: var(--accent-dark); }
.blog-cat.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.blog-cat.active span { color: rgba(255, 255, 255, 0.82); }

/* Gradient thumb + category tag (stands in for a photo, on-brand) */
.blog-thumb { position: relative; min-height: 158px; background: linear-gradient(135deg, var(--accent-dark), var(--accent-light)); display: flex; align-items: flex-start; padding: 18px; }
.blog-thumb--lg { min-height: 100%; }
.blog-cat-tag { display: inline-block; background: rgba(255, 255, 255, 0.92); color: var(--accent-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.blog-meta { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* Featured post: thumb + copy, two-up */
.blog-featured { display: grid; grid-template-columns: 1.05fr 1fr; background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); margin-bottom: 44px; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.blog-featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.blog-featured-body { padding: 46px 46px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { margin: 8px 0 12px; }
.blog-featured-body p { color: var(--muted); margin-bottom: 0; }

/* Card grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.blog-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 1.18rem; margin: 0 0 10px; }
.blog-card-body p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }
.blog-card-body .blog-meta { margin-top: 16px; }
.blog-empty { text-align: center; color: var(--muted); margin-top: 24px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-featured { grid-template-columns: 1fr; } .blog-thumb--lg { min-height: 200px; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } .blog-featured-body { padding: 32px 26px; } }

/* Article hero image (optional per-post; sits between the title band and the
   body). Cards/heroes without an image fall back to the gradient thumb. */
.blog-hero-band { background: var(--surface); padding: 0 0 8px; }
.blog-hero-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-card); }
/* Article */
.blog-post-hero .blog-cat-tag { margin-bottom: 16px; }
.blog-post-hero .blog-meta { margin-top: 18px; }
.blog-body { max-width: 760px; }
.blog-body h2 { font-size: 1.55rem; margin: 1.7em 0 0.5em; }
.blog-body h3 { font-size: 1.2rem; margin: 1.5em 0 0.4em; }
.blog-body ul { margin: 0 0 1.4em; padding-left: 1.2em; }
.blog-body li { margin-bottom: 0.55em; }
.blog-body .compare-table-wrap { margin: 1.6em 0; }
.blog-callout { background: color-mix(in srgb, var(--accent) 7%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--surface)); border-radius: var(--radius-md); padding: 22px 28px; margin: 1.7em 0; }
.blog-callout p { margin: 0; font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.blog-cta { background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 36px; margin: 2.2em 0 0.5em; text-align: center; }
.blog-cta p { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin: 0 0 18px; }
@media (prefers-reduced-motion: reduce) { .blog-cat, .blog-card, .blog-featured { transition: none; } }

/* ---- 404 / state pages ---- */
.not-found-links { list-style: none; margin: 40px 0 0; padding: 0; display: flex; gap: 28px; flex-wrap: wrap; }
.not-found-links a { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); border-bottom: 1px solid var(--accent-dark); padding-bottom: 2px; }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 14px 16px;
  border: 1px solid var(--line); background: var(--surface-card); color: var(--ink);
  border-radius: var(--radius-sm);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row .optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }
/* Honeypot: visually hidden but NOT display:none/visibility:hidden (some
   spam bots skip those) -- off-screen instead, real users never encounter
   it via tab order either (tabindex="-1" on the input itself). */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Blur-validation error state (main.js toggles .has-error) -- red border
   plus explicit text, never colour alone (ui-craft SOP 4 rule). */
.form-row.has-error input, .form-row.has-error select, .form-row.has-error textarea { border-color: #a3453a; }
.field-error { display: block; min-height: 1.1em; font-size: 0.78rem; color: #a3453a; margin-top: 2px; }
.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; }
.map-placeholder {
  aspect-ratio: 4/3; background: var(--surface-alt); border: 1px dashed var(--muted);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted); font-size: 0.85rem; padding: 30px; border-radius: var(--radius-md);
}
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Brief form: 4-step project-brief wizard (sections/brief-form.html) ----
   Reuses .form-row/.field-error/.has-error from the contact-form block above.
   Progressive enhancement contract: steps and [data-cond] blocks are ONLY
   hidden under the .js gate (same architecture as the motion rules in
   base.css) -- a no-JS visitor gets one long, fully visible form. */
.brief-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 38px;
}
@media (max-width: 640px) { .brief-card { padding: 28px 22px; } }
.brief-stepnum { font-size: 0.8rem; color: var(--muted); margin: 0 0 10px; }
.brief-progress { display: flex; gap: 5px; margin-bottom: 28px; }
.brief-progress span { flex: 1; height: 4px; border-radius: 2px; background: var(--line); }
.brief-progress span.done { background: var(--accent); }
.brief-step-title { margin-bottom: 0.9em; }
.js .brief-step { display: none; }
.js .brief-step.active { display: block; }
.js .brief-card [data-cond] { display: none; }
.js .brief-card [data-cond].show { display: block; }
/* Radio groups as selectable chips. The real <input type="radio"> stays in
   the tree (keyboard/AT/no-JS all keep working) but is visually hidden;
   :has() paints the selected/focused state on the label. */
.brief-card fieldset { border: 0; padding: 0; margin: 0 0 20px; }
.brief-card legend {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 0; margin-bottom: 10px;
}
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-choice {
  position: relative; display: inline-flex; align-items: center;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface-card); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.chip-choice input { position: absolute; opacity: 0; pointer-events: none; }
.chip-choice:hover { border-color: var(--accent); }
.chip-choice:has(input:checked) {
  border-color: var(--accent); color: var(--accent-dark);
  box-shadow: 0 0 0 1px var(--accent);
}
.chip-choice:has(input:focus-visible) { outline: 2px solid var(--accent-dark); outline-offset: 3px; }
.brief-hint {
  font-size: 0.9rem; color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--surface));
  border-radius: var(--radius-sm); padding: 12px 16px; margin: 0 0 20px;
}
.brief-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
}
.brief-nav .btn:only-child, .brief-nav [data-brief-submit]:not([hidden]) { margin-left: auto; }
.brief-fallback { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.brief-fallback textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.88rem;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-alt); color: var(--ink); resize: vertical;
}
/* Embedded on a service page: cap width so the card doesn't sprawl. */
.brief-embed { max-width: 760px; margin: 44px auto 0; }

/* ---- Get-started goal chooser: website brief vs SEO report ----
   Same .js progressive-enhancement gate as the brief-form steps: panels
   only ever hide when JS is running; no-JS renders both forms stacked,
   each led by its .goal-panel-title heading. Chips reuse .chip-choice. */
.goal-chooser { border: 0; padding: 0; margin: 0; }
.goal-chooser legend {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 0; margin-bottom: 12px;
}
.goal-chooser .chip-choice { font-size: 1rem; padding: 13px 26px; }
.js [data-goal-panel] { display: none; }
.js [data-goal-panel].show { display: block; }
.goal-panel-title { font-size: 1.5rem; margin-bottom: 0.8em; }

/* Get-started sidebar illustration cards (the two "images" -- self-drawn SVG,
   one per path: new website / SEO report). All fills use tokens so they stay
   on-palette in any theme; overflow visible so floating badges can spill. */
.gs-figure {
  background: var(--surface-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 22px 22px 20px; margin: 0 0 22px;
}
.gs-figure svg { width: 100%; height: auto; display: block; overflow: visible; }
.gs-figure figcaption { margin-top: 16px; }
.gs-figure figcaption strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-bottom: 3px; }
.gs-figure figcaption span { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* ---- SEO report request (#audit on /seo): report contents + form ---- */
.audit-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; margin-top: 44px; }
.report-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.report-list li { position: relative; padding-left: 32px; }
.report-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: var(--accent-dark); font-weight: 700; font-size: 1.05rem; }
.report-list strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.report-list span { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }
@media (max-width: 900px) { .audit-layout { grid-template-columns: 1fr; gap: 34px; } }
