/* ============================================================
   Quick Solution AS – redesign (utkast)
   ============================================================ */

:root {
  --red: #e11021;
  --red-600: #c20d1b;
  --ink: #0e1116;
  --ink-2: #1a1f27;
  --muted: #5b6470;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --white: #ffffff;

  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(14, 17, 22, 0.12);
  --shadow-sm: 0 8px 24px rgba(14, 17, 22, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typografi ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: .3px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: 1.3rem; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .82rem; color: var(--red);
}
.eyebrow-dark { color: var(--red); }

/* ---------- Knapper ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .8px; border: 2px solid transparent; border-radius: 8px;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 15px 28px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-600); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================ Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand-logo { height: 66px; width: auto; }

.main-nav { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-list > li > a {
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; font-size: .92rem; padding: 10px 14px; border-radius: 6px;
  color: var(--ink-2); transition: color .2s ease, background .2s ease;
}
.nav-list > li > a:hover { color: var(--red); }
.nav-cta { margin-left: 8px; }
.nav-cta a { color: #fff !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { height: 3px; width: 100%; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }

/* ============================================================ Hero */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,17,22,.92) 0%, rgba(14,17,22,.72) 42%, rgba(14,17,22,.25) 100%),
    linear-gradient(0deg, rgba(14,17,22,.55) 0%, rgba(14,17,22,0) 45%);
}
.hero-inner { position: relative; z-index: 2; color: #fff; padding: 90px 22px; max-width: 760px; }
.hero-inner h1 { margin: 16px 0 18px; }
.hero-inner .hl { color: var(--red); }
.hero-lead { font-size: 1.18rem; color: #d7dbe0; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: .86rem; color: #eef0f2;
}
.hero-trust li { position: relative; padding-left: 22px; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; background: var(--red); border-radius: 50%;
}

/* ============================================================ Side-topp (undersider) */
.page-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,17,22,.92) 0%, rgba(14,17,22,.74) 55%, rgba(14,17,22,.45) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 132px 0 64px; max-width: 720px; }
.page-hero-inner h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 14px 0 16px; }
.page-hero-inner p { color: #d7dbe0; font-size: 1.1rem; max-width: 560px; }
.page-hero-inner .btn { margin-top: 26px; }

/* ============================================================ Seksjoner (felles) */
.section { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { margin: 12px 0 16px; }
.section-sub { color: var(--muted); font-size: 1.06rem; }

/* ============================================================ Tjenester */
.section-services { background: var(--bg-soft); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 22px 22px 26px; }
.service-body h3 { margin-bottom: 8px; }
.service-body p { color: var(--muted); font-size: .96rem; }
.service-grid-3 { grid-template-columns: repeat(3, 1fr); }
.services-cta { text-align: center; margin-top: 46px; }
.service-list { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.service-list li { position: relative; padding-left: 22px; font-size: .93rem; color: var(--ink-2); }
.service-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* Hva gjør oss annerledes */
.usp-block { margin-top: 62px; }
.usp-title { text-align: center; margin-bottom: 34px; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.usp-item h4 { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: 1.02rem; margin-bottom: 8px; }
.usp-item p { color: var(--muted); font-size: .93rem; }

/* Slik kommer du i gang */
.section-steps { background: var(--bg-soft); }
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 28px; box-shadow: var(--shadow-sm); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; border-radius: 50%; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }
.notice { display: flex; gap: 16px; align-items: flex-start; margin-top: 34px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 10px; padding: 22px 24px; box-shadow: var(--shadow-sm); }
.notice-tag { flex: none; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: .74rem; color: #fff; background: var(--red); padding: 5px 12px; border-radius: 20px; margin-top: 3px; }
.notice p { color: var(--ink-2); font-size: .97rem; }

/* Klikkbart tjenestekort */
.service-card { position: relative; }
.service-more {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .6px; font-size: .82rem; color: var(--red);
}
.service-more::after { content: ""; position: absolute; inset: 0; }
.service-card:hover .service-more { color: var(--red-600); }

/* ============================================================ Tjeneste-detaljside */
.detail-section { background: var(--white); }
.detail-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.detail-text h2 { margin: 10px 0 18px; }
.detail-text p { color: var(--muted); margin-bottom: 16px; }
.detail-text .btn { margin-top: 8px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
}
.info-card h3 { margin-bottom: 18px; }
.info-cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.detail-back { display: inline-block; margin-bottom: 6px; font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; color: #d7dbe0; }
.detail-back:hover { color: #fff; }

/* ============================================================ Facebook-feed */
.section-facebook { background: var(--bg-soft); }
.fb-grid { display: grid; grid-template-columns: 1fr 500px; gap: 56px; align-items: center; }
.fb-intro h2 { margin: 12px 0 16px; }
.fb-intro p { color: var(--muted); margin-bottom: 24px; max-width: 460px; }
.fb-wrap { display: flex; justify-content: center; }
.fb-feed { width: 100%; max-width: 500px; }
.fb-feed iframe { width: 100%; border: none; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
.fb-placeholder {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid #1877f2;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 36px 28px; text-align: center;
}
.fb-placeholder .fb-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%; background: #1877f2; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; margin-bottom: 16px;
}
.fb-placeholder p { color: var(--muted); margin-bottom: 18px; }
.fb-placeholder .btn { margin-bottom: 16px; }
.fb-alt { margin-bottom: 0 !important; font-size: .9rem; }
.fb-alt a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* ============================================================ Om oss */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; }
.about-badge {
  position: absolute; left: -18px; bottom: -18px; background: var(--red); color: #fff;
  padding: 18px 24px; border-radius: 12px; box-shadow: var(--shadow); text-align: center;
}
.about-badge-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2rem; line-height: 1; }
.about-badge-txt { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-text h2 { margin: 12px 0 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.feature-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 32px; color: var(--ink-2); font-weight: 500; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ============================================================ Trygg transport */
.section-trygg { background: var(--white); }
.trygg-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 60px; align-items: center; }
.trygg-text h2 { margin: 12px 0 18px; }
.trygg-text p { color: var(--muted); margin-bottom: 16px; }
.trygg-text .btn { margin-top: 10px; }
.trygg-media { display: flex; align-items: center; justify-content: center; }
/* Illustrasjonen er lagret på hvit bakgrunn – multiply lar det hvite smelte inn
   i seksjonsfargen slik at bare de røde stregene vises */
.trygg-media img { width: 100%; max-width: 560px; height: auto; mix-blend-mode: multiply; }

/* ============================================================ CTA-stripe */
.cta-band { background: var(--ink); color: #fff; padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { color: #c8ccd2; max-width: 520px; }

/* ============================================================ Kontakt */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { margin: 12px 0 16px; }
.contact-text { color: var(--muted); margin-bottom: 14px; }
.contact-list { list-style: none; margin-top: 30px; display: grid; gap: 20px; }
.contact-list li { display: grid; gap: 2px; }
.ci-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; color: var(--muted); }
.contact-list a, .contact-list li > span:last-child { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.req { color: var(--red); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: .98rem; background: var(--bg-soft); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(225, 16, 33, .12);
}
.field textarea { resize: vertical; }
.field input[type="file"] { padding: 10px; background: #fff; cursor: pointer; }
.hidden-field { display: none; }
.contact-form .btn { margin-top: 8px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--red); text-decoration: underline; }
.form-status { font-size: .9rem; margin-top: 12px; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-sending { color: var(--muted); }
.form-status.is-ok { color: #1a7f4b; }
.form-status.is-error { color: var(--red); }

/* ============================================================ Juridisk / tekstside */
.legal { max-width: 820px; margin-inline: auto; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.5rem; text-transform: none; letter-spacing: 0; margin: 36px 0 12px; }
.legal p { color: var(--ink-2); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 1.2rem; color: var(--ink-2); }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal a:hover { color: var(--red-600); }

/* ============================================================ Footer */
.site-footer { background: var(--ink); color: #cfd3d9; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding: 58px 22px 44px; align-items: start; text-align: center; }
.footer-logo-link { display: inline-block; margin-bottom: 18px; transition: opacity .2s ease; }
.footer-logo-link:hover { opacity: .8; }
.footer-logo { height: 64px; display: block; }
.footer-brand p { max-width: 340px; font-size: .96rem; margin-inline: auto; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-nav ul, .footer-contact ul { list-style: none; display: grid; gap: 10px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--red); }
.footer-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.footer-map iframe {
  width: 100%; height: 180px; border: 0; display: block; background: #1a1f27;
  /* Gjør Google-kartet mørkt så det matcher den mørke footeren/merkevaren */
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}
.map-placeholder {
  width: 100%; min-height: 150px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); color: #cfd3d9; padding: 20px 18px;
}
.map-placeholder p { font-size: .85rem; margin: 0; max-width: 300px; }
.map-alt a { color: #fff; text-decoration: underline; }
.map-alt a:hover { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 20px; font-size: .85rem; color: #9aa0a8; }

/* ============================================================ Cookie-samtykke */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--ink); color: #e7e9ec;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .3);
  animation: cookie-up .3s ease;
}
@keyframes cookie-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: var(--container); margin-inline: auto; padding: 18px 22px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1 1 380px; margin: 0; font-size: .92rem; line-height: 1.6; }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-deny { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.cookie-deny:hover { background: #fff; color: var(--ink); border-color: #fff; }

.footer-bottom a { color: inherit; text-decoration: underline; }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================ Responsive */
@media (max-width: 991px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid-3, .usp-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 34px; }
  .fb-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media img { height: 380px; }
  .trygg-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .main-nav { position: relative; }
  .nav-list {
    position: absolute; right: 0; top: calc(100% + 14px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow); padding: 10px; min-width: 220px; display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list > li > a { display: block; }
  .nav-cta { margin: 6px 0 0; }
  .nav-cta a { display: block; text-align: center; }

  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { min-height: 88vh; }
  .hero-bg { object-position: center 55%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 575px) {
  .service-grid, .service-grid-3, .usp-grid, .steps-grid { grid-template-columns: 1fr; }
  .info-cards-2 { grid-template-columns: 1fr; }
  .notice { flex-direction: column; gap: 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-trust { gap: 14px 24px; }
  .contact-form { padding: 22px; }
  .about-badge { left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- 404-side ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(225,16,33,.18), transparent 60%),
    var(--ink);
  color: var(--white);
  padding: 90px 0;
}
.notfound-inner { max-width: 620px; }
.notfound-code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--red);
}
.notfound h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin: 6px 0 14px;
}
.notfound p { color: #c3c9d2; margin-bottom: 30px; font-size: 1.05rem; }
.notfound-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.notfound .btn-light {
  background: var(--white); color: var(--ink);
}
.notfound .btn-light:hover { background: #eaecef; }
