/* ─────────────────────────────────────────────────────
   help.css — premium design system for static/help pages
   Shared tokens: hero, sections, tables, accordions, timeline
   ───────────────────────────────────────────────────── */
:root{
  --help-bg:#faf8f5;
  --help-ink:#0f1115;
  --help-ink-soft:#555;
  --help-line:#ece6dc;
  --help-brand:#ff5c35;
  --help-brand-soft:#fff5f0;
  --help-card:#fff;
  --ff-display:'Playfair Display',Georgia,serif;
  --ff-body:'Plus Jakarta Sans',system-ui,sans-serif;
}

.help-page{background:var(--help-bg);color:var(--help-ink);font-family:var(--ff-body)}
.help-page main{max-width:1200px;margin:0 auto;padding:0 24px}

/* HERO */
.help-hero{
  position:relative;min-height:360px;
  display:flex;align-items:center;justify-content:center;
  padding:80px 24px 72px;text-align:center;
  background:linear-gradient(135deg,#1a1a1a 0%,#2d2420 55%,#3a2820 100%);
  color:#fff;overflow:hidden;
}
.help-hero::before{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(900px 500px at 20% 10%,rgba(255,92,53,.15),transparent 60%),
    radial-gradient(700px 400px at 80% 90%,rgba(255,255,255,.08),transparent 55%);
  pointer-events:none;
}
.help-hero__inner{position:relative;z-index:2;max-width:820px}
.help-hero__eyebrow{
  display:inline-block;padding:6px 14px;margin-bottom:18px;
  border:1px solid rgba(255,255,255,.22);border-radius:999px;
  font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:#ffcfbf;background:rgba(255,92,53,.12);
}
.help-hero h1{
  font-family:var(--ff-display);font-weight:500;
  font-size:clamp(40px,5vw,64px);line-height:1.05;letter-spacing:-.02em;
  margin:0 0 18px;
}
.help-hero__sub{
  font-size:clamp(15px,1.3vw,18px);line-height:1.55;opacity:.78;
  max-width:620px;margin:0 auto;
}

/* Breadcrumbs — subtle top-left on content */
.help-crumbs{
  max-width:1200px;margin:18px auto 0;padding:0 24px;
  font-size:13px;color:var(--help-ink-soft);
}
.help-crumbs a{color:var(--help-ink-soft);text-decoration:none;transition:color .2s}
.help-crumbs a:hover{color:var(--help-brand)}
.help-crumbs span{margin:0 8px;opacity:.4}

/* SECTIONS */
.help-section{padding:64px 0;border-bottom:1px solid var(--help-line)}
.help-section:last-of-type{border-bottom:none}
.help-section__head{margin-bottom:32px;max-width:720px}
.help-section__kicker{
  display:inline-block;color:var(--help-brand);
  font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:10px;
}
.help-section h2{
  font-family:var(--ff-display);font-weight:500;
  font-size:clamp(28px,3.2vw,40px);line-height:1.15;letter-spacing:-.02em;
  margin:0 0 14px;
}
.help-section__lead{font-size:17px;color:var(--help-ink-soft);line-height:1.65}
.help-section p{font-size:15.5px;line-height:1.7;color:#333}
.help-section p + p{margin-top:10px}
.help-section a{color:var(--help-ink);border-bottom:1px solid rgba(255,92,53,.35);text-decoration:none;padding-bottom:1px;transition:all .2s}
.help-section a:hover{border-color:var(--help-brand);color:var(--help-brand)}

/* CARDS GRID */
.help-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;margin-top:8px}
.help-card{
  background:var(--help-card);border:1px solid var(--help-line);border-radius:18px;
  padding:28px 26px;transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s,border-color .25s;
}
.help-card:hover{
  transform:translateY(-3px);border-color:rgba(255,92,53,.22);
  box-shadow:0 18px 40px rgba(15,17,21,.07);
}
.help-card__icon{
  width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:var(--help-brand-soft);color:var(--help-brand);margin-bottom:18px;
}
.help-card__icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.help-card h3{font-family:var(--ff-display);font-weight:600;font-size:22px;margin:0 0 10px;letter-spacing:-.01em}
.help-card__meta{font-size:13px;color:var(--help-brand);font-weight:600;letter-spacing:.05em;text-transform:uppercase;margin-bottom:8px}
.help-card p{font-size:14.5px;line-height:1.65;color:#555;margin:0}
.help-card__foot{margin-top:18px;display:flex;align-items:baseline;gap:8px;font-weight:600}
.help-card__price{font-size:22px;color:var(--help-ink);font-family:var(--ff-display)}

/* TABLES */
.help-table{width:100%;border-collapse:collapse;margin:14px 0}
.help-table th,.help-table td{padding:14px 18px;border-bottom:1px solid var(--help-line);text-align:left;font-size:14.5px}
.help-table th{background:var(--help-card);font-weight:700;color:var(--help-ink);font-size:13px;text-transform:uppercase;letter-spacing:.05em}
.help-table tr:hover td{background:rgba(255,92,53,.03)}
.help-table .num{font-family:var(--ff-display);font-weight:600;color:var(--help-ink)}

/* TIMELINE (steps) */
.help-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:10px;counter-reset:step}
.help-step{
  background:var(--help-card);border-radius:16px;padding:28px 22px;
  border:1px solid var(--help-line);position:relative;
}
.help-step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  position:absolute;top:18px;right:22px;
  font-family:var(--ff-display);font-weight:500;font-size:44px;line-height:1;
  color:rgba(255,92,53,.12);
}
.help-step h4{font-family:var(--ff-display);font-weight:600;font-size:18px;margin:0 0 10px;letter-spacing:-.01em}
.help-step p{font-size:14px;line-height:1.6;color:#555;margin:0}

/* FAQ ACCORDION */
.help-faq{display:flex;flex-direction:column;gap:10px}
.help-faq__item{
  background:var(--help-card);border:1px solid var(--help-line);border-radius:14px;overflow:hidden;
  transition:border-color .25s,box-shadow .25s;
}
.help-faq__item[open]{border-color:rgba(255,92,53,.28);box-shadow:0 10px 30px rgba(15,17,21,.06)}
.help-faq__item summary{
  padding:20px 60px 20px 22px;cursor:pointer;position:relative;list-style:none;
  font-weight:600;font-size:16px;line-height:1.35;
}
.help-faq__item summary::-webkit-details-marker{display:none}
.help-faq__item summary::after{
  content:"";position:absolute;right:22px;top:50%;width:12px;height:12px;
  border-right:2px solid var(--help-ink);border-bottom:2px solid var(--help-ink);
  transform:translateY(-70%) rotate(45deg);transition:transform .25s;
}
.help-faq__item[open] summary::after{transform:translateY(-30%) rotate(-135deg);border-color:var(--help-brand)}
.help-faq__item-body{padding:0 22px 20px;color:#444;font-size:15px;line-height:1.7}

/* PILLS */
.help-pill-row{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0}
.help-pill{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;border-radius:999px;background:var(--help-card);border:1px solid var(--help-line);font-size:13px;font-weight:600}
.help-pill--brand{background:var(--help-brand-soft);border-color:rgba(255,92,53,.22);color:var(--help-brand)}

/* NOTE callout */
.help-note{
  background:linear-gradient(135deg,#fff5f0 0%,#ffede5 100%);
  border:1px dashed rgba(255,92,53,.35);border-radius:14px;padding:18px 22px;
  display:flex;gap:14px;align-items:flex-start;font-size:14.5px;line-height:1.6;margin:22px 0;
}
.help-note__icon{flex-shrink:0;width:28px;height:28px;border-radius:8px;background:#fff;display:flex;align-items:center;justify-content:center;color:var(--help-brand);font-size:16px;font-weight:800}

/* BOTTOM CTA */
.help-cta{
  margin:48px -24px 0;padding:64px 24px;text-align:center;
  background:linear-gradient(135deg,#0f1115 0%,#1f1a16 100%);color:#fff;border-radius:24px;
}
.help-cta h3{font-family:var(--ff-display);font-weight:500;font-size:clamp(28px,3vw,40px);line-height:1.1;letter-spacing:-.02em;margin:0 0 14px}
.help-cta p{font-size:16px;opacity:.75;max-width:540px;margin:0 auto 28px;line-height:1.55}
.help-cta .btn{display:inline-block;background:var(--help-brand);color:#fff;padding:14px 30px;border-radius:999px;font-weight:700;text-decoration:none;letter-spacing:.02em;transition:transform .2s,background .2s}
.help-cta .btn:hover{transform:translateY(-2px);background:#e04a25}
.help-cta .btn + .btn{margin-left:10px;background:transparent;border:1px solid rgba(255,255,255,.25)}

/* SIZE RULER diagram */
.size-ruler{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-top:20px}
.size-ruler__frame{
  background:var(--help-card);border:1px solid var(--help-line);border-radius:16px;padding:28px;
}
.size-ruler__frame h4{font-family:var(--ff-display);font-weight:600;font-size:18px;margin:0 0 14px}
.size-boxes{position:relative;aspect-ratio:4/3;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.size-boxes__item{
  background:linear-gradient(135deg,rgba(255,92,53,.08),rgba(255,92,53,.16));
  border:1px solid rgba(255,92,53,.2);
  margin-bottom:0;position:absolute;left:0;bottom:0;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ff-display);font-weight:600;color:#8a3d22;font-size:13px;
}

@media (max-width:860px){
  .help-hero{padding:56px 20px 56px;min-height:280px}
  .help-section{padding:44px 0}
  .help-cards{grid-template-columns:1fr}
  .help-steps{grid-template-columns:1fr}
  .size-ruler{grid-template-columns:1fr;gap:20px}
  .help-cta{margin:32px -16px 0;padding:44px 20px}
}
