:root{
  --bg:#F7F8FC;
  --card:#FFFFFF;
  --line:rgba(0,0,0,0.08);
  --text:#1E2130;
  --muted:#6F7489;
  --gold:#A67C2E;
  --gold-soft:rgba(166,124,46,0.1);
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Segoe UI',system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}
.wrap{max-width:980px;margin:0 auto;padding:48px 20px}
.top{
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  margin-bottom:1.6rem;flex-wrap:wrap;
}
.back{
  text-decoration:none;color:var(--muted);font-size:0.92rem;border:1px solid var(--line);
  background:var(--card);padding:0.45rem 0.8rem;border-radius:8px;
}
.badge{
  display:inline-flex;background:var(--gold-soft);color:var(--gold);
  border:1px solid rgba(166,124,46,0.22);padding:0.2rem 0.65rem;border-radius:999px;
  font-size:0.75rem;font-weight:700;letter-spacing:0.4px;text-transform:uppercase;margin-bottom:0.8rem;
}
h1{font-size:clamp(1.7rem,4vw,2.35rem);line-height:1.2;margin-bottom:0.8rem}
.lead{color:var(--muted);max-width:740px;margin-bottom:2rem}
.hero{
  border-radius:16px;border:1px solid rgba(166,124,46,0.25);
  background:var(--card);
  margin-bottom:1.5rem;position:relative;overflow:hidden;
}
.hero-media{height:290px;position:relative}
.hero-media img{width:100%;height:100%;object-fit:cover;display:block}
.hero-overlay{
  position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,22,32,0.08),rgba(20,22,32,0.65));
}
.hero-copy{
  position:absolute;left:20px;right:20px;bottom:20px;color:#fff;
}
.hero-copy h2{font-size:1.15rem;line-height:1.25;margin-bottom:0.35rem}
.hero-copy p{font-size:0.9rem;opacity:0.92;max-width:620px}
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-bottom:1rem}
.card{
  background:var(--card);border:1px solid var(--line);border-radius:12px;padding:1rem;
}
.card h3{font-size:1rem;margin-bottom:0.45rem}
.card p{font-size:0.92rem;color:var(--muted)}
.list{
  background:var(--card);border:1px solid var(--line);border-radius:12px;padding:1.1rem;
}
.list h2{font-size:1rem;margin-bottom:0.6rem}
.list ul{list-style:none;display:flex;flex-direction:column;gap:0.45rem}
.list li{font-size:0.92rem;color:var(--muted)}
.list li::before{content:'•';color:var(--gold);margin-right:0.45rem}
.sample{
  margin-top:1rem;background:var(--card);border:1px solid var(--line);border-radius:12px;padding:1.1rem;
}
.sample h2{font-size:1rem;margin-bottom:0.55rem}
.sample p{font-size:0.92rem;color:var(--muted)}
.note{margin-top:1rem;font-size:0.83rem;color:var(--muted)}
.section{
  margin-top:1rem;background:var(--card);border:1px solid var(--line);border-radius:12px;padding:1.1rem;
}
.section h2{font-size:1.04rem;margin-bottom:0.6rem}
.section p{font-size:0.93rem;color:var(--muted)}
.section ul{padding-left:1.1rem;margin-top:0.35rem}
.section li{margin-bottom:0.35rem}
.section-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0.7rem}
.mini{
  border:1px solid var(--line);background:#fff;border-radius:10px;padding:0.8rem;
}
.mini h3{font-size:0.9rem;margin-bottom:0.25rem}
.mini p{font-size:0.86rem;color:var(--muted)}
.cta{
  margin-top:1rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  background:var(--card);border:1px solid rgba(166,124,46,0.24);border-radius:12px;padding:1rem;
}
.btn{
  text-decoration:none;background:var(--gold);color:#fff;font-weight:700;
  border-radius:8px;padding:0.55rem 0.95rem;font-size:0.9rem;
}
.reveal{opacity:0;transform:translateY(18px);transition:opacity 0.6s ease,transform 0.6s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.stats{
  margin-top:1rem;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0.7rem;
}
.stat{
  background:var(--card);border:1px solid var(--line);border-radius:12px;padding:0.9rem;
}
.stat strong{display:block;font-size:1.35rem;line-height:1.1;color:var(--text);margin-bottom:0.3rem}
.stat span{font-size:0.84rem;color:var(--muted)}
.faq{display:flex;flex-direction:column;gap:0.55rem}
.faq-item{
  border:1px solid var(--line);border-radius:10px;background:#fff;padding:0.65rem 0.85rem;
}
.faq-item summary{
  cursor:pointer;font-size:0.92rem;font-weight:600;color:var(--text);list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';float:right;color:var(--gold);font-weight:700}
.faq-item[open] summary::after{content:'−'}
.faq-item p{margin-top:0.45rem;font-size:0.88rem;color:var(--muted)}
@media(max-width:760px){
  .wrap{padding-top:28px}
  .hero-media{height:220px}
  .stats{grid-template-columns:1fr 1fr}
  .section-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
