/* roulang page: index */
:root {
      --primary: #5f8f78;
      --primary-dark: #3f6d58;
      --primary-soft: #e8f1ea;
      --accent: #d9905f;
      --accent-soft: #fff0df;
      --bg: #f7f2e9;
      --bg-2: #fbf8f1;
      --surface: #fffdf8;
      --surface-green: #f1f7f0;
      --text: #27322d;
      --text-strong: #17221d;
      --muted: #68756e;
      --muted-2: #8b958f;
      --border: #dce5d9;
      --border-warm: #eadfce;
      --success: #5b946d;
      --warning: #b77935;
      --shadow-sm: 0 8px 24px rgba(47, 71, 58, .08);
      --shadow-md: 0 18px 48px rgba(47, 71, 58, .12);
      --shadow-lg: 0 28px 70px rgba(47, 71, 58, .16);
      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1200px;
      --nav-height: 78px;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(217, 144, 95, .16), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(95, 143, 120, .15), transparent 30%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, #f4efe6 100%);
      line-height: 1.72;
      font-size: 16px;
      min-width: 320px;
      overflow-x: hidden;
      padding-bottom: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: none;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid var(--border);
      background: rgba(255, 253, 248, .94);
      color: var(--text);
      border-radius: 16px;
      min-height: 50px;
      padding: 12px 15px;
      outline: none;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(95, 143, 120, .16);
      background: #ffffff;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--muted-2);
    }

    ::selection {
      color: #fff;
      background: var(--primary-dark);
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-tight {
      padding: 76px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      background: rgba(95, 143, 120, .12);
      border: 1px solid rgba(95, 143, 120, .16);
      padding: 7px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    h1, h2, h3 {
      color: var(--text-strong);
      line-height: 1.18;
      letter-spacing: -.02em;
    }

    h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(25px, 3vw, 36px);
      font-weight: 800;
    }

    h3 {
      font-size: 20px;
      font-weight: 760;
    }

    p {
      color: var(--muted);
    }

    .lead {
      font-size: clamp(17px, 2vw, 19px);
      color: #526259;
      max-width: 680px;
      line-height: 1.75;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 760;
      border: 1px solid transparent;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
      white-space: nowrap;
      user-select: none;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:focus-visible,
    .nav-link:focus-visible,
    .footer-link:focus-visible,
    .chip:focus-visible,
    .faq-question:focus-visible {
      outline: 3px solid rgba(95, 143, 120, .35);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 14px 30px rgba(95, 143, 120, .28);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 18px 42px rgba(63, 109, 88, .32);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: rgba(255, 253, 248, .78);
      border-color: rgba(95, 143, 120, .34);
    }

    .btn-secondary:hover {
      background: var(--primary-soft);
      border-color: rgba(95, 143, 120, .55);
      box-shadow: var(--shadow-sm);
    }

    .btn-warm {
      color: #74451f;
      background: var(--accent-soft);
      border-color: rgba(217, 144, 95, .25);
    }

    .btn-warm:hover {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 14px 28px rgba(217, 144, 95, .24);
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 700;
    }

    .tag {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(95, 143, 120, .18);
    }

    .badge {
      color: #815128;
      background: var(--accent-soft);
      border: 1px solid rgba(217, 144, 95, .2);
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      background: rgba(247, 242, 233, .76);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(220, 229, 217, .7);
      transition: background .25s var(--ease), box-shadow .25s var(--ease), height .25s var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(255, 253, 248, .95);
      box-shadow: 0 14px 40px rgba(44, 61, 50, .08);
    }

    .nav-wrap {
      display: grid;
      grid-template-columns: auto minmax(280px, 1fr) auto;
      align-items: center;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      color: var(--text-strong);
      letter-spacing: -.03em;
      white-space: nowrap;
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 15px;
      background:
        linear-gradient(140deg, rgba(95, 143, 120, .98), rgba(63, 109, 88, .98)),
        var(--primary);
      position: relative;
      box-shadow: 0 10px 22px rgba(95, 143, 120, .22);
      flex: 0 0 auto;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      top: 13px;
      height: 8px;
      border-radius: 10px 10px 4px 4px;
      background: rgba(255,255,255,.88);
    }

    .logo-mark::after {
      content: "60";
      position: absolute;
      inset: auto 7px 7px auto;
      color: #fff;
      font-weight: 900;
      font-size: 10px;
      line-height: 1;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.12;
    }

    .logo-text span:first-child {
      font-size: 17px;
    }

    .logo-text span:last-child {
      color: var(--muted);
      font-size: 12px;
      font-weight: 650;
      letter-spacing: 0;
      margin-top: 3px;
    }

    .seg-nav {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border-radius: 999px;
      background: rgba(232, 241, 234, .72);
      border: 1px solid rgba(95, 143, 120, .16);
      overflow-x: auto;
      scrollbar-width: none;
      max-width: 100%;
    }

    .seg-nav::-webkit-scrollbar {
      display: none;
    }

    .nav-link {
      min-height: 42px;
      padding: 0 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      color: #526259;
      font-weight: 720;
      font-size: 14px;
      white-space: nowrap;
      transition: color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: rgba(255, 253, 248, .65);
    }

    .nav-link.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 10px 20px rgba(95, 143, 120, .22);
    }

    .header-cta {
      justify-self: end;
    }

    main {
      padding-top: var(--nav-height);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 86px 0 44px;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      right: -250px;
      top: 40px;
      background: radial-gradient(circle, rgba(95, 143, 120, .18), transparent 66%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      left: -210px;
      bottom: -180px;
      background: radial-gradient(circle, rgba(217, 144, 95, .16), transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px 8px 8px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .84);
      border: 1px solid rgba(220, 229, 217, .92);
      box-shadow: var(--shadow-sm);
      color: var(--primary-dark);
      font-weight: 780;
      margin-bottom: 22px;
    }

    .eyebrow .dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 14px;
    }

    .hero h1 {
      max-width: 720px;
      margin-bottom: 20px;
    }

    .hero .lead {
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 24px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .hero-visual {
      position: relative;
      min-height: 500px;
    }

    .bed-card {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 28px;
      background:
        linear-gradient(160deg, rgba(255, 253, 248, .95), rgba(241, 247, 240, .93)),
        var(--surface);
      border: 1px solid rgba(220, 229, 217, .9);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      min-height: 430px;
    }

    .bed-card::before {
      content: "";
      position: absolute;
      inset: 22px;
      border-radius: 30px;
      border: 1px dashed rgba(95, 143, 120, .22);
      pointer-events: none;
    }

    .bed-illustration {
      position: absolute;
      left: 50%;
      top: 46%;
      transform: translate(-50%, -50%);
      width: min(78%, 360px);
      height: 188px;
      border-radius: 44px 44px 30px 30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(235, 244, 235, .98));
      border: 1px solid rgba(95, 143, 120, .18);
      box-shadow: 0 24px 46px rgba(47, 71, 58, .12);
    }

    .bed-illustration::before {
      content: "";
      position: absolute;
      left: 30px;
      right: 30px;
      top: 30px;
      height: 50px;
      border-radius: 28px;
      background: linear-gradient(90deg, #f9efe1, #fff8ee);
      border: 1px solid rgba(217, 144, 95, .16);
    }

    .bed-illustration::after {
      content: "";
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 26px;
      height: 58px;
      border-radius: 22px;
      background:
        repeating-linear-gradient(90deg, rgba(95,143,120,.08) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(95, 143, 120, .1), rgba(95, 143, 120, .04));
    }

    .minute-ring {
      position: absolute;
      right: 26px;
      top: 28px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background:
        conic-gradient(var(--accent) 0 72%, rgba(217, 144, 95, .18) 72% 100%);
      display: grid;
      place-items: center;
      box-shadow: 0 18px 38px rgba(217, 144, 95, .2);
    }

    .minute-ring::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: var(--surface);
    }

    .minute-ring strong {
      position: relative;
      z-index: 1;
      color: var(--text-strong);
      font-size: 34px;
      line-height: 1;
    }

    .minute-ring span {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 4px;
      display: block;
      text-align: center;
    }

    .floating-note {
      position: absolute;
      border-radius: 22px;
      background: rgba(255, 253, 248, .92);
      border: 1px solid rgba(220, 229, 217, .82);
      box-shadow: var(--shadow-md);
      padding: 16px 17px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      max-width: 245px;
    }

    .floating-note .icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      flex: 0 0 auto;
      font-weight: 900;
    }

    .floating-note strong {
      display: block;
      color: var(--text-strong);
      font-size: 15px;
      margin-bottom: 3px;
    }

    .floating-note small {
      display: block;
      color: var(--muted);
      line-height: 1.55;
    }

    .note-a {
      left: -22px;
      bottom: 86px;
    }

    .note-b {
      right: -14px;
      bottom: 42px;
    }

    .info-strip {
      position: relative;
      z-index: 2;
      margin-top: 54px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      padding: 14px;
      border-radius: 28px;
      background: rgba(255, 253, 248, .78);
      border: 1px solid rgba(220, 229, 217, .82);
      box-shadow: var(--shadow-sm);
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border-radius: 20px;
      transition: background .22s var(--ease), transform .22s var(--ease);
    }

    .strip-item:hover {
      background: var(--primary-soft);
      transform: translateY(-2px);
    }

    .strip-num {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .strip-item strong {
      color: var(--text-strong);
      display: block;
      font-size: 15px;
    }

    .strip-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      margin-top: 2px;
    }

    .benefit-layout {
      display: grid;
      grid-template-columns: 330px minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
    }

    .benefit-index {
      background: rgba(255, 253, 248, .76);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: var(--shadow-sm);
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .index-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 20px;
      color: var(--muted);
      border: 1px solid transparent;
      transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), color .22s var(--ease);
    }

    .index-item:hover,
    .index-item.active {
      background: var(--primary-soft);
      border-color: rgba(95, 143, 120, .24);
      color: var(--text-strong);
      transform: translateX(3px);
    }

    .index-item .no {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255, 253, 248, .85);
      color: var(--primary-dark);
      font-weight: 900;
      border: 1px solid rgba(95, 143, 120, .15);
    }

    .index-item strong {
      display: block;
      color: inherit;
      line-height: 1.2;
    }

    .index-item span {
      font-size: 13px;
      color: var(--muted);
    }

    .benefit-panel {
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(241, 247, 240, .92), rgba(255, 253, 248, .98));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      padding: 34px;
      position: relative;
      overflow: hidden;
    }

    .benefit-panel::after {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      right: -80px;
      bottom: -90px;
      background: radial-gradient(circle, rgba(217, 144, 95, .18), transparent 70%);
    }

    .panel-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 260px;
      gap: 30px;
      align-items: center;
    }

    .panel-copy h3 {
      font-size: clamp(22px, 2.5vw, 30px);
      margin-bottom: 13px;
    }

    .panel-copy p {
      max-width: 580px;
      margin-bottom: 20px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #4f6057;
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      flex: 0 0 auto;
      margin-top: 3px;
    }

    .time-card {
      border-radius: 28px;
      background: rgba(255, 253, 248, .88);
      border: 1px solid rgba(220, 229, 217, .9);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }

    .time-card .big {
      color: var(--accent);
      font-size: 54px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.05em;
    }

    .time-card small {
      color: var(--muted);
      font-weight: 700;
    }

    .time-bars {
      display: grid;
      gap: 9px;
      margin-top: 18px;
    }

    .time-bars span {
      height: 10px;
      border-radius: 99px;
      background: var(--primary-soft);
      overflow: hidden;
      position: relative;
    }

    .time-bars span::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .process-wrap {
      border-radius: var(--radius-xl);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      padding: 28px;
      overflow: hidden;
    }

    .process-track {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

    .step-card {
      position: relative;
      padding: 24px 18px 20px;
      min-height: 208px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(247, 242, 233, .74), rgba(255, 253, 248, .96));
      border: 1px solid var(--border-warm);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
      border-color: rgba(95, 143, 120, .35);
    }

    .step-card::after {
      content: "";
      position: absolute;
      right: -13px;
      top: 38px;
      width: 20px;
      height: 2px;
      background: rgba(95, 143, 120, .25);
    }

    .step-card:last-child::after {
      display: none;
    }

    .step-no {
      display: inline-flex;
      width: 46px;
      height: 46px;
      border-radius: 17px;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #fff;
      font-weight: 900;
      margin-bottom: 18px;
      box-shadow: 0 12px 22px rgba(95, 143, 120, .22);
    }

    .step-card:nth-child(3) .step-no {
      background: var(--accent);
      box-shadow: 0 12px 22px rgba(217, 144, 95, .22);
    }

    .step-card h3 {
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 14px;
      line-height: 1.65;
    }

    .scene-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: stretch;
    }

    .scene-main {
      min-height: 520px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(39, 50, 45, .08), rgba(39, 50, 45, .02)),
        linear-gradient(135deg, #f7eadb, #f4f8ef);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .scene-main::before {
      content: "";
      position: absolute;
      left: 36px;
      right: 36px;
      bottom: 96px;
      height: 160px;
      border-radius: 42px 42px 30px 30px;
      background: rgba(255, 253, 248, .72);
      border: 1px solid rgba(255,255,255,.9);
      box-shadow: 0 30px 60px rgba(47, 71, 58, .12);
    }

    .scene-main::after {
      content: "";
      position: absolute;
      left: 70px;
      right: 70px;
      bottom: 150px;
      height: 52px;
      border-radius: 999px;
      background: rgba(255, 244, 229, .85);
      border: 1px solid rgba(217, 144, 95, .14);
    }

    .scene-caption {
      position: relative;
      z-index: 2;
      max-width: 360px;
      border-radius: 24px;
      background: rgba(255, 253, 248, .82);
      border: 1px solid rgba(220, 229, 217, .8);
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }

    .scene-caption h3 {
      margin-bottom: 8px;
    }

    .proof-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .proof-card {
      border-radius: 24px;
      background: rgba(255, 253, 248, .86);
      border: 1px solid var(--border);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }

    .proof-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(95, 143, 120, .35);
    }

    .proof-icon {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .proof-card h3 {
      margin-bottom: 8px;
    }

    .proof-card p {
      font-size: 14px;
      line-height: 1.66;
    }

    .proof-card.wide {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(255, 240, 223, .78), rgba(255, 253, 248, .92));
      border-color: rgba(217, 144, 95, .2);
    }

    .pricing-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 410px;
      gap: 28px;
      align-items: stretch;
    }

    .rule-card,
    .booking-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      background: rgba(255, 253, 248, .9);
      padding: 30px;
    }

    .rule-card {
      background:
        linear-gradient(135deg, rgba(241, 247, 240, .9), rgba(255, 253, 248, .96));
    }

    .rule-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(220, 229, 217, .8);
    }

    .rule-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .rule-row strong {
      color: var(--text-strong);
    }

    .rule-row p {
      font-size: 15px;
      line-height: 1.65;
    }

    .booking-card {
      position: relative;
      overflow: hidden;
    }

    .booking-card::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: rgba(95, 143, 120, .13);
    }

    .booking-card h3,
    .booking-card p,
    .booking-card form {
      position: relative;
      z-index: 1;
    }

    .booking-card h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .booking-form {
      display: grid;
      gap: 13px;
      margin-top: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .topic-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .topic-card {
      border-radius: 26px;
      background: rgba(255, 253, 248, .85);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      padding: 22px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }

    .topic-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(95, 143, 120, .36);
    }

    .topic-card h3 {
      margin: 14px 0 8px;
    }

    .topic-card p {
      font-size: 14px;
      line-height: 1.62;
      flex: 1;
    }

    .topic-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-dark);
      font-weight: 800;
      margin-top: 16px;
      transition: gap .2s var(--ease);
    }

    .topic-link:hover {
      gap: 10px;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 102px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(160deg, rgba(95, 143, 120, .14), rgba(255, 253, 248, .86));
      border: 1px solid var(--border);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }

    .faq-aside h2 {
      margin-bottom: 12px;
    }

    .faq-aside p {
      margin-bottom: 18px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(255, 253, 248, .88);
      overflow: hidden;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    .faq-item:hover {
      background: #fffaf1;
      border-color: rgba(217, 144, 95, .26);
    }

    .faq-item.active {
      border-color: rgba(95, 143, 120, .48);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      width: 100%;
      min-height: 66px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      color: var(--text-strong);
      font-weight: 780;
    }

    .faq-question .plus {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      flex: 0 0 auto;
      transition: transform .22s var(--ease), background .22s var(--ease);
    }

    .faq-item.active .plus {
      transform: rotate(45deg);
      background: var(--primary);
      color: #fff;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-answer p {
      font-size: 15px;
      line-height: 1.72;
    }

    .cta-band {
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 240, 223, .34), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), #597d69);
      color: #f8f3ea;
      padding: 42px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 26px;
      align-items: center;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: 34px;
      bottom: -70px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 34px solid rgba(255, 253, 248, .09);
    }

    .cta-band h2 {
      color: #fffdf8;
      margin-bottom: 10px;
    }

    .cta-band p {
      color: rgba(255, 253, 248, .82);
      max-width: 700px;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cta-band .btn-secondary {
      background: rgba(255, 253, 248, .12);
      color: #fff;
      border-color: rgba(255,255,255,.36);
    }

    .cta-band .btn-secondary:hover {
      background: rgba(255, 253, 248, .2);
    }

    .floating-cta {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 45;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .92);
      border: 1px solid rgba(220, 229, 217, .88);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(16px);
    }

    .floating-cta .mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--primary-dark);
      font-weight: 800;
      transition: background .22s var(--ease), color .22s var(--ease);
    }

    .floating-cta .mini:hover {
      background: var(--primary-soft);
    }

    .site-footer {
      padding: 54px 0 32px;
      background: #34423a;
      color: rgba(255, 253, 248, .82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(200px, .5fr) minmax(260px, .7fr);
      gap: 36px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fffdf8;
      font-weight: 850;
      margin-bottom: 16px;
    }

    .footer-brand .logo-mark {
      box-shadow: none;
    }

    .footer-desc {
      max-width: 560px;
      color: rgba(255, 253, 248, .72);
      font-size: 14px;
      line-height: 1.75;
    }

    .footer-title {
      color: #fffdf8;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-link {
      color: rgba(255, 253, 248, .72);
      transition: color .2s var(--ease), transform .2s var(--ease);
      font-size: 14px;
    }

    .footer-link:hover {
      color: #fffdf8;
      transform: translateX(3px);
    }

    .footer-note {
      color: rgba(255, 253, 248, .68);
      font-size: 14px;
      line-height: 1.75;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 253, 248, .12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255, 253, 248, .56);
      font-size: 13px;
    }

    .mobile-cta-bar {
      display: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      *,
      *::before,
      *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
    }

    @media (max-width: 1120px) {
      .nav-wrap {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
      }

      .hero-grid,
      .benefit-layout,
      .scene-grid,
      .pricing-layout,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 430px;
      }

      .benefit-index {
        grid-template-columns: repeat(2, 1fr);
      }

      .panel-grid {
        grid-template-columns: 1fr;
      }

      .time-card {
        max-width: 340px;
      }

      .process-track {
        grid-template-columns: repeat(2, 1fr);
      }

      .step-card::after {
        display: none;
      }

      .topic-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-aside {
        position: static;
      }
    }

    @media (max-width: 860px) {
      :root {
        --nav-height: 68px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        height: auto;
        padding: 10px 0;
      }

      .nav-wrap {
        grid-template-columns: 1fr auto;
        grid-template-areas:
          "logo cta"
          "nav nav";
        row-gap: 10px;
      }

      .logo {
        grid-area: logo;
      }

      .seg-nav {
        grid-area: nav;
        justify-self: stretch;
        justify-content: flex-start;
      }

      .header-cta {
        grid-area: cta;
      }

      .header-cta .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
      }

      main {
        padding-top: 118px;
      }

      .hero {
        padding-top: 54px;
      }

      .section {
        padding: 70px 0;
      }

      .section-tight {
        padding: 58px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .info-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .proof-list {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-band {
        grid-template-columns: 1fr;
        padding: 32px 24px;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .floating-cta {
        display: none;
      }

      .mobile-cta-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 46;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 9px;
        border-radius: 22px;
        background: rgba(255, 253, 248, .95);
        border: 1px solid rgba(220, 229, 217, .9);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(16px);
      }

      .mobile-cta-bar .btn {
        min-height: 44px;
        padding: 0 14px;
      }

      body {
        padding-bottom: 78px;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 15px;
      }

      .logo-text span:first-child {
        font-size: 15px;
      }

      .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 13px;
      }

      .nav-link {
        min-height: 40px;
        padding: 0 13px;
        font-size: 13px;
      }

      .hero {
        padding-bottom: 28px;
      }

      .hero-grid {
        gap: 28px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .trust-row {
        gap: 8px;
      }

      .hero-visual {
        min-height: 360px;
      }

      .bed-card {
        min-height: 340px;
        padding: 20px;
        border-radius: 28px;
      }

      .minute-ring {
        width: 104px;
        height: 104px;
        right: 18px;
        top: 18px;
      }

      .minute-ring strong {
        font-size: 27px;
      }

      .bed-illustration {
        width: 86%;
        height: 150px;
      }

      .floating-note {
        padding: 12px;
        max-width: 190px;
      }

      .floating-note .icon {
        display: none;
      }

      .note-a {
        left: 10px;
        bottom: 55px;
      }

      .note-b {
        right: 10px;
        bottom: 18px;
      }

      .info-strip,
      .benefit-index,
      .process-track,
      .topic-row,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .benefit-panel,
      .rule-card,
      .booking-card,
      .process-wrap {
        padding: 22px;
        border-radius: 26px;
      }

      .rule-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .scene-main {
        min-height: 420px;
        padding: 20px;
      }

      .faq-question {
        padding: 16px;
        min-height: 60px;
      }

      .faq-answer {
        padding: 0 16px 17px;
      }

      .copyright {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root {
      --primary: #5f8f78;
      --primary-dark: #3f6f5b;
      --primary-soft: #e7f1ec;
      --accent: #d9915d;
      --accent-soft: #fff0df;
      --bg: #f8f4ec;
      --bg-2: #f1eadf;
      --surface: #fffdf8;
      --surface-soft: #fbf7ef;
      --text: #27332d;
      --muted: #68746d;
      --muted-2: #879188;
      --border: #d9dfd2;
      --success: #6fa47a;
      --warning: #d99747;
      --danger: #b86b5d;
      --shadow-sm: 0 8px 22px rgba(73, 93, 79, .08);
      --shadow-md: 0 18px 48px rgba(73, 93, 79, .13);
      --shadow-lg: 0 26px 70px rgba(73, 93, 79, .16);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --container: 1200px;
      --header-h: 78px;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(213, 145, 93, .14), transparent 30%),
        radial-gradient(circle at 88% 6%, rgba(95, 143, 120, .16), transparent 34%),
        linear-gradient(180deg, #fbf7ef 0%, var(--bg) 48%, #f5efe5 100%);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      padding-bottom: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: transparent;
    }

    input, textarea, select {
      width: 100%;
      color: var(--text);
      background: #fffdf8;
      border: 1px solid var(--border);
      border-radius: 16px;
      min-height: 48px;
      padding: 12px 14px;
      outline: none;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(95, 143, 120, .16);
      background: #ffffff;
    }

    :focus-visible {
      outline: 3px solid rgba(95, 143, 120, .38);
      outline-offset: 3px;
    }

    ::selection {
      background: rgba(95, 143, 120, .22);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      min-height: var(--header-h);
      background: rgba(255, 253, 248, .82);
      border-bottom: 1px solid rgba(217, 223, 210, .72);
      backdrop-filter: blur(18px);
      transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(255, 253, 248, .96);
      box-shadow: 0 14px 36px rgba(74, 91, 77, .1);
      border-color: rgba(207, 216, 202, .96);
    }

    .nav-wrap {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 238px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 15px;
      background:
        linear-gradient(135deg, rgba(95, 143, 120, .96), rgba(63, 111, 91, .96)),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), transparent 45%);
      box-shadow: 0 12px 26px rgba(95, 143, 120, .26);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      width: 26px;
      height: 12px;
      left: 8px;
      top: 17px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .86);
      box-shadow: inset 0 -2px 0 rgba(217, 145, 93, .35);
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 4px;
      left: 12px;
      top: 14px;
      border-radius: 999px;
      background: rgba(255, 240, 223, .9);
    }

    .logo-text {
      display: grid;
      line-height: 1.12;
      gap: 4px;
    }

    .logo-text span:first-child {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--text);
      white-space: nowrap;
    }

    .logo-text span:last-child {
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
    }

    .seg-nav {
      justify-self: center;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px;
      border-radius: 999px;
      background: rgba(231, 241, 236, .78);
      border: 1px solid rgba(217, 223, 210, .72);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .seg-nav::-webkit-scrollbar {
      display: none;
    }

    .nav-link {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 15px;
      border-radius: 999px;
      color: #4b5b52;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: rgba(255, 253, 248, .78);
    }

    .nav-link.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 10px 20px rgba(95, 143, 120, .22);
    }

    .header-cta {
      display: flex;
      justify-content: flex-end;
      min-width: 112px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      border: 1px solid transparent;
      white-space: nowrap;
      user-select: none;
    }

    .btn-primary {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 14px 28px rgba(95, 143, 120, .24);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(95, 143, 120, .3);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: rgba(255, 253, 248, .92);
      border-color: rgba(95, 143, 120, .34);
    }

    .btn-secondary:hover {
      background: var(--primary-soft);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .btn-text {
      color: var(--primary-dark);
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-text:hover {
      color: var(--primary);
      transform: translateX(3px);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    main {
      position: relative;
    }

    .section {
      padding: 84px 0;
      scroll-margin-top: 96px;
    }

    .section-tight {
      padding: 58px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255, 240, 223, .86);
      color: #8b5a31;
      border: 1px solid rgba(217, 145, 93, .22);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(217, 145, 93, .14);
    }

    .topic-hero {
      padding: 74px 0 46px;
      position: relative;
      overflow: hidden;
    }

    .topic-hero::before {
      content: "";
      position: absolute;
      inset: 22px 4% auto auto;
      width: 360px;
      height: 220px;
      border-radius: 50%;
      background: rgba(95, 143, 120, .13);
      filter: blur(8px);
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .topic-hero::after {
      content: "";
      position: absolute;
      left: 6%;
      bottom: 0;
      width: 260px;
      height: 120px;
      border-radius: 999px 999px 0 0;
      background: rgba(217, 145, 93, .08);
      pointer-events: none;
    }

    .hero-panel {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(330px, .75fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      background: linear-gradient(135deg, rgba(255,253,248,.92), rgba(247,242,232,.76));
      border: 1px solid rgba(217, 223, 210, .78);
      border-radius: var(--radius-lg);
      padding: 42px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -46px;
      width: 180px;
      height: 180px;
      border-radius: 48px;
      background: linear-gradient(135deg, rgba(95,143,120,.1), rgba(217,145,93,.1));
      transform: rotate(18deg);
    }

    h1 {
      max-width: 760px;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.15;
      font-weight: 850;
      letter-spacing: -.04em;
      color: var(--text);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .hero-subtitle {
      max-width: 680px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.78;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .hero-aside {
      border-radius: var(--radius-lg);
      background:
        linear-gradient(155deg, rgba(95, 143, 120, .94), rgba(63, 111, 91, .96));
      color: #fff;
      padding: 30px;
      box-shadow: var(--shadow-md);
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .hero-aside::before {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      right: -90px;
      top: -88px;
      border-radius: 50%;
      background: rgba(255, 253, 248, .13);
    }

    .hero-aside::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 54px;
      left: 30px;
      bottom: 34px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .14);
      box-shadow: inset 0 -4px 0 rgba(255, 240, 223, .18);
    }

    .minute-card {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 18px;
    }

    .minute-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .minute-label {
      display: inline-flex;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 240, 223, .18);
      color: #fff3e4;
      border: 1px solid rgba(255, 240, 223, .25);
      font-size: 13px;
      font-weight: 800;
    }

    .minute-number {
      font-size: 70px;
      line-height: .9;
      font-weight: 900;
      letter-spacing: -.06em;
    }

    .minute-number span {
      font-size: 20px;
      margin-left: 4px;
      letter-spacing: 0;
    }

    .time-ruler {
      display: grid;
      gap: 8px;
      margin-top: 8px;
    }

    .ruler-track {
      height: 12px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.18);
      position: relative;
    }

    .ruler-track span {
      display: block;
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, #fff0df, #e2b17a);
    }

    .ruler-marks {
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,.76);
      font-size: 12px;
    }

    .aside-list {
      display: grid;
      gap: 12px;
      margin-top: 10px;
      position: relative;
      z-index: 1;
    }

    .aside-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.88);
    }

    .aside-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(255, 240, 223, .2);
      color: #fff0df;
      font-weight: 900;
      font-size: 12px;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 22px;
    }

    .breadcrumb a {
      color: var(--primary-dark);
      font-weight: 800;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .breadcrumb span {
      color: var(--muted-2);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--primary-dark);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .08em;
      margin-bottom: 8px;
    }

    h2 {
      font-size: clamp(25px, 3.2vw, 36px);
      line-height: 1.22;
      font-weight: 850;
      letter-spacing: -.03em;
      color: var(--text);
    }

    h3 {
      font-size: 20px;
      line-height: 1.35;
      font-weight: 850;
      color: var(--text);
    }

    .section-desc {
      max-width: 520px;
      color: var(--muted);
      font-size: 16px;
    }

    .chip-row {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 6px 2px 12px;
      scrollbar-width: none;
    }

    .chip-row::-webkit-scrollbar {
      display: none;
    }

    .chip {
      flex: 0 0 auto;
      min-height: 42px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(95, 143, 120, .25);
      background: rgba(255, 253, 248, .72);
      color: #4b5b52;
      font-weight: 800;
      font-size: 14px;
      transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
    }

    .chip:hover,
    .chip.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 12px 24px rgba(95, 143, 120, .2);
      transform: translateY(-2px);
    }

    .guide-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .guide-timeline {
      display: grid;
      gap: 18px;
      position: relative;
    }

    .guide-timeline::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 20px;
      bottom: 20px;
      width: 2px;
      background: linear-gradient(180deg, rgba(95,143,120,.25), rgba(217,145,93,.2));
    }

    .guide-card {
      position: relative;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr);
      gap: 18px;
      padding: 0;
    }

    .guide-index {
      width: 46px;
      height: 46px;
      border-radius: 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      color: var(--primary-dark);
      border: 1px solid rgba(95,143,120,.25);
      box-shadow: var(--shadow-sm);
      font-weight: 900;
      position: relative;
      z-index: 2;
    }

    .guide-body {
      background: rgba(255, 253, 248, .86);
      border: 1px solid rgba(217, 223, 210, .84);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
    }

    .guide-card:hover .guide-body {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(95, 143, 120, .42);
      background: #fffdf8;
    }

    .guide-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .tag.orange {
      background: var(--accent-soft);
      color: #8b5a31;
    }

    .guide-body h3 {
      margin-bottom: 8px;
    }

    .guide-body p {
      color: var(--muted);
      max-width: 680px;
      margin-bottom: 14px;
    }

    .check-list {
      display: grid;
      gap: 9px;
      margin-top: 14px;
    }

    .check-list li {
      list-style: none;
      display: flex;
      gap: 10px;
      color: var(--muted);
    }

    .check-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 10px;
      flex: 0 0 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(95,143,120,.12);
    }

    .side-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 98px;
    }

    .side-card {
      border-radius: var(--radius);
      border: 1px solid rgba(217, 223, 210, .86);
      background: rgba(255, 253, 248, .88);
      box-shadow: var(--shadow-sm);
      padding: 22px;
      overflow: hidden;
      position: relative;
    }

    .side-card.highlight {
      color: #fff;
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      border-color: rgba(255,255,255,.16);
    }

    .side-card.highlight::after {
      content: "";
      position: absolute;
      width: 142px;
      height: 142px;
      right: -56px;
      top: -54px;
      border-radius: 50%;
      background: rgba(255, 253, 248, .13);
    }

    .side-card h3 {
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .side-card.highlight h3 {
      color: #fff;
    }

    .side-card p {
      color: var(--muted);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .side-card.highlight p {
      color: rgba(255,255,255,.83);
    }

    .mini-list {
      display: grid;
      gap: 10px;
      margin-top: 12px;
      position: relative;
      z-index: 1;
    }

    .mini-list a,
    .mini-list span {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(217, 223, 210, .7);
      color: var(--muted);
      font-weight: 700;
    }

    .mini-list a:hover {
      color: var(--primary-dark);
    }

    .mini-list a::after {
      content: "›";
      color: var(--primary);
      font-size: 20px;
      line-height: 1;
    }

    .tip-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .tip-card {
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .86);
      border: 1px solid rgba(217, 223, 210, .86);
      box-shadow: var(--shadow-sm);
      padding: 22px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }

    .tip-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: rgba(95, 143, 120, .42);
    }

    .icon-box {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .tip-card:nth-child(2) .icon-box {
      background: var(--accent-soft);
      color: #8b5a31;
    }

    .tip-card p {
      color: var(--muted);
      margin-top: 8px;
    }

    .process-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(231, 241, 236, .72), rgba(255, 240, 223, .6));
      border: 1px solid rgba(217, 223, 210, .86);
    }

    .process-item {
      background: rgba(255, 253, 248, .82);
      border: 1px solid rgba(217, 223, 210, .72);
      border-radius: 20px;
      padding: 20px;
      min-height: 170px;
      position: relative;
      overflow: hidden;
    }

    .process-item::after {
      content: "";
      position: absolute;
      right: -22px;
      bottom: -22px;
      width: 74px;
      height: 74px;
      border-radius: 24px;
      background: rgba(95, 143, 120, .08);
      transform: rotate(18deg);
    }

    .process-num {
      color: var(--accent);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      margin-bottom: 12px;
    }

    .process-item p {
      color: var(--muted);
      margin-top: 8px;
      font-size: 15px;
    }

    .notice-panel {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
      gap: 24px;
      align-items: stretch;
      border-radius: var(--radius-lg);
      background: #fffdf8;
      border: 1px solid rgba(217, 223, 210, .88);
      box-shadow: var(--shadow-md);
      padding: 24px;
    }

    .notice-visual {
      min-height: 300px;
      border-radius: 26px;
      background:
        linear-gradient(160deg, rgba(95, 143, 120, .16), rgba(217, 145, 93, .1)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0, rgba(255,255,255,.45) 2px, transparent 2px, transparent 12px);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(217, 223, 210, .72);
    }

    .bed-shape {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 56px;
      height: 88px;
      border-radius: 999px 999px 24px 24px;
      background: rgba(255, 253, 248, .86);
      box-shadow: inset 0 -8px 0 rgba(95, 143, 120, .08), var(--shadow-sm);
    }

    .bed-shape::before {
      content: "";
      position: absolute;
      left: 34px;
      top: -22px;
      width: 82px;
      height: 44px;
      border-radius: 22px;
      background: rgba(255, 240, 223, .95);
      border: 1px solid rgba(217, 145, 93, .16);
    }

    .notice-badge {
      position: absolute;
      top: 24px;
      left: 24px;
      display: inline-flex;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .9);
      color: var(--primary-dark);
      font-weight: 900;
      box-shadow: var(--shadow-sm);
    }

    .notice-content {
      padding: 10px 6px;
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .notice-row {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid rgba(217, 223, 210, .72);
    }

    .notice-row strong {
      display: block;
      margin-bottom: 2px;
      color: var(--text);
    }

    .notice-row p {
      color: var(--muted);
      font-size: 15px;
    }

    .notice-dot {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
    }

    .faq-wrap {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 20px;
      background: rgba(255, 253, 248, .88);
      border: 1px solid rgba(217, 223, 210, .86);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
    }

    .faq-item:hover {
      background: #fffdf8;
      border-color: rgba(95, 143, 120, .32);
    }

    .faq-item.active {
      border-color: rgba(95, 143, 120, .58);
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: var(--text);
      font-weight: 850;
      text-align: left;
    }

    .faq-question span:first-child {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question span:first-child::before {
      content: "问";
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: #8b5a31;
      font-size: 13px;
      font-weight: 900;
    }

    .faq-icon {
      flex: 0 0 28px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--primary);
      color: #fff;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s var(--ease);
    }

    .faq-answer-inner {
      padding: 0 20px 20px 58px;
      color: var(--muted);
    }

    .cta-band {
      border-radius: var(--radius-lg);
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(63, 111, 91, .96), rgba(95, 143, 120, .94)),
        radial-gradient(circle at 80% 20%, rgba(255, 240, 223, .2), transparent 30%);
      color: #fff;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      right: 18%;
      top: -58px;
      width: 160px;
      height: 160px;
      border-radius: 44px;
      background: rgba(255,255,255,.08);
      transform: rotate(20deg);
    }

    .cta-band h2 {
      color: #fff;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .cta-band p {
      max-width: 660px;
      color: rgba(255,255,255,.82);
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
      position: relative;
      z-index: 1;
    }

    .cta-band .btn-primary {
      background: #fffdf8;
      color: var(--primary-dark);
      box-shadow: 0 14px 28px rgba(0,0,0,.12);
    }

    .cta-band .btn-primary:hover {
      background: var(--accent-soft);
    }

    .cta-band .btn-secondary {
      color: #fff;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.28);
    }

    .cta-band .btn-secondary:hover {
      background: rgba(255,255,255,.14);
    }

    .site-footer {
      margin-top: 80px;
      padding: 54px 0 26px;
      background: #26342d;
      color: rgba(255, 253, 248, .84);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .85fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 14px;
      color: #fffdf8;
    }

    .footer-desc,
    .footer-note {
      color: rgba(255, 253, 248, .68);
      max-width: 520px;
    }

    .footer-title {
      color: #fffdf8;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-link {
      color: rgba(255, 253, 248, .68);
      width: fit-content;
    }

    .footer-link:hover {
      color: #fff0df;
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 36px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 253, 248, .12);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255, 253, 248, .55);
      font-size: 14px;
    }

    .floating-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 45;
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255, 253, 248, .92);
      border: 1px solid rgba(217, 223, 210, .8);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(16px);
    }

    .floating-cta .btn {
      min-height: 42px;
      padding: 0 16px;
      font-size: 14px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
      }
    }

    @media (max-width: 1080px) {
      .nav-wrap {
        grid-template-columns: auto auto;
        grid-template-areas:
          "logo cta"
          "nav nav";
        gap: 8px 16px;
        padding: 10px 0;
      }

      .logo {
        grid-area: logo;
      }

      .seg-nav {
        grid-area: nav;
        justify-self: stretch;
      }

      .header-cta {
        grid-area: cta;
      }

      .hero-panel,
      .guide-layout,
      .notice-panel {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .tip-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-h: 64px;
      }

      body {
        padding-bottom: 78px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        min-height: auto;
      }

      .nav-wrap {
        min-height: auto;
      }

      .logo {
        min-width: 0;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 14px;
      }

      .logo-text span:first-child {
        font-size: 16px;
      }

      .logo-text span:last-child {
        display: none;
      }

      .header-cta .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
      }

      .seg-nav {
        margin: 4px -2px 0;
        padding: 6px;
        border-radius: 18px;
      }

      .nav-link {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
      }

      .topic-hero {
        padding: 46px 0 30px;
      }

      .hero-copy,
      .hero-aside {
        padding: 26px;
        border-radius: 26px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        flex: 1 1 100%;
      }

      .section {
        padding: 56px 0;
      }

      .section-tight {
        padding: 40px 0;
      }

      .section-head {
        display: grid;
        gap: 12px;
      }

      .guide-timeline::before {
        display: none;
      }

      .guide-card {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .guide-index {
        width: 42px;
        height: 42px;
      }

      .guide-body {
        padding: 20px;
      }

      .side-stack,
      .process-strip,
      .tip-grid {
        grid-template-columns: 1fr;
      }

      .notice-visual {
        min-height: 220px;
      }

      .faq-answer-inner {
        padding-left: 20px;
      }

      .cta-band {
        grid-template-columns: 1fr;
        padding: 26px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .copyright {
        display: grid;
      }

      .floating-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
        border-radius: 20px;
      }

      .floating-cta .btn {
        flex: 1;
      }

      .floating-cta .btn-secondary {
        display: none;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 31px;
      }

      .minute-number {
        font-size: 58px;
      }

      .hero-copy,
      .hero-aside,
      .cta-band {
        padding: 22px;
      }

      .btn {
        min-height: 46px;
        padding: 0 18px;
      }

      .breadcrumb {
        font-size: 13px;
      }
    }
