
:root{
  --accent:#F7931A;
  --bg:#FFFFFF;
  --text:#222;
  --muted:#666;
  --light:#F5F5F5;
  --black:#000;
  --card:#fff;
  --border:#ececec;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}
header{position:sticky;top:0;background:#000;color:#fff;z-index:1000}
.nav{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:.8rem 1rem}
.logo{display:flex;align-items:center;gap:.6rem;color:#fff;text-decoration:none}
.logo img{height:48px;width:auto;display:block}
.menu-toggle{display:none;color:#fff;background:transparent;border:1px solid rgba(255,255,255,.2);padding:.4rem .6rem;border-radius:.5rem}
.nav ul{display:flex;gap:.75rem;list-style:none;margin:0;padding:0}
.nav a{color:#fff;text-decoration:none;padding:.5rem .75rem;border-radius:.5rem}
.nav a:hover{background:rgba(255,255,255,.08)}
@media(max-width:760px){
 .menu-toggle{display:block}
 .nav ul{position:fixed;top:60px;right:0;left:0;background:#000;flex-direction:column;gap:0;padding:1rem;border-top:1px solid rgba(255,255,255,.1);transform:translateY(-120%);transition:.25s ease}
 .nav ul.show{transform:translateY(0)}
}
.container{max-width:1100px;margin:0 auto;padding:2rem 1rem}
.section{padding:3.25rem 0}
.section.light{background:var(--light)}
.center{text-align:center}
.lead{font-size:1.1rem;color:#333}
.muted{color:var(--muted)}
.hero{padding:5rem 0 3.5rem;background:
  radial-gradient(1200px 400px at 60% -10%, rgba(247,147,26,.12), transparent 60%),
  linear-gradient(#0d0d0d,#000)}
.hero h1{color:#fff;margin:0 0 .6rem 0;font-size:clamp(1.8rem,3.2vw + 1rem,3rem)}
.hero p{color:#ddd;margin:0 auto;max-width:900px}
.hero .actions{margin-top:1.2rem;display:flex;gap:.8rem;flex-wrap:wrap;justify-content:center}
.btn{display:inline-block;background:var(--accent);color:#000;font-weight:700;text-decoration:none;padding:.85rem 1rem;border-radius:.8rem;border:1px solid #d67a10;box-shadow:0 8px 18px rgba(247,147,26,.28);transition:transform .15s ease, box-shadow .2s ease}
.btn:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(247,147,26,.35)}
.btn.outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.35);box-shadow:none}
.btn.dark{background:#000;color:#fff;border-color:#000;box-shadow:0 8px 18px rgba(0,0,0,.28)}
.btn.block{display:block;text-align:center;width:100%}
.h-rule{width:70px;height:6px;border-radius:6px;background:linear-gradient(90deg,#ffb861,#F7931A);margin:.4rem auto 0}
.section h2{margin:0 0 .4rem}
.section .sub{margin:0;color:#777}
.grid{display:grid;gap:1rem}
.grid.fit-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid.fit-4{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:var(--card);border:1px solid var(--border);border-radius:1rem;box-shadow:0 8px 20px rgba(0,0,0,.05)}
.card.padded{padding:1.1rem}
.fc-head{display:flex;align-items:center;gap:.6rem;margin-bottom:.75rem}
.fc-icon{width:34px;height:34px;border-radius:.7rem;background:rgba(247,147,26,.14);display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;color:#F7931A;border:1px solid rgba(247,147,26,.25)}
.fc-icon svg{display:block;width:18px;height:18px;fill:currentColor}
.card p{margin:.25rem 0 0}
.card .list, .step-list, .check-list{list-style:none;margin:.25rem 0 0;padding:0}
.card .list li, .step-list li, .check-list li{display:flex;align-items:flex-start;gap:.5rem;padding:.25rem 0;text-align:left}
.check{width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(247,147,26,.14);border:1px solid rgba(247,147,26,.4);color:#F7931A;flex:0 0 auto}
.check svg{width:12px;height:12px;display:block;fill:currentColor}
.step-card{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:1rem}
.step-head{display:flex;align-items:center;gap:.6rem;margin-bottom:.5rem}
.badge{width:26px;height:26px;border-radius:8px;background:rgba(247,147,26,.16);border:1px solid rgba(247,147,26,.3);display:inline-flex;align-items:center;justify-content:center;font-weight:700;color:#d67a10;flex:0 0 auto}
footer{background:#000;color:#fff}
.footer-inner{max-width:1100px;margin:0 auto;padding:2rem 1rem;display:flex;align-items:flex-start;justify-content:space-between;gap:2rem}
footer h4{margin:.2rem 0 .6rem 0}
footer a{color:#fff;text-decoration:none}
.socials{display:flex;gap:.55rem;justify-content:flex-end;flex-wrap:wrap}
.socials .ico{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.18);border-radius:10px;color:#fff;transition:transform .15s ease, border-color .2s ease, background .2s ease, color .2s ease}
.socials .ico:hover{transform:translateY(-2px);border-color:rgba(247,147,26,.55);background:rgba(247,147,26,.16);color:#F7931A}
.socials .ico svg{display:block;width:18px;height:18px}
.socials .ico svg *{fill:currentColor !important;stroke:none !important}
@media(max-width:640px){.footer-inner{flex-direction:column;gap:1rem}.socials{justify-content:flex-start}}
.mt-1{margin-top:.25rem}
.mt-2{margin-top:.5rem}
.mt-3{margin-top:1rem}
.mt-4{margin-top:1.5rem}
