:root{
  --bg:#111316;
  --panel:#171a1f;
  --panel2:#1c2027;
  --text:#e8ebf0;
  --muted:#a9b0bb;
  --border:rgba(232,235,240,.10);
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:22px;
  --max:1120px;
  --silver1:#c9cdd4;
  --silver2:#8d96a3;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; background: radial-gradient(900px 520px at 12% 0%, rgba(201,205,212,.12), transparent 60%),
radial-gradient(900px 520px at 95% 12%, rgba(141,150,163,.10), transparent 60%),
var(--bg); color:var(--text);}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
/* watermark logo */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:url("assets/logo.png");
  background-repeat:no-repeat;
  background-position: 88% 14%;
  background-size: min(1100px, 86vw);
  opacity:.04;
  pointer-events:none;
  z-index:-1;
}

/* top bar */
.topbar{
  position:sticky; top:0; z-index:10;
  background: rgba(17,19,22,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; flex-wrap:wrap;}
.brand{display:flex; align-items:center; gap:14px; min-width:280px;}
.brand img{height:54px; width:auto; display:block;} /* bigger */
.brand .tag{font-size:12px; color:var(--muted); border:1px solid var(--border); padding:7px 10px; border-radius:999px; background: rgba(255,255,255,.03);}
.actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
.navlinks{display:flex; gap:10px; flex-wrap:wrap;}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.pill:hover{background: rgba(255,255,255,.06);}
select{
  background: #1c2027; 
  color: #ffffff;
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:14px;
  outline:none;
}

/* HERO */
.hero{padding: 26px 0 26px;}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
@media (max-width: 980px){ .hero-wrap{grid-template-columns:1fr;} }

.hero-left{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.62)),
    url("assets/scania.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  position:relative;
}
.hero-left .pad{padding:12px;}
.hero-logo{height:142px; width:auto; display:block; margin: 0 auto 12px; filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));}
.h1{font-size: clamp(34px, 4.2vw, 56px); line-height:1.05; margin:0 0 10px; letter-spacing:-.02em;}
.lead{color: rgba(232,235,240,.88); line-height:1.7; margin:0 0 16px; max-width: 58ch;}
.btnrow{display:flex; gap:10px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.btn.primary{
  background: linear-gradient(180deg, rgba(201,205,212,.18), rgba(255,255,255,.06));
  border-color: rgba(201,205,212,.22);
}
.btn:hover{background: rgba(255,255,255,.10);}

/* right column: sections stack */
.stack{display:grid; gap:16px;}
.panel{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  overflow:hidden;
}
.panel .pad{padding:18px;}
.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;}
@media (max-width: 560px){ .kpis{grid-template-columns:1fr;} }
.kpi{border:1px solid var(--border); border-radius: 16px; padding:12px 14px; background: rgba(0,0,0,.18);}
.kpi b{font-size:15px; color: var(--silver1);}
.small{font-size:12px; color: var(--muted);}

/* image band */
.band{display:grid; grid-template-columns: 1fr 1fr; gap:0;}
@media (max-width: 980px){ .band{grid-template-columns:1fr;} }
.band .img{
  min-height: 190px;
  background-size: cover;
  background-position: center;
  position:relative;
}
.band .img::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
}
.band .txt{padding:18px;}
.band h3{margin:0 0 6px; font-size:18px;}
.band p{margin:0; color: var(--muted); line-height:1.7;}

/* sections */
.section{padding: 8px 0 26px;}
.section h2{margin: 0 0 12px; font-size:22px; letter-spacing:-.01em;}
.featurelist{display:grid; gap:12px;}
.feature{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:12px;
  padding:16px 16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.dot{
  width: 12px; height:12px; border-radius:999px;
  background: linear-gradient(180deg, rgba(201,205,212,.75), rgba(141,150,163,.25));
  margin-top: 6px;
}
.feature h3{margin:0; font-size:18px;}
.feature p{margin:6px 0 0; color: var(--muted); line-height:1.7;}

/* About + contact */
.split{display:grid; grid-template-columns: 1fr 1fr; gap:16px;}
@media (max-width: 980px){ .split{grid-template-columns:1fr;} }

/* company block – no ugly mid-word wrapping */
.company{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.company .line{
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (max-width: 520px){
  .company .line{white-space: normal;}
}

.footer{padding: 22px 0 34px; color: var(--muted); border-top:1px solid var(--border); margin-top: 8px;}
.anchor{scroll-margin-top: 92px;}
