/* Hero */
  .doc-hero {
    background: linear-gradient(180deg, #FFF4EC 0%, #FFEAE0 100%);
    padding: 72px 0; border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
  }
  .doc-hero::before {
    content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,158,149,0.1), transparent 70%);
    top: -400px; left: -200px; pointer-events: none;
  }
  .doc-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
  .doc-hero .crumb {
    font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-600); margin-bottom: 18px;
  }
  .doc-hero h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
  .doc-hero h1 em { font-style: normal; color: var(--orange-500); }
  .doc-hero .lede { font-family: "Inter Tight", sans-serif; font-size: 18px; color: var(--ink-2); line-height: 1.5; max-width: 520px; margin-bottom: 20px; }
  .doc-hero .meta {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
    font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
  }
  .doc-hero .meta .tag {
    padding: 4px 10px; border-radius: 99px;
    background: rgba(31,158,149,0.1); color: var(--teal-600);
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  }

  /* Guarantee seal */
  .guarantee-seal {
    position: relative; justify-self: center;
    width: 260px; height: 260px;
  }
  .guarantee-seal .ring {
    position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500) 0%, #DE6824 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px -12px rgba(240,122,58,0.5);
    color: #fff; text-align: center; padding: 24px;
    flex-direction: column;
  }
  .guarantee-seal .num {
    font-family: "Inter Tight", sans-serif; font-weight: 800; font-size: 72px;
    letter-spacing: -0.06em; line-height: 0.9;
  }
  .guarantee-seal .unit { font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: 18px; margin-top: 6px; }
  .guarantee-seal .sub {
    font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase; margin-top: 12px; opacity: 0.85;
  }
  .guarantee-seal .arc {
    position: absolute; inset: -8px;
    width: calc(100% + 16px); height: calc(100% + 16px);
    animation: spinSlow 40s linear infinite;
  }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  .guarantee-seal .arc text {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.3em;
    fill: var(--ink); text-transform: uppercase; font-weight: 600;
  }

  /* Doc layout */
  html { scroll-behavior: smooth; scroll-padding-top: 100px; }
  .doc-wrap {
    display: grid; grid-template-columns: 240px 1fr; gap: 64px;
    padding: 72px 0 120px; align-items: start;
  }
  .toc {
    position: sticky; top: 88px; font-size: 13px;
    max-height: calc(100vh - 110px); overflow-y: auto; padding-right: 8px;
  }
  .toc-title {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .toc ol { list-style: none; counter-reset: toc; }
  .toc li { counter-increment: toc; margin-bottom: 2px; }
  .toc a {
    display: block; padding: 7px 12px; color: var(--ink-3);
    border-left: 2px solid transparent; font-size: 13px; line-height: 1.4;
    transition: all 0.15s; text-decoration: none;
  }
  .toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: "JetBrains Mono", monospace; font-size: 10px;
    color: var(--ink-3); margin-right: 10px; opacity: 0.6;
  }
  .toc a:hover { color: var(--ink); border-left-color: var(--line); background: rgba(0,0,0,0.02); }
  .toc a.active { color: var(--orange-500); border-left-color: var(--orange-500); font-weight: 600; }
  .toc a.active::before { color: var(--orange-500); opacity: 1; }

  /* Content */
  .content { max-width: 760px; }
  .content h2 {
    font-size: 26px; font-weight: 700; letter-spacing: -0.025em; margin: 56px 0 16px; padding-top: 20px;
    border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px;
    scroll-margin-top: 100px;
  }
  .content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
  .content h2 .num { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--orange-500); font-weight: 500; letter-spacing: 0.04em; }
  .content h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin: 28px 0 10px; color: var(--ink); }
  .content p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; }
  .content ul { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .content ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--ink-2); line-height: 1.6;
    padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px;
  }
  .content ul li::before {
    content: "→"; font-family: "JetBrains Mono", monospace;
    font-size: 11px; color: var(--orange-500); flex: 0 0 auto; margin-top: 3px;
  }
  .content a { color: var(--teal-600); font-weight: 500; }

  /* Process steps block */
  .process-block {
    background: var(--off-white); border: 1px solid var(--line); border-radius: 14px;
    padding: 24px 28px; margin: 16px 0 24px; counter-reset: steps;
  }
  .process-block .step {
    counter-increment: steps; display: flex; gap: 18px; align-items: start;
    padding: 14px 0; border-bottom: 1px dashed var(--line);
  }
  .process-block .step:last-child { border-bottom: none; padding-bottom: 0; }
  .process-block .step::before {
    content: counter(steps, decimal-leading-zero);
    font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 600;
    color: var(--orange-500); background: rgba(240,122,58,0.1);
    width: 30px; height: 30px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  }
  .process-block .step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }

  /* Timeline */
  .timeline { margin: 24px 0; padding: 28px 32px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
  .timeline .t-head {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--orange-500); font-weight: 600; margin-bottom: 20px;
  }
  .t-step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 12px 0 14px; position: relative; }
  .t-step:not(:last-child)::after {
    content: ""; position: absolute; left: 21px; top: 50px; bottom: -4px;
    width: 2px; background: var(--line); border-radius: 2px;
  }
  .t-num {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(31,158,149,0.1); color: var(--teal-600);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: "JetBrains Mono", monospace; font-weight: 600; font-size: 14px;
    z-index: 1; flex: 0 0 auto;
  }
  .t-step h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
  .t-step p { font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0; }

  /* Plan refund cards */
  .plan-refund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
  .plan-refund { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
  .plan-refund .n {
    font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px;
  }
  .plan-refund .p { font-family: "Inter Tight", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
  .plan-refund .s { font-size: 12px; color: var(--teal-600); font-weight: 600; }

  /* Callout boxes */
  .callout {
    margin: 24px 0; padding: 24px 28px; border-radius: 16px;
    background: #fff; border: 1px solid var(--line);
    display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  }
  .callout.accent { background: linear-gradient(135deg, #FFF4EC 0%, #FFEAE0 100%); border-color: rgba(240,122,58,0.25); }
  .callout .ic {
    width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
    background: rgba(31,158,149,0.1); color: var(--teal-600);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .callout.accent .ic { background: rgba(240,122,58,0.15); color: var(--orange-500); }
  .callout .label {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-600); font-weight: 600; margin-bottom: 4px;
  }
  .callout.accent .label { color: var(--orange-500); }
  .callout h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px; }
  .callout p { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 0; }

  /* Contact card */
  .contact-card {
    margin: 24px 0; padding: 28px 32px;
    background: var(--ink); color: #fff; border-radius: 18px;
    display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
  }
  .contact-card .ic {
    width: 52px; height: 52px; border-radius: 14px; flex: 0 0 auto;
    background: rgba(240,122,58,0.18); color: var(--orange-400);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .contact-card .label {
    font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--orange-400); font-weight: 600; margin-bottom: 6px;
  }
  .contact-card h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-bottom: 6px; }
  .contact-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.55; }
  .contact-card p a { color: var(--orange-400); font-weight: 600; }

  @media (max-width: 1024px) {
    .plan-refund-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 1024px) {
    .doc-hero-inner { grid-template-columns: 1fr; }
    .guarantee-seal { display: none; }
    .doc-wrap { grid-template-columns: 1fr; }
    .toc { position: static; max-height: none; }
  }
  @media (max-width: 720px) {
    .doc-hero h1 { font-size: 40px; }
  }
