/* ============================================================
   Punktflytt Malmö — styles.css
   Mobile-first. Vit bas + mörkblå + gul (CTA + garanti only).
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F3F6;
  --ink: #0E2A47;
  --ink-2: #5B6478;
  --accent: #F5C518;
  --accent-hover: #ffd028;
  --accent-text: #0E2A47;
  --line: #E5E8ED;
  --success: #0E7C66;

  --max: 1200px;
  --gutter: 20px;
  --section-pad-y: 72px;

  --radius: 0;
  --topbar-h: 60px;
}

@media (min-width: 720px) {
  :root { --gutter: 32px; --section-pad-y: 96px; }
}
@media (min-width: 1024px) {
  :root { --section-pad-y: 128px; --topbar-h: 116px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 720px) { html, body { font-size: 17px; } }
body { overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--ink-2); }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: var(--section-pad-y) 0; }
.section--alt { background: var(--bg-alt); }

/* Anchor offset for sticky topbar */
section[id] { scroll-margin-top: calc(var(--topbar-h) + 16px); }

/* Skip-link */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 8px; left: 8px;
  width: auto; height: auto; padding: 10px 16px; clip: auto;
  background: var(--ink); color: #fff; z-index: 1000; font-weight: 700;
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
.h-hero {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-section {
  font-size: clamp(28px, 4.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.h-sub {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 38em;
}
.muted { color: var(--ink-2); }
.tabular { font-variant-numeric: tabular-nums; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ink-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-text); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--ink:hover { background: #1a3a5e; color: #fff; }
.btn--lg { padding: 16px 24px; font-size: 15px; }

/* ---------- Icons ---------- */
.icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.icon--lg { width: 28px; height: 28px; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar__strip {
  display: none;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.topbar__strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 24px;
}
.topbar__strip-left { display: flex; align-items: center; gap: 8px; }
.topbar__strip-right { display: flex; align-items: center; gap: 24px; }
.dot-sep { opacity: 0.5; }
.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}
.strip-link:hover { color: var(--ink-2); }

.topbar__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo__dot {
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
}
.nav { display: none; gap: 28px; }
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a:hover { color: var(--ink-2); }

.topbar__cta { display: flex; align-items: center; gap: 12px; }
.topbar__cta .btn { display: none; }
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--ink);
}
.hamburger:hover { border-color: var(--ink); }

@media (min-width: 1024px) {
  .topbar__strip { display: block; }
  .nav { display: flex; }
  .topbar__cta .btn { display: inline-flex; }
  .hamburger { display: none; }
}

/* ---------- Mobile sheet ---------- */
.sheet {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.sheet[hidden] { display: none; }
.sheet__close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.sheet__nav { display: flex; flex-direction: column; gap: 4px; }
.sheet__nav a {
  font-size: 22px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.sheet__bottom { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.sheet__bottom .btn { width: 100%; }

/* ---------- Mobile CTA (in-flow) ---------- */
.mobile-cta-bar {
  display: flex;
  gap: 8px;
  padding: 16px var(--gutter);
  background: #fff;
  border-top: 1px solid var(--line);
}
.mobile-cta-bar .btn { flex: 1; }
@media (min-width: 1024px) {
  .mobile-cta-bar { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 32px 0 48px;
}
@media (min-width: 720px) { .hero { padding: 56px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 56px 0 64px; } }

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
  }
}
.hero__sub { margin: 20px 0 32px; }
@media (min-width: 720px) { .hero__sub { margin: 24px 0 40px; } }

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
}
@media (min-width: 640px) {
  .trust-row { flex-direction: row; gap: 32px; flex-wrap: wrap; }
}
.trust-row__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 32ch;
  font-size: 15px;
  font-weight: 500;
}
.trust-row__item .icon { color: var(--ink); margin-top: 2px; }

/* Promise card (yellow with blue border) */
.promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--accent);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 18px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease;
}
.promise:hover { transform: translateY(-1px); color: var(--ink); }
.promise__icon { color: var(--ink); display: inline-flex; }
.promise__body { display: flex; flex-direction: column; gap: 6px; }
.promise__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.promise__main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}
@media (min-width: 720px) {
  .promise { padding: 22px 26px; gap: 20px; }
  .promise__main { font-size: 20px; }
}

/* ---------- Calculator ---------- */
.calc {
  background: var(--bg-alt);
  padding: 24px;
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .calc { padding: 32px; } }

.calc__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.calc__fields { display: grid; gap: 14px; margin-bottom: 20px; }
.calc__result {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  min-height: 56px;
}
.calc__result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  flex-shrink: 0;
}
.calc__result-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
@media (min-width: 720px) { .calc__result-value { font-size: 36px; } }
.calc__result-empty {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.calc__before, .calc__note {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 4px;
}
.calc__actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.calc__actions .btn { width: 100%; }
@media (min-width: 480px) {
  .calc__actions { grid-template-columns: 1fr 1fr; }
  .calc__actions:has(> :only-child) { grid-template-columns: 1fr; }
}
.calc__after {
  font-size: 12px;
  color: var(--ink-2);
  margin: 12px 0 0;
}

/* ---------- Inputs ---------- */
.input, .select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.12s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  line-height: 1.3;
}
.input:focus, .select:focus { border-color: var(--ink); }
.input::placeholder { color: var(--ink-2); }
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230E2A47' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ---------- Garanti section (01) ---------- */
.guarantee-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .guarantee-layout { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
}
.stamp__giant {
  display: flex;
  flex-direction: column;
  background: var(--accent);
  color: var(--ink);
  padding: 28px 32px;
  border: 1.5px solid var(--ink);
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease;
}
.stamp__giant:hover { transform: translateY(-1px); color: var(--ink); }
.stamp__giant .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.stamp__giant .main {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 720px) {
  .stamp__giant { padding: 36px 40px; }
  .stamp__giant .main { font-size: 30px; }
}
.stamp__giant .sub {
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1.5px solid rgba(14,42,71,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee__lede { margin: 20px 0 32px; }
.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 32px;
}
.guarantee-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.guarantee-points .g-icon {
  color: var(--success);
  display: inline-flex;
}
.guarantee-points h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.guarantee-points p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

/* ---------- Tjänster (02) ---------- */
.svc__title { max-width: 16ch; }
.svc__lede { margin: 16px 0 40px; }

.svc-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .svc-cols { grid-template-columns: 1fr 1fr 1fr; align-items: stretch; }
}
.svc-col {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.svc-col:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .svc-col {
    padding: 40px 28px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .svc-col:first-child { padding-left: 0; }
  .svc-col:last-child { padding-right: 0; border-right: none; }
}
.chip-popular {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 12px;
}
.svc-col__name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.svc-col__desc {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.svc-col__bottom { margin-top: auto; padding-top: 24px; }
.svc-col__price {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.svc-col__price strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.svc-col__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
}
.svc-col__cta:hover { color: var(--success); border-color: var(--success); }

/* ---------- Så funkar det (03) ---------- */
.steps__title { margin-bottom: 40px; max-width: 18ch; }
@media (min-width: 720px) { .steps__title { margin-bottom: 56px; } }

.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 900px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .steps-row::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 60px;
    height: 1px;
    background: var(--line);
    z-index: 0;
  }
}
.step { position: relative; }
.step__num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 0 0 16px;
  display: inline-block;
  background: var(--bg-alt);
  padding-right: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .step__num { font-size: 96px; margin-bottom: 32px; }
}
.step__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
@media (min-width: 720px) { .step__title { font-size: 22px; } }
.step__desc {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- Priser (04) ---------- */
.prices__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .prices__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 4px;
  font-size: 13px;
  font-weight: 600;
}
.toggle button {
  background: none;
  border: none;
  padding: 8px 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.toggle button.on {
  background: #fff;
  color: var(--ink);
}
.toggle--small button { padding: 5px 12px; font-size: 12px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.price-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line);
}
.price-table thead th.th-price { text-align: right; padding-right: 0; }
.th-price-mode { text-transform: lowercase; letter-spacing: 0; font-weight: 600; }
.price-table tbody td {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: middle;
}
.price-table tbody td.svc { font-weight: 700; color: var(--ink); }
.price-table tbody td.scope { color: var(--ink-2); }
.price-table tbody td.price {
  text-align: right;
  padding-right: 0;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
  color: var(--ink);
}
/* No yellow tint on the popular price row — yellow is reserved for CTA + garanti. */

@media (max-width: 720px) {
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .price-table tbody td { padding: 0; border: none; font-size: 15px; }
  .price-table tbody td.svc { grid-column: 1; }
  .price-table tbody td.scope { grid-column: 1; font-size: 13px; }
  .price-table tbody td.price {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 17px;
  }
}

.price-strike {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.price-strike__old {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-strike__new {
  font-weight: 800;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--ink);
}
.chip-savings {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(14, 124, 102, 0.1);
  padding: 4px 8px;
  white-space: nowrap;
  margin-top: 2px;
}

.prices__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-2);
}

/* ---------- Siffrorna (05) ---------- */
.stats__title { margin-bottom: 48px; }
@media (min-width: 720px) { .stats__title { margin-bottom: 72px; } }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stat__num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 0 0 16px;
  white-space: nowrap;
}
.stat__num .suffix {
  font-size: 40px;
  font-weight: 800;
  margin-left: 2px;
  letter-spacing: -0.03em;
}
@media (min-width: 720px) {
  .stat__num { font-size: 80px; }
  .stat__num .suffix { font-size: 52px; }
}
@media (min-width: 1280px) {
  .stat__num { font-size: 88px; }
  .stat__num .suffix { font-size: 56px; }
}
.stat__label {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 18em;
}

/* ---------- Kundberättelser (06) ---------- */
.testimonials__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .testimonials__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
  }
}
.reco {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.reco__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--success);
}
.reco__rating { font-weight: 700; font-size: 17px; color: var(--ink); }
.reco__count { color: var(--ink-2); font-size: 13px; }

.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .quotes { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1024px) { .quotes { grid-template-columns: 1fr 1fr 1fr; gap: 48px 40px; } }

.quote { padding: 0; }
.quote__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--success);
}
.quote__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.quote__meta {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
}
.quote__meta strong { color: var(--ink); font-weight: 700; }

/* ---------- FAQ (07) ---------- */
.faq__title { margin-bottom: 32px; }
@media (min-width: 720px) { .faq__title { margin-bottom: 48px; } }

.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
@media (min-width: 720px) { .faq__q { font-size: 19px; padding: 28px 0; } }
.faq__q:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.faq__plus {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq__plus::before { width: 16px; height: 1.5px; }
.faq__plus::after { width: 1.5px; height: 16px; }
.faq__item.is-open .faq__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.28s ease-out, opacity 0.28s ease-out;
  color: var(--ink-2);
  font-size: 16px;
}
.faq__a-inner { overflow: hidden; }
.faq__a-inner > * { padding-bottom: 24px; max-width: 60ch; margin: 0; }
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq__a a { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* ---------- Kontakt (08) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 3fr 2fr; gap: 64px; }
}

.contact__lede { margin: 16px 0 32px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.contact-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}
.contact-toggle .label { margin-bottom: 0; }

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-error {
  color: #c1272d;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 12px 16px;
  background: rgba(193, 39, 45, 0.08);
  border-left: 3px solid #c1272d;
}

.form-thanks {
  padding: 28px 32px;
  background: #fff;
  border-left: 3px solid var(--success);
}
.form-thanks h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.form-thanks p { margin: 0; color: var(--ink-2); }

/* Contact info */
.contact__info { display: flex; flex-direction: column; gap: 8px; }
.info__head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 16px 0 12px;
}
.info__head:first-child { margin-top: 0; }
.info__addr { font-size: 18px; font-weight: 600; margin: 0 0 2px; }
.info__contact { display: flex; flex-direction: column; gap: 6px; }
.info__contact a { font-weight: 600; }
.info__contact a:hover { color: var(--success); }

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 15px;
  margin: 0;
}
.hours div { display: contents; }
.hours dt { color: var(--ink-2); margin: 0; }
.hours dd { margin: 0; font-weight: 600; color: var(--ink); }

.map {
  margin-top: 24px;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 360 / 260;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 32px;
}
@media (min-width: 720px) { .footer { padding: 80px 0 40px; } }
.footer .logo { color: #fff; }
.footer .logo__dot { background: #fff; }
.footer__logo { margin-bottom: 14px; }
.footer__tag {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  max-width: 32ch;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.foot-grid > div:first-child { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
  .foot-grid > div:first-child { grid-column: auto; }
}
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.footer a:hover { color: #fff; }
.footer li { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer__legal {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 720px) {
  .footer__legal { flex-direction: row; justify-content: space-between; gap: 16px; }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 71, 0.6);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 800px;
  margin: auto;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 32px 24px;
  align-self: center;
}
@media (min-width: 720px) {
  .modal__panel { padding: 48px 56px; max-height: calc(100vh - 64px); }
}
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 1;
}
.modal__close:hover { border-color: var(--ink); }
.modal__cta { margin-top: 32px; }

/* Legal block (used in modal) */
.legal {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 24px;
}
.legal__lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 24px;
  margin: 24px 0 32px;
}
.legal h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 32px 0 16px;
}
.legal ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 0;
}
.legal ol li {
  margin-bottom: 14px;
  padding-left: 8px;
  list-style-position: outside;
}
.legal__final {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-alt);
  font-weight: 600;
  border-left: 3px solid var(--ink);
}
.legal__note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* When modal is open, lock body scroll */
body.modal-open, body.sheet-open { overflow: hidden; }

/* ---------- Selection ---------- */
::selection { background: var(--accent); color: var(--ink); }

/* ---------- Print ---------- */
@media print {
  .topbar, .mobile-cta-bar, .modal, .sheet, .calc, .footer { display: none !important; }
  body { padding-bottom: 0; }
}
