/* ==========================================================================
   Flowpack Logistik — Stilmall
   Modern, responsiv design. Varumärke: amber (#FFB800) + svart.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --amber: #FFB800;
  --amber-dark: #E6A400;
  --amber-soft: #FFF4D6;
  --black: #0E0E10;
  --charcoal: #1A1B1E;
  --graphite: #26282C;
  --slate: #5A5F66;
  --muted: #8A9099;
  --line: #E7E9EC;
  --bg: #FFFFFF;
  --bg-soft: #F6F7F9;
  --bg-dark: #0E0E10;
  --white: #FFFFFF;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(14,14,16,.06);
  --shadow: 0 10px 30px rgba(14,14,16,.10);
  --shadow-lg: 0 26px 60px rgba(14,14,16,.18);

  --maxw: 1320px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
a, button, input, select, textarea, .nav__toggle { -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; color: var(--black); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
/* Notch/safe-area: håll innehåll utanför iPhones lugg i liggande läge */
@supports (padding: max(0px)) {
  .container { padding-inline: max(clamp(1.1rem, 4vw, 2.2rem), env(safe-area-inset-left)) max(clamp(1.1rem, 4vw, 2.2rem), env(safe-area-inset-right)); }
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #D7DADF; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.section--dark .eyebrow { color: var(--amber); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); margin-top: .7rem; }
.section-head p { margin-top: 1rem; color: var(--slate); font-size: 1.06rem; }
.section--dark .section-head p { color: #A9AEB6; }

.lead { font-size: 1.15rem; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: 1rem; padding: .9rem 1.5rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amber); color: var(--black); box-shadow: 0 8px 20px rgba(255,184,0,.35); }
.btn--primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,184,0,.45); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--graphite); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--black); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--black); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { border-color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.nav__menu { display: flex; align-items: center; gap: 1rem; }
.nav__menu > .btn { display: none; } /* endast i mobil-drawern */
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.4rem; }
.nav__links a {
  font-weight: 600; font-size: .98rem; color: var(--graphite);
  padding: .55rem .9rem; border-radius: 999px; position: relative;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--black); background: var(--bg-soft); }
.nav__links a.active { color: var(--black); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%);
  width: 18px; height: 3px; border-radius: 3px; background: var(--amber);
}
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.7) 42%, rgba(10,10,12,.25) 100%);
}
.hero .container { max-width: none; }
.hero__inner { padding-block: clamp(4.5rem, 12vw, 9rem); padding-inline-start: clamp(1.5rem, 4vw, 3.5rem); max-width: 760px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); color: #fff; }
.hero h1 .amber { color: var(--amber); }
.hero p { margin-top: 1.4rem; font-size: clamp(1.05rem, 2.5vw, 1.3rem); color: #D8DBE0; max-width: 560px; }
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255,184,0,.25); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 2vw, 1.4rem); }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.2rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.stat__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--amber-soft); display: grid; place-items: center; margin-bottom: 1.1rem; transition: background .3s; }
.stat__icon svg { width: 28px; height: 28px; color: var(--amber-dark); }
.stat:hover .stat__icon { background: var(--amber); }
.stat__num { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: var(--black); letter-spacing: -.03em; line-height: 1; }
.stat__num span { color: var(--amber-dark); }
.stat__title { font-size: clamp(1.05rem, 2.4vw, 1.32rem); font-weight: 800; color: var(--black); letter-spacing: -.02em; line-height: 1.22; }
.stat__label { margin-top: .45rem; font-size: .92rem; color: var(--slate); font-weight: 600; }

/* ---------- Feature / intro split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__media .float-card {
  position: absolute; bottom: -26px; left: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: .9rem; max-width: 260px;
}
.float-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-soft); display: grid; place-items: center; flex-shrink: 0; }
.float-card__icon svg { width: 24px; height: 24px; color: var(--amber-dark); }
.float-card strong { display: block; font-size: 1.4rem; color: var(--black); line-height: 1; }
.float-card small { color: var(--slate); font-size: .85rem; }

.check-list { margin-top: 1.6rem; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1.02rem; color: var(--graphite); }
.check-list svg { width: 22px; height: 22px; color: var(--amber-dark); flex-shrink: 0; margin-top: 2px; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden; height: 100%;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--amber); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--amber-soft); display: grid; place-items: center; margin-bottom: 1.2rem; transition: background .3s; }
.card__icon svg { width: 28px; height: 28px; color: var(--amber-dark); }
.card:hover .card__icon { background: var(--amber); }
.card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.card p { color: var(--slate); font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; color: var(--black); font-size: .95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card--num .card__num { font-size: 2rem; font-weight: 800; color: var(--amber); line-height: 1; }

/* dark card variant */
.section--dark .card { background: var(--charcoal); border-color: #303236; }
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: #A9AEB6; }
.section--dark .card__link { color: #fff; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--black); color: var(--amber);
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--slate); font-size: .95rem; }
.section--dark .step p { color: #D8DBE0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 1.9rem; left: 60px; right: -.7rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4rem); position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,184,0,.28), transparent 68%); }
.cta-band__text { position: relative; max-width: 560px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-band p { color: #B4B9C0; margin-top: .7rem; }
.cta-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Logos / trust ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); opacity: .75; }
.trust span { font-weight: 800; font-size: 1.1rem; color: var(--muted); letter-spacing: -.02em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,184,0,.22), transparent 66%); }
.page-hero__inner { padding-block: clamp(3.2rem, 8vw, 5.5rem); position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-top: .8rem; }
.page-hero p { margin-top: 1.1rem; color: #C4C8CE; font-size: 1.12rem; max-width: 620px; }
.breadcrumb { font-size: .85rem; color: #8A9099; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- Detailed service rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 4rem); }
.svc-row + .svc-row { border-top: 1px solid var(--line); }
.svc-row--rev .svc-row__media { order: 2; }
.svc-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.svc-row__tag { display: inline-flex; align-items: center; gap: .5rem; background: var(--amber-soft); color: var(--amber-dark); font-weight: 800; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .85rem; border-radius: 999px; }
.svc-row h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 1rem 0 .8rem; }
.svc-row p { color: var(--slate); }

/* ---------- Values / about ---------- */
.value { display: flex; gap: 1rem; }
.value__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--amber-soft); display: grid; place-items: center; flex-shrink: 0; }
.value__icon svg { width: 24px; height: 24px; color: var(--amber-dark); }
.value h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.value p { color: var(--slate); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--bg-soft); border-radius: var(--radius); }
.contact-item__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--amber); display: grid; place-items: center; flex-shrink: 0; }
.contact-item__icon svg { width: 22px; height: 22px; color: var(--black); }
.contact-item h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.contact-item p, .contact-item a { color: var(--slate); font-size: .98rem; }
.contact-item a:hover { color: var(--amber-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .45rem; color: var(--graphite); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--charcoal); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,184,0,.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.form-success { display: none; background: var(--amber-soft); border: 1px solid var(--amber); border-radius: var(--radius); padding: 1rem 1.2rem; color: var(--charcoal); font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }
.form-error { display: none; background: #FDECEC; border: 1px solid #E24B4A; border-radius: var(--radius); padding: 1rem 1.2rem; color: #A32D2D; font-weight: 600; margin-bottom: 1.2rem; }
.form-error.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---- Kontakt: Direktkontakt-kort ---- */
.dk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.2rem); box-shadow: var(--shadow-sm); }
.dk-card__title { font-size: 1.4rem; margin-bottom: 1.6rem; }
.dk-list { display: grid; gap: 1.4rem; }
.dk-item { display: flex; gap: 1rem; align-items: flex-start; }
.dk-item__icon { width: 32px; height: 32px; flex-shrink: 0; display: grid; place-items: center; color: var(--amber-dark); }
.dk-item__icon svg { width: 24px; height: 24px; }
.dk-item__icon--muted { color: var(--muted); }
.dk-item h3 { font-size: 1.05rem; margin-bottom: .12rem; }
.dk-item p { color: var(--slate); }
.dk-item a { color: var(--amber-dark); }
.dk-item a:hover { text-decoration: underline; }
.dk-divider { height: 1px; background: var(--line); margin: 1.5rem 0; }
.dk-item--hours h3 { color: var(--slate); }
.dk-item--hours p { color: var(--muted); }
.dk-lunch { white-space: nowrap; }

/* ---- Kontakt: Avdelningar ---- */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.dept-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; height: 100%; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.dept-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.dept-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.dept-card p { color: var(--slate); font-size: .95rem; }
.dept-card__contact { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); font-weight: 700; font-size: .92rem; }
.dept-card__contact a { color: var(--black); }
.dept-card__contact a:first-child:hover { color: var(--amber-dark); }
.dept-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
@media (max-width: 860px) { .dept-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq__q { width: 100%; text-align: left; padding: 1.2rem 1.4rem; font-weight: 700; font-size: 1.05rem; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s var(--ease); color: var(--amber-dark); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 1.4rem 1.3rem; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #A9AEB6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .96rem; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: #1E2024; display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--amber); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-social a:hover svg { color: var(--black); }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .7rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid #26282C; margin-top: 2.8rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .88rem; color: #6C727A; }
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom strong { color: #fff; font-weight: 700; letter-spacing: .01em; }
.footer-powered { display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.footer-powered .sep { color: #3a3d42; }

/* ---------- Legal / Integritetspolicy ---------- */
.legal { background: var(--bg-soft); }
.legal__inner { padding-block: clamp(2.5rem, 6vw, 4rem); }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.8rem; transition: color .2s; }
.back-link:hover { color: var(--black); }
.back-link svg { width: 18px; height: 18px; }
.legal__title { display: flex; align-items: center; gap: 1rem; }
.legal__title svg { width: 40px; height: 40px; color: var(--amber-dark); flex-shrink: 0; }
.legal__title h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
.legal__intro { margin-top: 1.1rem; color: var(--slate); font-size: 1.1rem; max-width: 680px; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-sm); margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.legal-card h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.legal-card h3 { font-size: 1.15rem; margin: 2rem 0 .7rem; }
.legal-card > p { color: var(--graphite); margin-bottom: 1rem; }
.legal-card ul { display: grid; gap: .55rem; margin: .3rem 0 1rem; padding-left: 0; }
.legal-card li { position: relative; padding-left: 1.4rem; color: var(--graphite); }
.legal-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.legal-card li strong { color: var(--black); }
.legal-card__note { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal-card__note a { color: var(--amber-dark); font-weight: 700; }
.legal-card__note a:hover { text-decoration: underline; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}
/* Kompakt full-meny på padda / liten laptop (760–980px) */
@media (min-width: 761px) and (max-width: 980px) {
  .nav__links { gap: .5rem; }
  .nav__links a { padding: .5rem .7rem; font-size: .95rem; }
}

/* Meny grupperad till höger nära Få offert-knappen (dator/padda, ej mobil) */
@media (min-width: 761px) {
  .nav { justify-content: flex-end; gap: 0; }
  .nav__logo { margin-right: auto; }
  .nav__actions { margin-left: clamp(1.5rem, 3vw, 2.5rem); }
}

/* Layout: staplas från padda och neråt */
@media (max-width: 860px) {
  .split, .contact-grid, .svc-row, .svc-row--rev { grid-template-columns: 1fr; }
  .split--reverse .split__media, .svc-row--rev .svc-row__media { order: 0; }
  .split__media img { aspect-ratio: 16/10; }
  .split__media .float-card { left: 12px; bottom: -20px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* Hamburgermeny först under 760px */
@media (max-width: 760px) {
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; width: 100%; gap: .5rem; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.6rem; gap: .3rem;
    transform: translateY(-16px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility .35s;
    box-shadow: var(--shadow); z-index: 90;
  }
  body.nav-open .nav__menu { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__menu a { padding: .9rem 1rem; font-size: 1.05rem; border-radius: var(--radius-sm); }
  .nav__menu a.active { background: var(--amber-soft); }
  .nav__menu a.active::after { display: none; }
  .nav__menu .btn { display: inline-flex; margin-top: .6rem; }

  /* Större tryckytor för textlänkar på touch */
  .footer-col a, .footer-contact a, .footer-bottom a, .dept-card__contact a, .breadcrumb a { display: inline-block; padding-block: 6px; }
  .dk-item p a, .legal-card a { display: inline-block; padding-block: 3px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-band__actions .btn { width: 100%; }
  .hero__cta { gap: .6rem; margin-top: 1.6rem; }
  .hero__cta .btn { width: auto; padding: .78rem 1.15rem; font-size: .95rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: clamp(1.95rem, 8.5vw, 2.4rem); }
  .stat { padding: 1.4rem .85rem; }
  .stat__icon { width: 48px; height: 48px; margin-bottom: .9rem; }
  .stat__icon svg { width: 24px; height: 24px; }
  .stat__title { font-size: 1.1rem; }
  .stat__num { font-size: 1.9rem; }
  .btn { font-size: .95rem; padding: .85rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
