:root{
  --bg:#ffffff;
  --text:#151515;
  --muted:#5a5a5a;
  --border:#e7e7e7;
  --alt:#faf7f2;
  --accent:#f3b21a;
  --accent2:#111111;
  --radius:18px;
  --shadow: 0 12px 35px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{max-width:100%;height:auto;display:block}

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;
  padding:10px 12px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  z-index:9999;
}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:inherit;
}
.brand__mark{
  display:inline-grid;place-items:center;
  width:40px;height:40px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), #ffd46a);
  font-weight:800;
  letter-spacing:.5px;
}
.brand__name{font-weight:700}

.nav{
  display:none;
  gap:16px;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
}
.nav a:hover{color:var(--text)}
.topbar__cta{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid transparent;
  background: var(--accent2);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border-color: var(--border);
  box-shadow:none;
}
.btn--lg{padding:14px 18px;border-radius:16px}
.btn--contact{width:100%}

.hero{
  padding:56px 0 30px;
  background: radial-gradient(900px 500px at 20% 0%, rgba(243,178,26,.18), transparent 60%);
}
.hero__grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  background:rgba(255,255,255,.8);
}
h1{
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.1;
  margin:14px 0 10px;
}
.lead{
  font-size: clamp(16px, 1.35vw, 20px);
  color:var(--muted);
  margin:0 0 14px;
}
.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.hero__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 10px;
}
.fineprint{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
}
.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  background:#fff;
}
.hero__img{width:100%;height:auto}

.section{padding:56px 0}
.section--alt{background:var(--alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section h2{
  font-size: clamp(24px, 2.4vw, 34px);
  margin:0 0 10px;
}
.section__intro{color:var(--muted); margin:0 0 20px}

.cards{
  display:grid;
  gap:14px;
  grid-template-columns: 1fr;
}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.callout{
  margin-top:20px;
  border:1px solid rgba(243,178,26,.35);
  background: rgba(243,178,26,.08);
  border-radius: var(--radius);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.callout__text h3{margin:0 0 6px}
.callout__text p{margin:0;color:var(--muted)}
.callout__actions{display:flex;gap:10px;flex-wrap:wrap}

.included{
  display:grid;
  gap:18px;
  align-items:center;
}
.included__media{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding:14px;
  box-shadow: var(--shadow);
}
.checklist{
  list-style:none;
  padding:0;margin:0 0 14px;
}
.checklist li{
  padding-left:28px;
  position:relative;
  margin:10px 0;
  color:var(--muted);
  font-weight:600;
}
.checklist li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  width:20px;height:20px;
  border-radius:8px;
  display:inline-grid;place-items:center;
  background: rgba(243,178,26,.18);
  color: var(--text);
  font-weight:900;
}
.stack{display:flex;gap:10px;flex-wrap:wrap}

.faq details{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  padding:14px 16px;
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq__body{color:var(--muted); padding-top:10px}
.faq__body p{margin:0}

.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:14px;
}

.legal{
  margin-top:18px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--border);
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap:6px;
  color:var(--muted);
  font-size:14px;
}
.footer__links a{color:inherit;text-decoration:none;font-weight:700}
.footer__links a:hover{color:var(--text)}

@media (min-width: 860px){
  .nav{display:flex}
  .hero__grid{grid-template-columns: 1.15fr .85fr}
  .cards{grid-template-columns: repeat(4, 1fr)}
  .included{grid-template-columns: .9fr 1.1fr}
  .contact{grid-template-columns: repeat(3, 1fr)}
  .btn--contact{width:auto}
  .footer__inner{flex-direction:row;align-items:center;justify-content:space-between}
}
