:root{
  --bg:#0b0c0d;
  --panel:#121416;
  --text:#e9ecef;
  --muted:#b7bec6;
  --accent:#35d07f;
  --border:rgba(255,255,255,.10);
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(11,12,13,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:14px; text-decoration:none}
.brand img{height:72px; width:auto; display:block} /* större logga */
@media (max-width: 768px){ .brand img{height:52px;} }

.menu{
  display:flex; gap:18px; flex-wrap:wrap;
  align-items:center; justify-content:flex-end;
}
.menu a{
  text-decoration:none;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
  color:var(--text);
  opacity:.9;
}
.menu a:hover{opacity:1; color:var(--accent)}
.menu .cta{
  padding:10px 14px;
  border:1px solid var(--accent);
  border-radius:10px;
  color:var(--accent);
}
.menu .cta:hover{background:rgba(53,208,127,.10)}

section[id]{ scroll-margin-top: 96px; }

/* HERO med Bild1 + “textplatta” som din gamla */
.hero{
  position:relative;
  min-height:62vh;
  display:flex;
  align-items:stretch;
  border-bottom:1px solid var(--border);
  background:
    linear-gradient(to top, rgba(11,12,13,.92), rgba(11,12,13,.45) 55%, rgba(11,12,13,.18)),
    url("/assets/img/Bild1.jpg");
  background-size:cover;
  background-position:center;
}
.hero-inner{
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:end;
  padding:56px 0 44px;
}
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr; padding:44px 0 34px;}
}

.hero-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:22px 22px 18px;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,.06), rgba(255,255,255,0) 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 6px, rgba(0,0,0,0) 6px 12px),
    rgba(10,11,12,.75);
}
.hero-title{
  margin:0 0 14px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight:300;
  letter-spacing:.01em;
  color:var(--accent);
}
.hero-sub{
  margin:0;
  color:rgba(233,236,239,.72);
  font-size: clamp(15px, 1.6vw, 18px);
}
.checklist{
  list-style:none;
  margin:14px 0 0;
  padding:0;
}
.checklist li{
  margin:8px 0;
  font-size: clamp(16px, 1.7vw, 20px);
  color:var(--accent);
}
.checklist li::before{
  content:"✓";
  display:inline-block;
  width:22px;
  margin-right:8px;
  color:var(--accent);
  font-weight:700;
}

.btnrow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:600;
}
.btn.primary{border-color:var(--accent); color:var(--bg); background:var(--accent)}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{color:var(--accent); border-color:var(--accent); background:transparent}
.btn.ghost:hover{background:rgba(53,208,127,.10)}

.section{padding:54px 0; border-bottom:1px solid var(--border)}
.section h2{margin:0 0 10px; font-size:26px}
.section p{margin:0 0 14px; color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 880px){ .grid{grid-template-columns:1fr} }

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 540px){ .kv{grid-template-columns:1fr} }
.kv .item{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background:rgba(255,255,255,.02);
}
.kv .item b{display:block; margin-bottom:6px}
.kv .item span{color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 880px){ .split{grid-template-columns:1fr} }

.figure{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#000;
}
.figure img{display:block; width:100%; height:auto}

.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background:rgba(255,255,255,.02);
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:700}
.faq .ans{color:var(--muted); margin-top:10px}

label{display:block; font-weight:600; margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(53,208,127,.75)}
textarea{min-height:140px; resize:vertical}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 720px){ .form-row{grid-template-columns:1fr} }
.small{font-size:13px}
.hr{height:1px; background:var(--border); margin:14px 0}
.notice{
  border:1px solid rgba(53,208,127,.35);
  background: rgba(53,208,127,.08);
  border-radius:14px;
  padding:12px 14px;
  margin: 14px 0 0;
  color:var(--text);
}

.footer{padding:26px 0; color:var(--muted)}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--accent)}