/* roulang page: index */
:root {
    --brand: #E26044;
    --brand-dark: #C2432E;
    --brand-light: #F9E3D8;
    --accent: #F0AD45;
    --accent-light: #FBE6C6;
    --bg: #FFF8F0;
    --card: #FFFFFF;
    --dark: #2C201C;
    --dark-soft: #3D2E29;
    --text: #3B2B27;
    --muted: #9C8580;
    --border: #F1E2D8;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-soft: 0 14px 34px rgba(226, 96, 68, 0.08);
    --shadow-hover: 0 20px 42px rgba(226, 96, 68, 0.14);
    --section-space: clamp(64px, 8vw, 112px);
    --content: 1200px;
    --font-cn: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-cn);
    font-size: 16px;
    line-height: 1.75;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4, p, ul, ol, figure, dl, dd { margin: 0; }
  ul, ol { padding: 0; list-style: none; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input { font-family: inherit; border: 0; background: none; }
  button { cursor: pointer; }
  :focus-visible { outline: 3px solid rgba(226, 96, 68, .45); outline-offset: 3px; border-radius: 8px; }

  .container-guide {
    max-width: var(--content);
    margin-inline: auto;
    padding-inline: 24px;
  }
  @media (max-width:640px) {
    .container-guide { padding-inline: 16px; }
  }

  .section { padding-block: var(--section-space); }
  .section.is-light { background: #fffdf9; }
  .section.is-cream { background: #FAF0E8; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--brand-dark);
    background: var(--brand-light);
    border: 1px solid #F5CABB;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
  }
  .section-title {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .01em;
    margin-top: 14px;
    color: var(--dark);
  }
  .section-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 740px;
    margin-top: 14px;
    line-height: 1.9;
  }
  .section-head { margin-bottom: 40px; }

  @media (max-width:640px) {
    .section-title { font-size: 26px; }
    .section-desc { font-size: 16px; }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 0 22px;
    height: 48px;
    border-radius: var(--radius-pill);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(226,96,68,.22);
  }
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(226,96,68,.28);
    color: #fff;
  }
  .btn-primary:active { transform: translateY(0); background: #B23A28; }
  .btn-ghost {
    border: 1px solid #E6CDBE;
    background: rgba(255,255,255,.76);
    color: var(--dark-soft);
  }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: #fff; transform: translateY(-2px); }
  .btn-ghost:active { transform: translateY(0); }
  .btn-accent { background: var(--accent); color: #33210D; box-shadow: 0 10px 20px rgba(240,173,69,.2); }
  .btn-accent:hover { background: #E49D2F; transform: translateY(-2px); }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid var(--border);
    color: #725B55;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }
  .tag-accent { background: var(--accent-light); border-color: #F3D38B; color: #8A5B13; }
  .tag-brand { background: var(--brand-light); border-color: #F3C2B3; color: var(--brand-dark); font-weight: 700; }

  .card-base {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .card-base:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: #E6C4B8; }

  /* dock */
  .dock-wrap {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: 14px 20px 0;
    pointer-events: none;
  }
  .dock {
    pointer-events: auto;
    max-width: 1120px;
    width: 100%;
    background: rgba(255, 250, 244, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(240, 220, 208, .9);
    box-shadow: 0 14px 40px rgba(87, 55, 42, .10);
    border-radius: var(--radius-pill);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .dock-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: .02em;
    color: var(--dark);
    padding: 0 6px;
    min-width: 0;
  }
  .dock-logo:active { opacity: .7; }
  .dock-logo-mark {
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), #EF8B6B);
    color: #fff;
    box-shadow: 0 6px 14px rgba(226, 96, 68, .26);
  }
  .dock-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline: auto;
  }
  .dock-link {
    font-size: 15px;
    font-weight: 600;
    color: #6C5650;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color .18s ease, background .18s ease;
  }
  .dock-link:hover { color: var(--brand-dark); background: #fff7F2; }
  .dock-link.active { color: var(--brand-dark); background: var(--brand-light); }
  .dock-actions { display: flex; align-items: center; gap: 8px; }
  .dock-icon-btn {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: #5F4A45;
    transition: background .2s ease, color .2s ease;
  }
  .dock-icon-btn:hover { background: var(--brand-light); color: var(--brand-dark); }
  .dock-cta {
    height: 40px;
    padding-inline: 18px;
    font-size: 14px;
    border-radius: var(--radius-pill);
  }
  .dock-burger { display: none; }
  .dock-mobile { display: none; }

  @media (max-width: 860px) {
    .dock-nav, .dock-actions .dock-cta, .dock-icon-search { display: none; }
    .dock-burger { display: inline-flex; }
    .dock-mobile {
      display: block;
      position: absolute;
      top: calc(100% + 8px);
      left: 12px;
      right: 12px;
      background: rgba(255,252,246,.92);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      padding: 10px;
      opacity: 0;
      transform: translateY(-6px);
      visibility: hidden;
      transition: .2s ease;
    }
    .dock-mobile.open { opacity: 1; transform: translateY(0); visibility: visible; }
    .dock-mobile .dock-link { display: block; padding: 12px 14px; }
  }
  @media (max-width: 640px) {
    .dock-wrap { padding-inline: 10px; }
    .dock { border-radius: 20px; }
    .dock-logo { font-size: 16px; }
    .dock-logo-mark { width: 30px; height: 30px; border-radius: 10px; }
  }

  /* hero */
  .hero {
    position: relative;
    margin-top: 88px;
    border-radius: calc(var(--radius-lg) + 6px);
    overflow: hidden;
    background-image: linear-gradient(100deg, rgba(255,248,240,.98) 8%, rgba(255,248,240,.92) 45%, rgba(255,240,226,.62) 74%, rgba(255,238,224,.5) 100%), url('/assets/images/backpic/back-1.jpg');
    background-size: cover;
    background-position: center 32%;
    border: 1px solid #F4E0D2;
    box-shadow: var(--shadow-soft);
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .88fr);
    gap: 40px;
    align-items: center;
    padding: clamp(36px, 5vw, 80px) clamp(18px, 4vw, 72px);
    position: relative;
  }
  .hero-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.86);
    border: 1px solid #F1D9CD;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 18px rgba(226,96,68,.08);
  }
  .hero-badge-text { font-size: 13px; font-weight: 600; color: #7B463A; }
  .hero-title {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.22;
    font-weight: 800;
    color: var(--dark);
    margin-top: 22px;
    letter-spacing: -.01em;
  }
  .hero-title .cr { color: var(--brand); }
  .hero-sub {
    color: #6E554E;
    max-width: 530px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .hero-kpi {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(196, 150, 130, .22);
    padding-top: 22px;
    max-width: 560px;
  }
  .hero-kpi-item { padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(196, 150, 130, .22); }
  .hero-kpi-item:last-child { border-right: 0; padding-right: 0; margin-right: 0; }
  .hero-kpi-num { font-size: 22px; font-weight: 800; color: var(--brand-dark); }
  .hero-kpi-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

  .hero-visual {
    position: relative;
    isolation: isolate;
    max-width: 440px;
    justify-self: end;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 30px 20px -18px -14px;
    border-radius: 220px 220px 18px 18px;
    background: linear-gradient(160deg, rgba(226,96,68,.18), rgba(240,173,69,.08));
    transform: rotate(-2deg);
    z-index: -1;
  }
  .hero-visual .cover-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
    border: 7px solid rgba(255,255,255,.78);
    box-shadow: 0 26px 55px rgba(114, 71, 52, .18);
    transform: rotate(1.5deg);
  }
  .hero-float-chip {
    position: absolute;
    left: -12px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid #F2D6C5;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 24px rgba(110,60,40,.12);
    backdrop-filter: blur(8px);
  }
  .hero-float-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: #4FBF9F; box-shadow: 0 0 0 4px #E0F3EC; }
  .hero-float-chip b { font-size: 14px; color: var(--dark); display: block; line-height: 1.3; }
  .hero-float-chip span { font-size: 12px; color: var(--muted); }

  @media (max-width: 980px) {
    .hero { margin-top: 96px; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-visual { justify-self: center; order: -1; max-width: 340px; }
  }
  @media (max-width: 640px) {
    .hero { margin-top: 78px; border-radius: 18px; }
    .hero-inner { padding: 26px 16px 34px; }
    .hero-title { font-size: 30px; }
    .hero-sub { font-size: 15px; }
    .hero-kpi-item { padding-right: 16px; margin-right: 14px; }
    .hero-float-chip { left: 4px; bottom: 10px; padding: 8px 10px; }
  }

  /* features */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .feature-card {
    position: relative;
    padding: 28px 26px;
    overflow: hidden;
    background: #fff;
  }
  .feature-index {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 13px;
    background: var(--brand-light);
  }
  .feature-card:nth-child(2) .feature-index { background: var(--accent-light); color: #B06C0B; }
  .feature-card:nth-child(3) .feature-index { background: #F0E5E0; color: #845F53; }
  .feature-icon {
    width: 22px; height: 22px;
    margin-top: 24px;
    color: var(--brand-dark);
  }
  .feature-card h3 { font-size: 19px; font-weight: 750; color: var(--dark); margin-top: 14px; letter-spacing: .01em; }
  .feature-card p { margin-top: 12px; font-size: 15px; line-height: 1.85; color: var(--muted); }
  .feature-meta {
    position: absolute;
    right: 0;
    top: 24px;
    background: var(--brand);
    border-radius: 20px 0 0 20px;
    color: #fff;
    white-space: nowrap;
    width: 48px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
  }
  .feature-card:nth-child(2) .feature-meta { background: var(--accent); color: #4F310B; }

  @media (max-width: 980px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card:last-child { grid-column: 1 / -1; }
  }
  @media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card:last-child { grid-column: auto; }
  }

  /* mock window scene */
  .scene-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, .92fr);
    gap: 34px;
    align-items: center;
  }
  .scene-grid.is-reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
  .scene-info h3 {
    font-size: 25px;
    color: var(--dark);
  }
  .scene-info .lead {
    margin-top: 12px;
    color: #6E554E;
    line-height: 1.9;
  }
  .scene-list { margin-top: 18px; display: grid; gap: 10px; }
  .scene-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #5D4A45;
    font-size: 14px;
  }
  .scene-point svg { margin-top: 5px; flex: 0 0 auto; }

  .mock-window {
    background: #271B17;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #392A24;
    box-shadow: 0 30px 55px rgba(81,56,45,.22);
  }
  .mock-bar {
    height: 38px;
    background: #361F18;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
  }
  .mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #DEC2B5; }
  .mock-dot.is-r { background: var(--brand); }
  .mock-dot.is-y { background: var(--accent); }
  .mock-address {
    margin-left: 12px;
    background: rgba(255,255,255,.1);
    color: #D4C1B9;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mock-content { padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .mock-row { grid-column: 1 / -1; display: flex; gap: 8px; align-items: center; }
  .mock-tag { height: 24px; padding: 0 8px; border-radius: 8px; font-size: 12px; }
  .mock-asset {
    border-radius: 14px;
    overflow: hidden;
    background: #4F2D25;
    position: relative;
  }
  .mock-asset img { width: 100%; height: 88px; object-fit: cover; }
  .mock-asset-info { padding: 8px 10px; color: #D8C5BD; font-size: 12px; display: flex; justify-content: space-between; }
  .mock-asset-info b { color: #F4E6DF; font-weight: 600; font-size: 13px; }
  @media (max-width: 980px) {
    .scene-grid, .scene-grid.is-reverse { grid-template-columns: 1fr; }
    .scene-grid.is-reverse .scene-info { order: 1; }
    .scene-grid.is-reverse .scene-visual { order: 2; }
  }

  /* sence two mobile */
  .phone-shell {
    position: relative;
    width: 240px;
    margin-inline: auto;
    background: #201512;
    border-radius: 40px;
    padding: 13px 9px;
    box-shadow: 0 24px 48px rgba(50,34,28,.22);
  }
  .phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #FFF8F0;
    padding: 12px;
  }
  .phone-appbar { display: flex; justify-content: flex-end; gap: 6px; }
  .phone-tags { display: flex; gap: 6px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .phone-tags::-webkit-scrollbar { display: none; }
  .phone-tag { height: 26px; padding: 0 10px; background: var(--brand-light); border-radius: 20px; color: var(--brand-dark); font-size: 11px; font-weight: 700; line-height: 26px; }
  .phone-tag.is-y { background: var(--accent-light); color: #8A5B13; }
  .phone-card { margin-top: 12px; border-radius: 14px; overflow: hidden; border: 1px solid #F1E0D5; background: #fff; }
  .phone-card img { width: 100%; height: 100px; object-fit: cover; }
  .phone-card-info { padding: 10px; font-size: 12px; color: var(--dark); font-weight: 700; }
  .phone-card-sub { display: flex; justify-content: space-between; margin-top: 6px; color: var(--muted); font-weight: 400; font-size: 11px; }

  /* update list / info block */
  .info-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
    align-items: start;
  }
  .update-list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 19px 0; border-bottom: 1px dashed #E9D8CC; }
  .update-list li:last-child { border-bottom: 0; }
  .update-title { font-weight: 600; color: #3A2A25; }
  .update-title a { transition: color .2s; }
  .update-title a:hover { color: var(--brand); }
  .update-meta { display: flex; gap: 8px; align-items: center; margin-top: 7px; }
  .update-num { color: var(--brand); font-weight: 800; margin-right: 12px; }
  .update-more { color: var(--muted); font-size: 14px; }
  .pick-card { background: var(--dark); color: #F8EEE9; border-radius: 22px; padding: 24px; }
  .pick-card .pv { color: var(--accent); font-weight: 800; font-size: 14px; }
  .pick-card h3 { margin-top: 6px; font-size: 22px; line-height: 1.35; font-weight: 800; }
  .pick-list { margin-top: 16px; display: grid; gap: 9px; }
  .pick-list a { color: #D5C1B9; font-size: 14px; display: inline-flex; justify-content: space-between; border: 1px solid #5A4138; border-radius: 12px; padding: 9px 12px; transition: .2s; }
  .pick-list a:hover { border-color: var(--accent); color: #fff; }
  @media (max-width: 980px) {
    .info-split { grid-template-columns: 1fr; gap: 28px; }
  }

  /* social proof */
  .proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--border);
    padding: 26px;
    border-radius: 22px;
  }
  .proof-item .num { font-size: 32px; font-weight: 800; color: var(--brand-dark); line-height: 1.2; }
  .proof-item .label { color: var(--muted); font-size: 13px; margin-top: 6px; }
  .proof-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
  }
  .quote-card { background: var(--card); border-radius: 18px; padding: 22px; border: 1px solid var(--border); }
  .quote-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #F5DCCF;
    color: var(--brand-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .quote-card p { font-size: 14px; line-height: 1.85; color: #57413B; margin-top: 14px; }
  .quote-author { margin-top: 16px; font-weight: 700; color: var(--dark); font-size: 14px; }
  .quote-author small { display: block; color: var(--muted); font-weight: 500; margin-top: 2px; }
  @media (max-width: 980px) {
    .proof-stats { grid-template-columns: repeat(2, 1fr); }
    .proof-quotes { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .proof-stats { padding: 18px; }
    .proof-item .num { font-size: 26px; }
  }

  /* faq */
  .faq-wrap { max-width: 880px; margin-inline: auto; display: grid; gap: 12px; }
  .faq-card {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow .2s;
  }
  .faq-card[open] { box-shadow: var(--shadow-soft); }
  .faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    padding: 18px 22px;
    cursor: pointer;
    transition: color .2s;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q:hover { color: var(--brand-dark); }
  .faq-icon {
    position: relative;
    width: 30px; height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand-light);
  }
  .faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: .2s;
  }
  .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-card[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
  .faq-a { padding: 0 24px 20px; color: #6E554E; font-size: 15px; line-height: 1.9; }

  /* main cta */
  .final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--dark) url('/assets/images/backpic/back-3.jpg') center/cover no-repeat;
    padding: 62px 50px;
    display: grid;
    grid-template-columns: 1fr minmax(300px, .62fr);
    gap: 30px;
    align-items: center;
    color: #F9F0EA;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,20,17,.92) 30%, rgba(43,28,24,.72) 100%);
  }
  .final-cta > * { position: relative; }
  .final-cta h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; line-height: 1.35; }
  .final-cta p { color: #D8CAC3; margin-top: 14px; max-width: 620px; }
  .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
  .cta-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(5px);
  }
  .cta-panel b { font-size: 16px; color: #fff; }
  .cta-panel ul { margin-top: 12px; display: grid; gap: 10px; color: #D9C9C2; font-size: 14px; }
  .cta-panel li { display: flex; gap: 8px; align-items: center; }
  @media (max-width: 980px) {
    .final-cta { grid-template-columns: 1fr; padding: 38px 24px; }
  }

  /* footer */
  .site-footer {
    background: var(--dark);
    color: #DCCDC6;
    padding-top: 58px;
    margin-top: 84px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr 1.2fr;
    gap: 40px;
  }
  .footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFF6F0;
    font-weight: 800;
    font-size: 20px;
  }
  .footer-desc { margin-top: 18px; color: #BBAAA4; font-size: 14px; max-width: 300px; line-height: 1.9; }
  .footer-title { color: #F2E9E4; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
  .footer-list { margin-top: 16px; display: grid; gap: 10px; }
  .footer-list a { color: #C7B6AF; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
  .footer-list a::before { content: ""; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
  .footer-list a:hover { color: #fff; }
  .footer-bottom {
    margin-top: 44px;
    border-top: 1px solid #503A31;
    padding-block: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #998681;
  }
  @media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  }
  @media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .site-footer { margin-top: 40px; }
  }

  /* floating convert bar */
  .convert-bar {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 120%);
    z-index: 80;
    width: min(1050px, calc(100% - 32px));
    background: rgba(44,32,28,.92);
    backdrop-filter: blur(14px);
    color: #F8EEE9;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(62,27,15,.3);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .34s cubic-bezier(.2,.8,.2,1);
  }
  .convert-bar.show { transform: translate(-50%, 0); }
  .convert-text { font-size: 14px; min-width: 0; }
  .convert-text strong { font-weight: 800; color: #fff; }
  .convert-text span { color: #C9B7AF; }
  .convert-bar .btn { height: 42px; padding-inline: 18px; font-size: 14px; }
  .convert-close {
    width: 38px; height: 38px;
    margin-left: -2px;
    border-radius: 12px;
    color: #A98F86;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }
  .convert-close:hover { background: rgb(255 255 255 / .1); color: #fff; }
  @media (max-width: 640px) {
    .convert-text span { display: none; }
    .convert-bar { padding: 10px 12px; border-radius: 16px; }
    body { padding-bottom: 76px; }
  }
  body { padding-bottom: 76px; }

  /* skip */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 200;
    background: var(--brand-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
  }
  .skip-link:focus { left: 12px; }

/* roulang page: category1 */
/* ========= 糖心资源 · 全站设计系统（分类页与原首页保持一致） ========= */
:root {
  --brand: #E26044;
  --brand-dark: #C2432E;
  --brand-light: #F9E3D8;
  --accent: #F0AD45;
  --accent-light: #FBE6C6;
  --bg: #FFF8F0;
  --card: #FFFFFF;
  --dark: #2C201C;
  --dark-soft: #3D2E29;
  --text: #3B2B27;
  --muted: #9C8580;
  --border: #F1E2D8;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 34px rgba(226, 96, 68, 0.08);
  --shadow-hover: 0 20px 42px rgba(226, 96, 68, 0.14);
  --section-space: clamp(64px, 8vw, 112px);
  --content: 1200px;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button, input { font-family: inherit; border: 0; background: none; color: inherit; }
button { cursor: pointer; }
input:focus { outline: none; }
.container-guide {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: var(--section-space); }
.section.is-light { background: #FFFDFA; }
.section.is-cream { background: #FAF0E8; }

/* 顶部固定悬浮 Dock 导航 */
.site-dock {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.dock-shell {
  pointer-events: auto;
  width: 100%;
  max-width: 1100px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px 0 18px;
  background: rgba(255, 252, 246, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(241, 226, 216, 0.95);
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 40px rgba(112, 69, 52, 0.12);
  transition: box-shadow .25s ease, background .25s ease;
}
.dock-shell.scrolled { background: rgba(255, 252, 246, 0.94); box-shadow: 0 18px 44px rgba(112, 69, 52, 0.16); }
.dock-left, .dock-right { display: flex; align-items: center; gap: 12px; }
.dock-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--dark);
  white-space: nowrap;
}
.dock-logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #EF8B6B);
  color: #fff;
  box-shadow: 0 6px 16px rgba(226, 96, 68, .26);
  flex: none;
}
.dock-logo-mark svg { width: 20px; height: 20px; }
.dock-nav { display: flex; align-items: center; gap: 4px; }
.dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: #5F4A45;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.dock-link:hover { background: var(--brand-light); color: var(--brand-dark); }
.dock-link.active { background: var(--brand-light); color: var(--brand-dark); font-weight: 700; }
.dock-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(226, 96, 68, .22);
  transition: transform .18s, background .18s, box-shadow .18s;
}
.dock-cta:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(226, 96, 68, .3); }
.dock-cta:active { transform: translateY(0); }
.dock-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  color: #5F4A45;
  transition: background .2s, color .2s;
}
.dock-icon-btn:hover { background: var(--brand-light); color: var(--brand-dark); }
.dock-burger { display: none; }

/* 移动端菜单 */
.dock-mobile-layer { display: none; position: fixed; top: 90px; left: 16px; right: 16px; z-index: 59; }
.dock-mobile-panel {
  background: rgba(255, 252, 246, 0.98);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  padding: 12px;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: .22s ease;
}
.dock-mobile-panel.open { opacity: 1; transform: translateY(0); visibility: visible; }
.dock-mobile-layer .dock-link { display: block; height: auto; padding: 13px 16px; justify-content: flex-start; border-radius: 14px; font-size: 15px; }
.dock-mobile-layer .dock-cta { margin: 12px auto 4px; width: 100%; }

/* 通用按钮 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(226,96,68,.22); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(226,96,68,.28); color: #fff; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { border: 1px solid #E6CDBE; background: rgba(255,255,255,.8); color: var(--dark-soft); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: #fff; transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #33210D; box-shadow: 0 10px 20px rgba(240,173,69,.22); }
.btn-accent:hover { background: #E49D2F; transform: translateY(-2px); }
.btn-accent:active { transform: translateY(0); }
.btn-white { background: #fff; color: var(--brand-dark); box-shadow: 0 10px 22px rgba(0,0,0,.1); }
.btn-white:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.16); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 11px;
  background: #fff; border: 1px solid var(--border);
  color: #725B55; font-size: 12px; font-weight: 600;
  border-radius: var(--radius-pill); white-space: nowrap;
}
.tag-brand { background: var(--brand-light); border-color: #F3C2B3; color: var(--brand-dark); font-weight: 700; }
.tag-accent { background: var(--accent-light); border-color: #F3D38B; color: #8A5B13; }
.card-base {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* ====== 本分类页特有样式 ====== */
.cat-cover {
  height: 170px;
  object-fit: cover;
  width: 100%;
  border-radius: 14px;
}
.cat-cover-lg {
  height: 250px;
  object-fit: cover;
  width: 100%;
  border-radius: 18px;
}
.category-hero {
  position: relative;
  margin-top: 100px;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  background: linear-gradient(120deg, #FFE9DE 0%, #FFF3E6 48%, #FFE0D3 100%);
}
.category-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(105deg, rgba(255,248,240,.86) 20%, rgba(255,233,222,.74) 56%, rgba(255,224,211,.66) 100%),
    url('/assets/images/backpic/back-2.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .92;
}
.category-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(34px, 4.6vw, 64px);
  min-height: 380px;
}
.crumb {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: #896C62; font-weight: 500;
  margin-bottom: 14px;
}
.crumb a { color: var(--brand-dark); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }
.crumb i { font-style: normal; opacity: .6; }
.category-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.24;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: .01em;
}
.category-hero h1 .soft-word { color: var(--brand-dark); }
.category-hero .lead {
  font-size: 16px;
  line-height: 1.9;
  color: #6C5148;
  max-width: 62%;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  margin-top: 24px;
}
.hero-meta-item {
  font-size: 13px;
  color: #6C5148;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}
.hero-specimen {
  width: 240px;
  flex: none;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 20px 42px rgba(156, 88, 67, .16);
  backdrop-filter: blur(10px);
  transform: rotate(2deg);
}
.hero-specimen-part {
  background: #fff;
  border-radius: 16px;
  padding: 12px 12px 10px;
  margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(156,88,67,.08);
}
.specimen-rect { border-radius: 10px; height: 56px; margin-bottom: 8px; background: #F9D8CC; }
.specimen-line { height: 7px; border-radius: 20px; background: #EADFD8; margin-bottom: 6px; }
.specimen-line.short { width: 58%; }
.specimen-line.mid { width: 82%; }
.specimen-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.specimen-tags span { height: 20px; border-radius: 30px; font-size: 0; width: 22px; }
.filler { width: 100%; display: block; }

/* 工具条 / 筛选 */
.toolbar-wrap { margin-top: -46px; position: relative; z-index: 5; }
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.filter-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1 1 480px;
  padding-block: 4px;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill {
  height: 38px;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: #FFFDFA;
  color: #695450;
  transition: all .18s ease;
}
.filter-pill:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand-dark); }
.filter-pill.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(226,96,68,.24); }
.filter-pill.active b { color: #FFE1B3; }
.filter-count { font-size: 12px; font-weight: 700; opacity: .7; }
.search-group { display: inline-flex; align-items: center; gap: 0; background: #FFF7F0; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px; }
.search-group input {
  width: 180px;
  height: 34px;
  background: transparent;
  padding: 0 8px 0 14px;
  font-size: 14px;
  color: var(--text);
}
.search-group input:focus-visible { box-shadow: none; }
.search-group button {
  height: 34px; white-space: nowrap;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  transition: background .18s;
}
.search-group button:hover { background: var(--brand-dark); }

/* 内容扩展资源墙 */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.feature-card {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: stretch;
  border-radius: 22px;
  padding: 18px;
}
.feature-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 138px;
  gap: 10px;
}
.fv-main { grid-column: span 2; }
.fv-img { width: 100%; height: 100%; max-height: 138px; object-fit: cover; border-radius: 14px; }
.fv-img.wide { max-height: 138px; grid-column: span 2; }
.feature-visual .fv-main-img { max-height: 138px; }
.side-card {
  grid-column: span 5;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.mini-stack { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mini-resource { display: flex; gap: 12px; align-items: center; }
.mini-av {
  width: 64px; height: 64px; flex: none;
  border-radius: 14px; object-fit: cover; 
}
.mini-resource .res-title { font-weight: 700; font-size: 15px; color: var(--dark); }
.mini-resource .res-meta { font-size: 12px; color: var(--muted); }
.res-text-kicker { font-size: 13px; font-weight: 700; color: var(--brand-dark); letter-spacing: .06em; }

/* 小资源卡 */
.small-res-card { grid-column: span 4; border-radius: 20px; padding: 14px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; transform: translateY(0); }
.small-res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #E6C4B8; }
.small-res-card img { height: 170px; width: 100%; object-fit: cover; border-radius: 14px; margin-bottom: 14px; }
.res-tag-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.res-card-title { font-weight: 800; font-size: 18px; line-height: 1.4; margin-bottom: 6px; color: var(--dark); }
.res-card-copy { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.res-meta-sub { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.res-meta-sub time { font-size: 12px; color: #B29A8E; }
.res-action { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--brand-dark); transition: color .18s; }
.res-action:hover { color: var(--brand); }
.icon-fav { width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); transition: background .2s, transform .2s; border: none; }
.icon-fav:hover { background: #F4C4B7; transform: scale(1.05); }

/* 加载更多 */
.load-more-area { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 44px 0 0; margin-top: 46px; border-top: 1px dashed var(--border); }
.load-stat { font-size: 13px; color: var(--muted); }

/* 使用流程 */
.steps-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-item { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 22px 24px; box-shadow: var(--shadow-soft); }
.step-index { position: absolute; top: 18px; right: 18px; font-size: 42px; font-weight: 800; color: #F6D9CE; line-height: 1; }
.step-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-light); color: var(--brand-dark);
  margin-bottom: 18px;
}
.step-item h3 { font-size: 17px; margin: 0 0 6px; font-weight: 800; color: var(--dark); }
.step-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.75; }

/* FAQ */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:has(> .faq-q[aria-expanded="true"]) { border-color: #E3BCAE; box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  transition: background .2s ease;
}
.faq-q:hover { background: #FFF9F2; }
.faq-q svg { flex: none; width: 20px; height: 20px; color: var(--brand); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: #715A52; font-size: 15px; line-height: 1.9; border-top: 1px dashed #F4E5DC; margin: 0 0 0 0; padding-top: 14px; }

/* 订阅 CTA 条 */
.cta-subscribe {
  position: relative;
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  background-image: linear-gradient(100deg, rgba(45,30,25,.94), rgba(72,47,39,.93)), url('/assets/images/backpic/back-5.jpg');
  background-size: cover;
  background-position: center;
  padding: 58px 24px 60px;
  color: #fff;
  text-align: center;
}
.cta-subscribe h2 { font-size: clamp(25px, 3.2vw, 38px); font-weight: 800; margin: 12px auto 14px; max-width: 640px; line-height: 1.3; }
.cta-subscribe p { color: #E8D6CF; max-width: 600px; margin: 0 auto 26px; font-size: 15px; }
.sub-form { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.sub-form input {
  width: 320px; height: 50px;
  border-radius: var(--radius-pill);
  background: #FFF8F0;
  border: 1px solid #5E443A;
  padding: 0 22px;
  font-size: 15px;
  color: var(--text);
}
.sub-form input:focus-visible { outline: 3px solid rgba(240,173,69,.45); box-shadow: none; }

/* footer 深色 */
.site-footer { background: var(--dark); color: #E7D8D1; margin-top: 96px; padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding-bottom: 40px;
}
.footer-brand-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #fff; }
.footer-desc { font-size: 14px; line-height: 2; color: #BEAAA2; margin-bottom: 0; padding-right: 24px; }
.footer-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-list a { color: #BCA79E; transition: color .18s; }
.footer-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #917F78; }

/* 底部固定转化条 */
.bottom-sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(44,32,28,.96);
  backdrop-filter: blur(12px);
  color: #FBEFEB;
  box-shadow: 0 -8px 30px rgba(80,47,35,.2);
  border-top: 1px solid rgba(239,177,151,.2);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.bottom-sticky-bar.active { transform: translateY(0); }
.bottom-bar-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-inline: 24px;
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-copy { font-size: 14px; font-weight: 600; line-height: 1.5; }
.sticky-copy span { color: #FFC9B8; }
.sticky-right { display: flex; align-items: center; gap: 12px; }
.sticky-close { width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #D2C3BD; transition: background .2s, color .2s; }
.sticky-close:hover { background: rgba(255,255,255,.1); color: #fff; }

/* 动画与可视反馈 */
@keyframes floatCard { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(22px); } 100% { opacity: 1; transform: translateY(0); } }
.hero-specimen { animation: floatCard 4.6s ease-in-out infinite; }
.cat-card-hide { display: none !important; }
body.has-bottom-pad { padding-bottom: 68px; }
body.has-bottom-pad .bottom-sticky-bar { display: flex; }

address, .address {
  all: revert;
  font-style: normal;
}

/* 响应式 */
@media (min-width: 1025px) {
  .section-head.center { text-align: center; }
  .section-head.center .section-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 1100px) {
  .dock-nav .dock-link { padding: 0 12px; }
}
@media (max-width: 1024px) {
  .container-guide { padding-inline: 20px; }
  .category-hero .lead { max-width: 72%; }
  .hero-specimen { display: none; }
  .feature-card { grid-column: span 12; grid-template-columns: 1fr; }
  .side-card { grid-column: span 12; }
  .small-res-card { grid-column: span 6; }
  .steps-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 859px) {
  .dock-desktop-nav { display: none; }
  .dock-burger { display: inline-flex; }
  .dock-icon-search { display: none; }
  .dock-shell { height: 60px; }
}
@media (max-width: 767px) {
  .category-hero-inner { padding: 32px 22px 32px; min-height: 0; }
  .category-hero .lead { max-width: 100%; }
  .steps-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .filter-bar { padding: 14px; }
  .search-group { width: 100%; }
  .search-group input { width: 100%; flex: 1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container-guide { padding-inline: 16px; }
  .dock-shell { padding-left: 10px; padding-right: 8px; }
  .dock-logo { font-size: 15px; }
  .dock-logo .dock-logo-mark { width: 32px; height: 32px; border-radius: 10px; }
  .site-dock { top: 10px; padding-inline: 12px; }
  .dock-mobile-layer { top: 82px; left: 12px; right: 12px; }
  .small-res-card { grid-column: span 12; }
  .small-res-card img { height: 180px; }
  .feature-visual { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .fv-main { grid-column: span 1; }
  .fv-img { max-height: 120px; }
  .filter-bar { flex-wrap: wrap; }
  .section-title { font-size: 25px; }
  .bottom-bar-inner { height: 64px; padding-inline: 16px; }
  .sticky-copy { font-size: 12px; }
  .sticky-cta-btn { height: 40px; padding: 0 14px; font-size: 13px; }
  .sub-form input { width: 240px; }
  .footer-bottom { flex-direction: column; }
  .crumb { font-size: 12px; }
  .category-hero h1 { font-size: 27px; }
}

@media print {
  .site-dock, .bottom-sticky-bar, .hero-specimen { display: none; }
  body { padding-bottom: 0; }
  .site-footer { background: #fff; color: var(--text); border-top: 1px solid #eee; }
}

/* focus-visible 可读性 */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(226, 96, 68, 0.5);
  outline-offset: 2px;
}
.hero-specimen .specimen-card-float {
  background: #fff;
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px rgba(126, 71, 55, .12);
}
