/* ─────────────────────────────────────────
   AVACTI 3.0 — Design System
   Font: Space Grotesk + Roboto Condensed
   Accent: #984447 Rosewood
   Typsnitt självhostade lokalt (assets/fonts) för snabb rendering utan extern kedja.
───────────────────────────────────────── */

/* ─── Självhostade typsnitt ─── */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/robotocondensed-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/robotocondensed-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/spacegrotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/spacegrotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Tokens ─── */
:root {
  --bg-0:    #1b1a1a;
  --bg-1:    #222120;
  --bg-2:    #2a2827;
  --bg-3:    #332f2e;
  --border:  rgba(247,246,242,0.08);
  --border-s: rgba(247,246,242,0.14);

  --text-1:  #f7f6f2;
  --text-2:  #ede7de;
  --text-3:  #9a9180;

  --accent:       #984447;
  --accent-light: #b85558;
  --accent-dim:   rgba(152, 68, 71, 0.10);
  --accent-hover: #7d3639;

  /* System, ur brand guiden (RGB 117 119 97). Ljusare variant för läsbarhet
     mot mörk bakgrund. Används enbart som "detta ingår"-signal. */
  --system:       #757761;
  --system-light: #9aa082;
  --system-dim:   rgba(117, 119, 97, 0.14);

  --font:         'Space Grotesk', system-ui, sans-serif;
  --font-heading: 'Roboto Condensed', Arial Narrow, sans-serif;

  --nav-h:   0px;
  --nav-pill-h: 52px;
  --max-w:   1200px;
  --pad:     clamp(20px, 5vw, 80px);

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    180ms;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-1);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-1);
  text-wrap: balance; /* jämnar ut radlängderna så inget ensamt ord hamnar på sista raden */
}

h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }
p  { color: var(--text-2); }

.lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: #fff;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── Layout ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.section--tight {
  padding: clamp(40px, 5vw, 72px) 0;
}
.section--dark { background: var(--bg-1); }
.section--card { background: var(--bg-2); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section__header p {
  margin-top: 16px;
  font-size: 18px;
}
.section__header--wide { max-width: 1100px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ─── Video som syns bara genom tjänstekorten (desktop) ─── */
.svc-video-on { position: relative; overflow: hidden; }
.svc-clip-def { position: absolute; width: 0; height: 0; }
.svc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  filter: brightness(0.6);
  pointer-events: none;
  clip-path: url(#svcClip); /* tomt tills JS fyller det = dolt */
}
.svc-video-on > .container { position: relative; z-index: 1; }
/* Frostad, halvtransparent kortbakgrund så videon syns igenom (desktop + mobil) */
.svc-video-on .card {
  background: rgba(20, 18, 18, 0.42);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t), background var(--t), backdrop-filter var(--t);
}
@media (min-width: 901px) {
  /* hover: dölj videon, kör accent-röd bakgrund + ljust innehåll */
  .svc-video-on .card:hover {
    background: var(--accent);
    border-color: var(--accent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .svc-video-on .card:hover .card__title,
  .svc-video-on .card:hover .card__arrow { color: #fff; }
  .svc-video-on .card:hover .card__desc { color: rgba(255,255,255,0.9); }
  .svc-video-on .card:hover .card__icon { background: rgba(255,255,255,0.16); }
  .svc-video-on .card:hover .card__icon svg { color: #fff; }
}
@media (max-width: 900px) {
  .svc-video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-video { display: none; }
}
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* håller etiketten centrerad när knappen sträcks (t.ex. flex:1 på mobil) */
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-s);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--text-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--r-lg);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ─── Pill / Badge ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.pill--accent {
  background: var(--accent-dim);
  border-color: rgba(167,30,52,0.25);
  color: var(--accent-light);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  z-index: 1000;
}
.nav.scrolled { background: none; }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: auto;
  padding: 12px 16px 12px 28px;
  width: min(920px, calc(100vw - 48px));
  background: rgba(9, 7, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.nav__logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-1);
  flex-shrink: 0;
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.nav__logo span { color: var(--accent); }
.nav__logo-img {
  height: 22px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 4px;
}

.nav__link {
  padding: 8px 13px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--t), background var(--t);
  position: relative;
}
.nav__link:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav__link.active { color: var(--text-1); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item .nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__item .nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background: rgba(9, 7, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-group { margin-bottom: 8px; }
.nav__dropdown-group h4,
.nav__dropdown-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
  padding: 0 8px;
}

.nav__dropdown-link {
  display: block;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: color var(--t), background var(--t);
}
.nav__dropdown-link:hover { color: var(--text-1); background: rgba(255,255,255,0.08); }

.nav__cta {
  margin-left: 8px;
  padding: 9px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  border-radius: 999px !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 88px var(--pad) 40px;
  overflow-y: auto;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  pointer-events: none;
}
.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav__mobile-link:hover { color: var(--text-1); }

.nav__mobile-group { margin-top: 8px; }
.nav__mobile-group-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 12px 0 8px;
}
.nav__mobile-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-sub a {
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav__mobile-sub a:hover { color: var(--text-1); background: var(--bg-2); }

.nav__mobile-cta { margin-top: 24px; }
.nav__mobile-cta .btn { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 0;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,26,26,0.45);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(120px, 15vw, 180px) var(--pad) clamp(80px, 10vw, 120px);
  width: 100%;
}

.hero__content { max-width: 740px; }

.hero__title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: normal;
  margin-bottom: 24px;
}
.hero__title .line-accent { color: var(--accent-light); }

.hero__desc {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #fff;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

/* ─── Marquee ─── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg-1);
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  padding: 0 20px;
  transition: color var(--t);
}
.marquee__item:hover { color: var(--accent-light); }
.marquee__sep {
  color: var(--accent);
  padding: 0 4px;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sub-hero for inner pages */
.hero-sub {
  padding: clamp(100px, 14vw, 140px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg-0);
}
.hero-sub__inner {
  max-width: 760px;
}

/* Fylld hero: bilden ligger bakom hela sektionen istället för i en ruta bredvid
   texten. Sparar en halv skärm på mobil och matchar startsidans videohero. */
.hero-sub--fill {
  position: relative;
  overflow: hidden;
  padding: clamp(130px, 17vw, 190px) 0 clamp(64px, 8vw, 100px);
}
.hero-sub__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}
.hero-sub__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(27,26,26,0.92) 0%, rgba(27,26,26,0.72) 55%, rgba(27,26,26,0.55) 100%),
    rgba(27,26,26,0.35);
}
.hero-sub--fill > .container { position: relative; z-index: 2; }
.hero-sub--fill .hero-sub__inner { max-width: 620px; }
.hero-sub--fill .lead { color: #fff; }
/* Enskild bild kan behöva ett annat utsnitt: flyttar ned motivet så att det
   hamnar mitt i heron istället för ovanför mitten. Bara desktop – på mobil är
   heron högre och utsnittet redan bra. */
@media (min-width: 861px) {
  .hero-sub__bg--lower { object-position: center 25%; }
}
@media (max-width: 860px) {
  /* Smal skärm: texten ligger över hela bredden, så mörka ned jämnt istället
     för i sidled så att rubrik och brödtext får samma kontrast. */
  .hero-sub__overlay {
    background:
      linear-gradient(to bottom, rgba(27,26,26,0.80) 0%, rgba(27,26,26,0.72) 60%, rgba(27,26,26,0.88) 100%),
      rgba(27,26,26,0.30);
  }
}

/* ─── Cards ─── */
.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card:hover {
  border-color: var(--border-s);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card--link { cursor: pointer; }
.card--flat:hover { transform: none; box-shadow: none; border-color: rgba(255,92,53,0.2); }

/* ─── Legal / policy-sidor ─── */
.legal { max-width: 780px; }
.legal h2 { font-size: 22px; margin: 44px 0 14px; }
.legal h3 { font-size: 17px; margin: 28px 0 8px; }
.legal p { margin-bottom: 14px; color: var(--text-2); line-height: 1.75; }
.legal ul { margin: 0 0 18px 22px; }
.legal li { margin-bottom: 8px; color: var(--text-2); line-height: 1.65; }
.legal a { color: var(--accent-light); }
.legal a:hover { color: #fff; }
.card--accent:hover {
  border-color: rgba(167,30,52,0.3);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 20px; height: 20px; color: var(--accent); }

/* "Vad ingår" på tjänstesidorna: grön ikon skiljer korten från startsidans
   tjänstekort och signalerar att punkten ingår. Rött förblir handlingsfärg. */
#vad-ingar .card__icon { background: var(--system-dim); }
#vad-ingar .card__icon svg { color: var(--system-light); }
#vad-ingar .include-item svg,
#vad-ingar .feature-item__icon svg { color: var(--system-light); }

.card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-1);
}
.card__desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
/* reservera tre rader så "Läs mer"-pilen hamnar på samma nivå i alla kort */
.card--link .card__desc { min-height: 72px; }
.card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  white-space: nowrap;
}
.card__arrow svg { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--t); }
.card--link:hover .card__arrow svg { transform: translateX(4px); }

/* ─── Feature list (checkmarks) ─── */
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-2);
}
.feature-item__icon {
  width: 22px;
  height: 22px;
  background: var(--accent-dim);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item__icon svg { width: 12px; height: 12px; color: var(--accent); }

/* ─── Stats ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stats-row--duo { grid-template-columns: repeat(2, 1fr); }
.stat {
  background: var(--bg-1);
  padding: 32px 24px;
  text-align: center;
}
.stat__number {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__number span { color: var(--accent-light); }
.stat__label {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── Logo wall ─── */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 48px;
}
.logo-item {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-transform: uppercase;
  transition: color var(--t);
}
.logo-item:hover { color: var(--text-2); }

/* ─── Light / beige section (Kunder) ─── */
#kunder, #om-oss { scroll-margin-top: 80px; }
.section--beige { background: #f7f6f2; }
.section--beige .section__header { max-width: 860px; }
.section--beige .section__header h2 { color: #1b1a1a; }
.section--beige .section__header p { color: #6b6558; }
.container--wide {
  max-width: min(1680px, 94vw);
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}
.container--mid {
  max-width: min(1440px, 88vw);
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 620px) {
  .client-wall { grid-template-columns: 1fr; gap: 12px; }
}
.client-cell {
  background: #fff;
  border: 1px solid rgba(27,26,26,0.06);
  border-radius: var(--r);
  aspect-ratio: 16 / 7;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
}
.client-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--t), opacity var(--t);
}
.client-cell:hover img { filter: none; opacity: 1; }
.client-cell--pad { padding: 24px 36px; }

.reviews { margin-top: 72px; }
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.reviews__score {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #1b1a1a;
}
.reviews__stars { color: #f5b400; letter-spacing: 2px; font-size: 20px; }
.reviews__meta { font-size: 14px; color: #6b6558; }

.reviews__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 80s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__marquee { overflow-x: auto; }
  .reviews__track { animation: none; }
}
.review-card {
  flex: 0 0 380px;
  width: 380px;
  background: #fff;
  border: 1px solid rgba(27,26,26,0.07);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__stars { color: #f5b400; letter-spacing: 1px; font-size: 15px; }
.review-card p { color: #33302b; font-size: 15px; line-height: 1.65; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; color: #1b1a1a; font-size: 14px; }
.review-card__src { font-size: 12px; color: #8a8272; }
.reviews__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t);
}
.reviews__link:hover { color: var(--accent-hover); }

/* ─── Process ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
}
.process-step h3 { margin-bottom: 12px; font-size: 19px; }
.process-step p { font-size: 15px; }

/* ─── Process (bilder i rad, text tonar upp över aktiv bild) ─── */
.pacc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pstep {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.pstep__media { position: absolute; inset: 0; }
.pstep__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pstep.is-active .pstep__media img { transform: scale(1.04); }
.pstep__num {
  position: absolute;
  right: 22px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 246, 242, 0.75);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.pstep.is-active .pstep__num { opacity: 0; }
.pstep__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(20,18,18,0.92) 0%, rgba(20,18,18,0.55) 42%, rgba(20,18,18,0) 78%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pstep.is-active .pstep__overlay { opacity: 1; }
.pstep__overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
  transform: translateY(12px);
  transition: transform 0.45s var(--ease);
}
.pstep__overlay p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 246, 242, 0.92);
  transform: translateY(12px);
  transition: transform 0.45s var(--ease) 0.05s;
}
.pstep.is-active .pstep__overlay h3,
.pstep.is-active .pstep__overlay p { transform: translateY(0); }

@media (max-width: 760px) {
  .pacc { grid-template-columns: 1fr; gap: 32px; }
  /* bild överst, text under */
  .pstep { position: static; aspect-ratio: auto; overflow: visible; border-radius: 0; background: none; }
  .pstep__media {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .pstep.is-active .pstep__media img { transform: none; }
  /* alla nummer alltid synliga på mobil */
  .pstep__num,
  .pstep.is-active .pstep__num { opacity: 0.55; }
  .pstep__overlay {
    position: static;
    inset: auto;
    opacity: 1;
    padding: 16px 2px 0;
    background: none;
  }
  .pstep__overlay h3 { color: var(--text-1); transform: none; }
  .pstep__overlay p { color: var(--text-2); transform: none; }
}

/* ─── FAQ ─── */
.faq-list { display: grid; gap: 8px; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  transition: color var(--t);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease), padding 300ms var(--ease);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 15px; line-height: 1.7; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 18px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .actions { justify-content: center; }

/* ─── Contact ─── */
.contact-form {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-1);
  transition: border-color var(--t);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h3 { margin-bottom: 8px; }

/* ─── Contact info block ─── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-item__label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-info-item__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.contact-info-item__value a { transition: color var(--t); }
.contact-info-item__value a:hover { color: var(--accent); }

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 232px);
  justify-content: center;
  gap: 24px;
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card__role { white-space: normal; }
}
.team-card { margin: 0; }
.team-card__img {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-2);
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-card__img img { transform: scale(1.04); }
.team-card h3 { font-size: 17px; margin-bottom: 4px; color: var(--text-1); }
.team-card__role {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
  white-space: nowrap;
}
.team-card__link {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t);
}
.team-card__link:hover { color: var(--accent-light); }
.team-card__book {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  transition: color var(--t);
}
.team-card__book:hover { color: #fff; }

/* ─── Service hero include section ─── */
.service-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: border-color var(--t), color var(--t);
}
.include-item:hover {
  border-color: rgba(167,30,52,0.3);
  color: var(--text-1);
}
.include-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ─── Why us ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}
.why-item {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.why-item__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.why-item h3 { font-size: 18px; margin-bottom: 10px; }
.why-item p { font-size: 15px; }

/* ─── Client cases ─── */
.case-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color var(--t), transform var(--t);
}
.case-card:hover {
  border-color: var(--border-s);
  transform: translateY(-2px);
}
.case-card__client {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.case-card__quote {
  font-size: 17px;
  color: var(--text-1);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.case-card__meta { font-size: 14px; color: var(--text-3); }
.case-card__result {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-result-stat {}
.case-result-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.case-result-stat span { font-size: 13px; color: var(--text-3); }

/* ─── Footer ─── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 7vw, 80px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 4fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer .container { max-width: 1360px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px 44px;
}
.footer__brand {}
.footer__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 12px;
  display: block;
}
.footer__logo span { color: var(--accent); }
.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 220px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.footer__social-link:hover {
  border-color: var(--border-s);
  background: var(--bg-3);
}
.footer__social-link svg { width: 16px; height: 16px; color: var(--text-2); }

.footer__col h3,
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t);
}
.footer__link:hover { color: var(--text-1); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-3);
}
.footer__org { font-size: 13px; color: var(--text-3); }

/* ─── Two-col layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.two-col--reverse .two-col__img { order: -1; }

/* ─── Highlight box ─── */
.highlight-box {
  background: var(--accent-dim);
  border: 1px solid rgba(167,30,52,0.2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}
.highlight-box p { color: var(--text-1); font-size: 15px; }

/* ─── Price card ─── */
.price-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: center;
}
.price-card--featured {
  border-color: var(--accent);
  background: var(--bg-2);
}
.price-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.price-card--featured .price-card__label { color: var(--accent); }
.price-card__price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}
.price-card__price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; }
.price-card__price sub { font-size: 16px; font-weight: 500; color: var(--text-3); }
.price-card__desc { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }
.price-card__features { text-align: left; margin-bottom: 28px; }
.price-cta .btn { width: 100%; justify-content: center; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.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;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-includes { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav__mobile-sub { grid-template-columns: 1fr; }
  .hero__stats { gap: 8px; }
  .cta-banner { border-radius: var(--r-lg); }
  .stats-row { background: none; border: none; gap: 12px; }
  .stat {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
  }
}

/* ─── Cookie-samtycke ─── */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100vw - 32px));
  background: var(--bg-1);
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 20px 24px;
  animation: cc-in 0.4s ease both;
}
@keyframes cc-in { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }
.cookie-consent__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-consent__text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}
.cookie-consent__text a { color: var(--text-1); text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent__btn { padding: 10px 22px; font-size: 14px; }
.cookie-consent__options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cc-opt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  cursor: pointer;
}
.cc-opt strong { color: var(--text-1); display: block; margin-bottom: 2px; }
.cc-opt input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.cc-opt input:disabled { cursor: not-allowed; opacity: 0.6; }
@media (max-width: 560px) {
  .cookie-consent__actions { width: 100%; flex-wrap: wrap; }
  .cookie-consent__btn { flex: 1; }
}
