/* ═══════════════════════════════════════════════════════
   ZEBRA MEDIA – Shared Landing Page Styles
   Light Theme – Zebra Media Graphic Profile
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f2ede7; }
::-webkit-scrollbar-thumb { background: #c9ad88; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9D733B; }

:root {
  --dark:      #f8f4ef;   /* page background – warm off-white */
  --dark-2:    #ffffff;   /* card / section white */
  --dark-3:    #f2ede7;   /* alt section – warm light */
  --dark-4:    #e8e0d5;   /* deeper warm */
  --hero-bg:   #1e1407;   /* hero stays rich warm dark */
  --gold:      #9e733c;
  --gold-dark: #9e733c;
  --gold-glow: rgba(157,115,59,.18);
  --gold-lt:   #9e733c;
  --white:     #1a1a1a;   /* main text (dark on light bg) */
  --muted:     #6b6360;   /* secondary text */
  --border:    rgba(0,0,0,.09);
  --shadow:    0 2px 20px rgba(0,0,0,.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,.10);
  --radius:    12px;
}

/*Arvet fra zedbramedia.no*/
:root {
--kobber: #9e733c;
--svart: #000000;
--kullsvart: #2F3133;
--tinngraa: #636566;
--lysgraa: #F3F3F3;
}
 
/* profilfonter start */
 
@font-face{
font-family:ZebraMedia;
src:local(zebra-media-book),url("/prosjekter/zebra-media/assets/fonts/WOFF2/zebra-media-book.woff2") format("woff2");
font-weight:300;
font-style:normal;
font-stretch:normal
}


@font-face{
font-family:ZebraMedia;
src:local(zebra-media-news),url("/prosjekter/zebra-media/assets/fonts/WOFF2/zebra-media-news.woff2") format("woff2");
font-weight:400;
font-style:normal;
font-stretch:normal
}


@font-face{
font-family:ZebraMedia;
src:local(zebra-media-medium),url("/prosjekter/zebra-media/assets/fonts/WOFF2/zebra-media-medium.woff2") format("woff2");
font-weight:500;
font-style:normal;
font-stretch:normal
}


@font-face{
font-family:ZebraMedia;
src:local(zebra-media-bold),url("/prosjekter/zebra-media/assets/fonts/WOFF2/zebra-media-bold.woff2") format("woff2");
font-weight:600;
font-style:normal;
font-stretch:normal
}


h1, h2, h3, h4, h5, h6 {
font-family: ZebraMedia,Arial,sans-serif !important;
font-weight:600 !important;
}
 
/* profilfonter end */
 

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
p, li { overflow-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.8s ease, backdrop-filter 0.8s ease, box-shadow 0.8s ease, border-color 0.8s ease;
}
/* Liquid glass top bar – always visible */
.nav.solid {
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: none;
  padding: 14px 48px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.nav.solid .nav-links a { color: rgba(20,12,4,.62); }
.nav.solid .nav-links a:hover { color: #1a1a1a; background: rgba(0,0,0,.055); }
.nav.solid .nav-dropdown-trigger { color: rgba(20,12,4,.62); }
.nav.solid .nav-dropdown-trigger:hover { color: #1a1a1a; background: rgba(0,0,0,.055); }
.nav.solid .btn-nav-secondary {
  background: transparent;
  color: rgba(20,12,4,.72);
  border-color: rgba(20,12,4,.28);
}
.nav.solid .btn-nav-secondary:hover {
  background: rgba(0,0,0,.055);
  color: #1a1a1a;
  border-color: rgba(20,12,4,.45);
}
/* Logo: white on dark transparent nav */
.nav-logo {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 68px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter 0.8s ease;
}
.nav.solid .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.8s ease;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 99px;
  padding: 3px 4px;
}
.nav.solid .nav-links {
  opacity: 1; pointer-events: auto;
}
.nav-links a {
  font-size: .82rem; font-weight: 600; color: rgba(20,12,4,.65);
  letter-spacing: .1px; padding: 7px 18px; border-radius: 99px;
  border: none;
  background: transparent;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover { color: #1a1a1a; background: rgba(0,0,0,.06); }
.nav-links a.nav-active {
  color: #fff; background: var(--gold); font-weight: 700;
}
.nav-links a.nav-active:hover { background: var(--gold-lt); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  font-size: .8rem; font-weight: 600; letter-spacing: .2px;
  color: rgba(255,255,255,.75); font-family: inherit;
  padding: 7px 16px; border-radius: 99px;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-dropdown-trigger.nav-active { color: #fff; background: var(--gold); font-weight: 700; }
.nav-dropdown-trigger svg { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px; padding: 6px; min-width: 215px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.05);
  opacity: 0; visibility: hidden;
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 99px;
  font-size: .84rem; font-weight: 600; color: #111 !important;
  transition: background .15s, color .15s;
  background: none; border: none; letter-spacing: 0;
}
.nav-dropdown-menu a:hover { background: rgba(157,115,59,.1); color: var(--gold); }
.nav-dropdown-menu a.nav-active { color: var(--gold) !important; background: rgba(157,115,59,.08); }
.nav-dropdown-divider { height: 1px; background: rgba(0,0,0,.07); margin: 4px 0; }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-nav-secondary {
  background: #fff;
  color: #1a1a1a;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1.5px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.8s ease, color 0.8s ease, border-color 0.8s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn-nav-secondary:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-1px);
}
.btn-nav-secondary:active {
  transform: translateY(0);
}

.nav .btn-gold {
  padding: 13px 30px;
  font-size: 0.92rem;
}

@media (max-width: 1260px) { .nav-links { display: none; } }
@media (max-width: 640px) {
  .nav, .nav.solid {
    padding: 10px 16px;
  }

  .nav-logo img {
    height: 42px;
  }
  .nav-right {
    gap: 8px;
  }
  .btn-nav-secondary, .nav .btn-gold {
    padding: 9px 16px;
    font-size: 0.82rem;
  }
}
@media (max-width: 375px) {
  .btn-nav-secondary {
    display: none;
  }
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: #fff;
  padding: 11px 26px; border-radius: 99px;
  font-size: .88rem; font-weight: 700; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap; border: none; cursor: pointer; font-family: inherit;
}
.btn-gold:hover {
  background: var(--gold-lt); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(157,115,59,.32);
}
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.9);
  padding: 11px 26px; border-radius: 99px;
  font-size: .88rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.35);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
/* Light ghost (for light sections) */
.btn-ghost-dark {
  background: transparent; color: var(--gold);
  padding: 11px 26px; border-radius: 99px;
  font-size: .88rem; font-weight: 700;
  border: 1.5px solid var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-ghost-dark:hover { background: var(--gold); color: #fff; }

/* ── HERO (stays rich warm-dark for impact) ── */
.hero {
  position: relative; min-height: 0;
  display: block; overflow: hidden;
  background: var(--hero-bg);
  padding: 0 !important;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .09;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(20,12,4,.97) 30%, rgba(20,12,4,.72) 65%, rgba(20,12,4,.9) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; mix-blend-mode: overlay;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 760px; margin: 0 auto;
  padding: 68px 32px 24px;
  display: block; text-align: center;
}
.hero-inner > div:last-child { display: none; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(157,115,59,.15); border: 1px solid rgba(157,115,59,.35);
  color: #d4a96a; padding: 4px 14px; border-radius: 100px;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; margin-bottom: 10px;
  animation: fade-up .7s ease both;
}
.pill-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(1.7)} }
.hero h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 10px;
  animation: fade-up .7s .1s ease both;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: .88rem; color: rgba(255,255,255,.6); max-width: 520px;
  margin: 0 auto 14px; line-height: 1.55; animation: fade-up .7s .2s ease both;
}
.hero-badges {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  animation: fade-up .7s .3s ease both;
}
.badge-wrap {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 9px 14px;
  display: flex; align-items: center; justify-content: center;
}
.badge-wrap img { height: 32px; object-fit: contain; }

/* ── HERO FORM CARD ── */
.hero-form-card {
  background: #ffffff; border: 1px solid rgba(0,0,0,.1);
  border-top: 3px solid var(--gold); border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  animation: fade-up .7s .15s ease both;
}
.hero-form-card h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -.4px; color: #1a1a1a; }
.hero-form-card > p { font-size: .87rem; color: #6b6360; margin-bottom: 26px; line-height: 1.55; }

/* ── FORM ── */
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #888; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #f7f4f0;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 9px; padding: 12px 15px;
  color: #1a1a1a; font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color .2s, background .2s;
}
.form-group input::placeholder { color: #bbb; }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); background: #fff; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239D733B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px;
}
.form-group select option { background: #fff; color: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-submit {
  width: 100%; margin-top: 6px;
  background: var(--gold); color: #fff;
  padding: 14px 24px; border-radius: 99px;
  font-family: inherit; font-size: .95rem; font-weight: 800;
  letter-spacing: .3px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(157,115,59,.3); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-note { font-size: .71rem; color: #aaa; text-align: center; margin-top: 11px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 28px 14px; }
.form-success .s-icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  background: rgba(157,115,59,.1); border: 1.5px solid rgba(157,115,59,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; color: #1a1a1a; }
.form-success p { font-size: .87rem; color: #6b6360; }

/* Inline badge styles */
.badge-google-partner {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px; padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.g-icon { display: flex; gap: 2px; flex-wrap: wrap; width: 22px; height: 22px; }
.g-icon span {
  display: block; width: 10px; height: 10px; border-radius: 2px;
}
.g-icon span:nth-child(1){ background:#4285F4; }
.g-icon span:nth-child(2){ background:#EA4335; }
.g-icon span:nth-child(3){ background:#FBBC05; }
.g-icon span:nth-child(4){ background:#34A853; }
.badge-google-partner .badge-text { line-height: 1.2; }
.badge-google-partner .badge-text .bt1 { font-size: .62rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; }
.badge-google-partner .badge-text .bt2 { font-size: .82rem; font-weight: 800; color: #1a1a1a; display: block; }

.badge-microsoft {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px; padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 18px; height: 18px; flex-shrink: 0; }
.ms-grid span { display: block; border-radius: 1px; }
.ms-grid span:nth-child(1){ background:#F25022; }
.ms-grid span:nth-child(2){ background:#7FBA00; }
.ms-grid span:nth-child(3){ background:#00A4EF; }
.ms-grid span:nth-child(4){ background:#FFB900; }
.badge-microsoft .badge-text { line-height: 1.2; }
.badge-microsoft .badge-text .bt1 { font-size: .62rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; }
.badge-microsoft .badge-text .bt2 { font-size: .78rem; font-weight: 800; color: #1a1a1a; display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(158,115,60,.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: 0 48px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.trust-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.trust-stat {
  padding: 18px 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.trust-stat:last-child { border-right: none; }
.trust-stat-num { font-size: .9rem; font-weight: 800; color: #fff; line-height: 1.2; }
.trust-stat-big { font-size: 1.45rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.5px; }
.trust-stat-label { font-size: .58rem; color: rgba(255,255,255,.68); font-weight: 600; letter-spacing: .4px; text-transform: uppercase; margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 88px 48px; }
.inner { max-width: 1240px; margin: 0 auto; }
.section-tag { display: inline-block; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; color: #1a1a1a; }
.section-title em { font-style: normal; color: #9e733c; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.75; }

/* ── PACKAGES ── */
.packages-section { background: var(--dark-3); }
.packages-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* ── TOTAL BUDGET SLIDER ── */
.total-budget-selector {
  max-width: 660px; margin: 0 auto 52px; text-align: center;
}
.tbs-question {
  font-size: .9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5;
}
.tbs-amount-row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 10px; margin-bottom: 28px;
}
.tbs-amount {
  font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 900;
  color: var(--gold); letter-spacing: -2px; line-height: 1;
  transition: all .15s ease;
}
.tbs-per-month {
  font-size: .88rem; color: var(--muted); font-weight: 500; padding-bottom: 4px;
}
.tbs-range-wrap { position: relative; padding: 0 2px; margin-bottom: 12px; }
.tbs-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 99px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--pct,50%), rgba(0,0,0,.12) var(--pct,50%), rgba(0,0,0,.12) 100%);
  outline: none; cursor: pointer;
}
.tbs-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--gold), 0 4px 16px rgba(157,115,59,.35);
  cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.tbs-range::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: 0 0 0 3px var(--gold), 0 6px 22px rgba(157,115,59,.45);
}
.tbs-range::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); border: 4px solid #fff;
  cursor: pointer;
}
.tbs-scale { display: flex; justify-content: space-between; margin-top: 8px; }
.tbs-scale span { font-size: .67rem; color: #aaa; }
.tbs-breakdown {
  background: #fff; border: 1.5px solid rgba(157,115,59,.25);
  border-radius: 14px; padding: 16px 20px; margin-top: 22px; text-align: left;
  box-shadow: 0 4px 16px rgba(157,115,59,.08);
}
.tbs-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.tbs-row + .tbs-row { border-top: 1px solid rgba(0,0,0,.06); }
.tbs-row-label { font-size: .83rem; color: var(--muted); }
.tbs-row-val { font-size: .88rem; font-weight: 700; color: #1a1a1a; }
.tbs-row-val.tbs-ad-val { color: var(--gold); }
.tbs-row-total .tbs-row-label { font-weight: 700; color: #1a1a1a; font-size: .88rem; }
.tbs-row-total .tbs-row-val { font-size: 1.15rem; font-weight: 900; color: var(--gold); }
.tbs-footnote {
  font-size: .71rem; color: #aaa; margin-top: 10px;
  padding-top: 10px; border-top: 1px solid var(--border); text-align: center;
}

/* keep old names */
.budget-selector { text-align: center; margin-bottom: 44px; }
.budget-label { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.budget-btns { display: inline-flex; background: #f2ede7; border: 1px solid rgba(0,0,0,.1); border-radius: 99px; padding: 4px; gap: 4px; flex-wrap: wrap; justify-content: center; }
.budget-btn { background: transparent; color: var(--muted); border: none; border-radius: 99px; padding: 10px 22px; font-family: inherit; font-size: .84rem; font-weight: 600; cursor: pointer; transition: all .22s; white-space: nowrap; }
.budget-btn.active { background: var(--gold); color: #fff; }
.budget-btn:not(.active):hover { color: #1a1a1a; background: rgba(0,0,0,.06); }

.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pkg-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.09);
  border-radius: 18px; padding: 34px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: border-color .3s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(157,115,59,.15); }
.pkg-card.pkg-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(157,115,59,.05) 0%, #fff 55%);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(157,115,59,.18), 0 0 0 1.5px rgba(157,115,59,.4);
}
.pkg-card.pkg-highlighted { box-shadow: 0 0 0 2px var(--gold), 0 20px 48px rgba(157,115,59,.15); border-color: var(--gold); transform: translateY(-4px); }

/* Slider recommendation */
.pkg-card.pkg-recommended {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(157,115,59,.4), 0 20px 48px rgba(157,115,59,.15) !important;
  transform: translateY(-6px) !important;
}
.pkg-card.pkg-not-recommended {
  opacity: .55;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
  border-color: rgba(0,0,0,.07) !important;
}
.pkg-card.pkg-not-recommended:hover { opacity: .85; }
.pkg-rec-label {
  display: none;
  background: rgba(157,115,59,.08); border: 1px solid rgba(157,115,59,.25);
  border-radius: 8px; padding: 7px 12px; margin-bottom: 14px;
  font-size: .75rem; font-weight: 700; color: var(--gold);
  text-align: center; letter-spacing: .3px;
}
.pkg-card.pkg-recommended .pkg-rec-label { display: block; }
.pkg-badge-top {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; border-radius: 99px;
  font-size: .72rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 16px; white-space: nowrap;
}
.pkg-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; }
.pkg-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 10px; color: #1a1a1a; }
.pkg-tagline { font-size: .87rem; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.pkg-price-wrap { margin-bottom: 24px; }
.pkg-price { font-size: 2rem; font-weight: 900; color: #1a1a1a; letter-spacing: -1px; line-height: 1; }
.pkg-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pkg-price-note { font-size: .75rem; color: #aaa; margin-top: 6px; }
.pkg-divider { height: 1px; background: rgba(0,0,0,.08); margin: 20px 0; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.pkg-features li { font-size: .87rem; color: #444; display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.pkg-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: rgba(157,115,59,.1); border: 1.5px solid var(--gold); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239D733B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 6.5 11.5 13 5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.pkg-budget-note { font-size: .75rem; color: var(--gold); margin-bottom: 20px; padding: 8px 12px; background: rgba(157,115,59,.07); border-radius: 8px; border-left: 2px solid var(--gold); }
.btn-pkg {
  width: 100%; background: var(--gold); color: #fff;
  padding: 13px 20px; border-radius: 99px;
  font-family: inherit; font-size: .9rem; font-weight: 800;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-pkg:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(157,115,59,.3); }
.pkg-card:not(.pkg-featured) .btn-pkg { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.pkg-card:not(.pkg-featured) .btn-pkg:hover { background: var(--gold); color: #fff; }
.pkg-note { text-align: center; font-size: .75rem; color: #aaa; margin-top: 24px; }

/* ── SPENDING SLIDER ── */
.spend-slider-wrap { margin: 0 auto 44px; max-width: 640px; text-align: center; }
.spend-slider-label { font-size: .88rem; color: var(--muted); margin-bottom: 20px; }
.spend-slider-label strong { color: #1a1a1a; }
.spend-display { font-size: 2.6rem; font-weight: 900; color: var(--gold); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.spend-display-sub { font-size: .78rem; color: #aaa; margin-bottom: 24px; }
.spend-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 99px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--pct, 30%), rgba(0,0,0,.12) var(--pct, 30%), rgba(0,0,0,.12) 100%);
  outline: none; cursor: pointer;
}
.spend-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer; transition: transform .15s;
}
.spend-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.spend-ticks { display: flex; justify-content: space-between; margin-top: 8px; }
.spend-ticks span { font-size: .68rem; color: #aaa; }

/* Cost summary inside modal */
.cost-summary {
  background: rgba(157,115,59,.06); border: 1.5px solid rgba(157,115,59,.2);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 20px;
}
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.cost-row-label { font-size: .83rem; color: var(--muted); }
.cost-row-val { font-size: .9rem; font-weight: 700; color: #1a1a1a; }
.cost-total { border-top: 1px solid rgba(157,115,59,.2); margin-top: 8px; padding-top: 10px; }
.cost-total .cost-row-label { font-size: .85rem; font-weight: 700; color: #1a1a1a; }
.cost-total .cost-row-val { font-size: 1.1rem; font-weight: 900; color: var(--gold); }
.cost-note { font-size: .72rem; color: #aaa; margin-top: 8px; text-align: center; }

/* ── MODAL ── */
.pkg-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.pkg-modal.open { display: flex; }
.modal-box {
  background: #fff; border: 1px solid rgba(0,0,0,.1);
  border-top: 3px solid var(--gold); border-radius: 20px; padding: 40px 36px;
  max-width: 500px; width: 100%; position: relative;
  animation: modal-in .3s cubic-bezier(.16,1,.3,1) both;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,.18);
}
@keyframes modal-in { from{opacity:0;transform:translateY(30px) scale(.97)} to{opacity:1;transform:none} }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: #f2ede7; border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted); font-size: 1rem;
  transition: all .2s; font-family: inherit;
}
.modal-close:hover { background: #e8e0d5; color: #1a1a1a; }
.modal-pkg-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(157,115,59,.08); border: 1px solid rgba(157,115,59,.25);
  color: var(--gold); padding: 4px 14px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.modal-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -.3px; color: #1a1a1a; }
.modal-box > p { font-size: .87rem; color: var(--muted); margin-bottom: 22px; }

/* ── SERVICE BENEFITS ── */
.benefits-section { background: var(--dark-2); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.benefit-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(157,115,59,.12); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(157,115,59,.08); border: 1.5px solid rgba(157,115,59,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon svg { color: var(--gold); }
.benefit-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.2px; color: #1a1a1a; }
.benefit-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── PROCESS ── */
.process-section { background: var(--dark-3); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; background: rgba(0,0,0,.08); border-radius: 18px; overflow: hidden; }
.step { background: #fff; padding: 40px 32px; position: relative; transition: background .3s; }
.step:hover { background: #faf7f3; }
.step-num { font-size: 3.5rem; font-weight: 900; color: rgba(157,115,59,.12); line-height: 1; margin-bottom: 18px; }
.step-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(157,115,59,.08); border: 1.5px solid rgba(157,115,59,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon svg { color: var(--gold); }
.step-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 9px; letter-spacing: -.2px; color: #1a1a1a; }
.step-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; }
.step-arrow { position: absolute; top: 50%; right: -11px; transform: translateY(-50%); width: 22px; height: 22px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.step-arrow svg { color: #fff; }
.step:last-child .step-arrow { display: none; }

/* ── REVIEWS ── */
.reviews-section { background: var(--dark-3); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.review-card { background: #fff; border: 1.5px solid rgba(0,0,0,.08); border-radius: 16px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; transition: border-color .3s, box-shadow .3s; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.review-card:hover { border-color: rgba(157,115,59,.3); box-shadow: 0 8px 28px rgba(157,115,59,.1); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { color: var(--gold); width: 15px; height: 15px; }
.review-text { font-size: .88rem; color: #444; line-height: 1.65; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: .88rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.review-name { font-size: .85rem; font-weight: 700; color: #1a1a1a; }
.review-role { font-size: .74rem; color: var(--muted); }

/* ── CTA / BOTTOM FORM ── */
.cta-section {
  background-color: #1c1408;
  background-image: url("/prosjekter/zebra-media/assets/images/zebra-media-stavanger-nettverket-4.png");
  background-size: 600px auto;
  background-repeat: repeat;
  background-blend-mode: multiply;
  padding: 88px 48px;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content:''; position:absolute; top:-100px; right:-60px; width:480px; height:480px; background: radial-gradient(circle, rgba(157,115,59,.18) 0%, transparent 65%); }
.cta-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; position: relative; z-index:1; }
.cta-label { font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.cta-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; color: #fff; }
.cta-title em { font-style: normal; color: var(--gold-lt); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.72; margin-bottom: 34px; }
.contact-list { display: flex; flex-direction: column; gap: 13px; }
.contact-row { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: rgba(255,255,255,.6); }
.c-icon { width: 34px; height: 34px; border-radius: 9px; background: rgba(157,115,59,.15); border: 1px solid rgba(157,115,59,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { color: var(--gold-lt); }
.contact-row a { color: rgba(255,255,255,.9); font-weight: 600; transition: color .2s; }
.contact-row a:hover { color: var(--gold-lt); }
.cta-form-card { background: #fff; border: 1px solid rgba(0,0,0,.1); border-top: 3px solid var(--gold); border-radius: 18px; padding: 36px 30px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.cta-form-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 6px; color: #1a1a1a; }
.cta-form-card > p { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }

/* ── FOOTER ── */
.footer { background: #131006; padding: 28px 48px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-logo img { height: 28px; opacity: .55; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; color: rgba(255, 255, 255, 0.7); transition: color .2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-size: .76rem; color: rgba(255, 255, 255, 0.5); }

/* ── FOOTER LARGE ── */
.footer-large { background: #2f3133; padding: 70px 48px 40px; border-top: 3px solid var(--gold); }
.footer-large-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.1rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 22px; }
.footer-col p { font-size: .85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li { font-size: .85rem; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; gap: 10px; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.7); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-col ul li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; color: rgba(255, 255, 255, 0.7); }
.footer-contact-item span { color: #ffffff; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); }
.footer-badges { padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-badge-col { display: flex; align-items: center; gap: 24px; }
.footer-badge-col p { font-size: .8rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; flex: 1; margin: 0; }
.footer-badge-col img { height: 52px; object-fit: contain; }
.footer-cta { text-align: center; margin-top: 50px; }
.footer-cta h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 24px; color: #ffffff; line-height: 1.6; }
.footer-gaselle { text-align: center; margin-top: 50px; }
.footer-gaselle p { font-size: .85rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.footer-gaselle img { height: 50px; margin: 0 auto; }
.footer-bottom { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.footer-copy { font-size: .75rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 24px; line-height: 1.6; }
.footer-logo img { height: 36px; margin: 0 auto; opacity: .55; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-badges { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-contact { grid-template-columns: 1fr; }
  .footer-badge-col { flex-direction: column; align-items: flex-start; }
}

/* ── MOBILE STICKY ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: rgba(255,255,255,.97); border-top: 1px solid rgba(157,115,59,.25); backdrop-filter: blur(20px); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: #fff; padding: 14px; border-radius: 12px; font-weight: 800; font-size: .93rem; min-height: 50px; }

/* ── SECTION BACKGROUND PATTERN ── */
/* Adds the same subtle network pattern from the hero to all light content sections */
section:not(.hero):not(.cta-section) {
  position: relative;
}
section:not(.hero):not(.cta-section)::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("/prosjekter/zebra-media/assets/images/zebra-media-stavanger-nettverket-4.png");
  background-size: 600px auto;
  background-repeat: repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
/* Ensure content sits above the pattern pseudo-element */
.inner { position: relative; z-index: 1; }

/* ── ANIMATIONS ── */
@keyframes fade-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav, .nav.solid { padding-left: 28px; padding-right: 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 80px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); }
  .packages-grid { grid-template-columns: 1fr; gap: 14px; }
  .pkg-card.pkg-featured { transform: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 1px; }
  .step-arrow { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 68px 28px; }
  .trust-bar, .cta-section, .footer, .footer-large { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 640px) {
  .nav, .nav.solid { padding: 12px 16px; }
  .nav-logo img { height: 36px; }
  .nav-phone { display: none; }
  .btn-gold { padding: 10px 18px; font-size: .82rem; }
  .hero-inner { padding: 100px 16px 48px; gap: 26px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.7rem); letter-spacing: -1px; }
  .hero-form-card { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { min-height: 50px; }
  .hero-badges { gap: 10px; }
  section { padding: 52px 16px; }
  .trust-bar { padding: 0 16px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat { padding: 18px 10px; }
  .trust-stat-num { font-size: 1.65rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 52px 16px; }
  .cta-form-card { padding: 22px 16px; }
  .footer { padding: 24px 16px; }
  .footer-large { padding: 40px 16px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 86px; }
  .modal-box { padding: 28px 20px; }
  .budget-btns { gap: 6px; }
  .budget-btn { padding: 9px 14px; font-size: .8rem; }
}









.about-section {
	padding-bottom: 160px !important;
}


.gr-dots {
  display: none !important;
}

#grPrev,
#grNext {
    background: #fff !important;
    color: #000 !important;
}

#grPrev svg,
#grNext svg {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    overflow: visible !important;
}

#cta-form #kontakt-tjeneste {
    padding: 0px !important;
	  padding-left: 5px !important;
}


/* ZMS v27: corrected footer + logo/headline/customer-logo fixes */

/* Header logo visibility */
#zebra-media-landing .nav-logo {
display:inline-flex !important;
align-items:center !important;
justify-content:center !important;
width:auto !important;
min-width:126px !important;
height:54px !important;
opacity:1 !important;
visibility:visible !important;
}

#zebra-media-landing .nav-logo img {
display:block !important;
width:126px !important;
height:auto !important;
max-width:126px !important;
max-height:54px !important;
object-fit:contain !important;
opacity:1 !important;
visibility:visible !important;
}

/* Keep white logo visible on dark hero; darken it only on light/sticky nav */
#zebra-media-landing .nav:not(.solid) .nav-logo img {
filter:none !important;
}

#zebra-media-landing .nav.solid {
background:rgba(250,247,241,.94) !important;
border-bottom:1px solid rgba(26,26,26,.08) !important;
backdrop-filter:blur(18px) !important;
-webkit-backdrop-filter:blur(18px) !important;
box-shadow:0 8px 30px rgba(26,26,26,.06) !important;
}

#zebra-media-landing .nav.solid .nav-logo img {
filter:invert(1) brightness(.15) sepia(.28) saturate(1.4) hue-rotate(350deg) !important;
}

#zebra-media-landing .nav.solid .nav-links {
background:rgba(255,255,255,.72) !important;
border:1px solid rgba(26,26,26,.10) !important;
box-shadow:0 4px 18px rgba(26,26,26,.05) !important;
}

#zebra-media-landing .nav.solid .nav-links a,
#zebra-media-landing .nav.solid .btn-nav-secondary {
color:#1a1a1a !important;
}

/* Headings should be read as one left-aligned heading, not split to opposite sides */
#zebra-media-landing .section-title {
text-align:left !important;
justify-content:flex-start !important;
align-items:flex-start !important;
}

#zebra-media-landing .section-title em {
display:inline !important;
float:none !important;
clear:none !important;
margin:0 !important;
text-align:left !important;
}

#zebra-media-landing .calc-section .section-title,
#zebra-media-landing .services-section .section-title {
max-width:760px !important;
}

/* Customer logo strip: prevent giant logos */
#zebra-media-landing .logo-marquee img,
#zebra-media-landing .lm-item img,
#zebra-media-landing .client-logo img,
#zebra-media-landing .logos-track img,
#zebra-media-landing .brand-logo img {
width:auto !important;
height:32px !important;
max-height:32px !important;
max-width:150px !important;
object-fit:contain !important;
}

#zebra-media-landing .logo-marquee .lm-item,
#zebra-media-landing .client-logo,
#zebra-media-landing .brand-logo {
display:flex !important;
align-items:center !important;
justify-content:center !important;
min-width:110px !important;
height:48px !important;
max-height:48px !important;
overflow:hidden !important;
}

/* Correct footer */
#zebra-media-landing .zms-footer-bar {
max-width:1240px !important;
margin:56px auto 0 !important;
padding-top:28px !important;
border-top:1px solid rgba(255,255,255,.12) !important;
display:grid !important;
grid-template-columns:minmax(260px,1fr) auto minmax(220px,1fr) !important;
gap:28px !important;
align-items:center !important;
}

#zebra-media-landing .zms-footer-left {
display:flex !important;
flex-direction:column !important;
align-items:flex-start !important;
gap:12px !important;
min-width:0 !important;
}

#zebra-media-landing .zms-footer-copyright {
margin:0 !important;
font-size:.76rem !important;
line-height:1.45 !important;
color:rgba(255,255,255,.54) !important;
}

#zebra-media-landing .zms-footer-copyright a {
color:rgba(255,255,255,.76) !important;
text-decoration:none !important;
}

#zebra-media-landing .zms-footer-copyright a:hover {
color:#fff !important;
}

#zebra-media-landing .zms-footer-badges {
display:flex !important;
align-items:center !important;
gap:10px !important;
}

#zebra-media-landing .zms-footer-badges img {
display:block !important;
height:34px !important;
width:auto !important;
max-width:120px !important;
object-fit:contain !important;
opacity:.78 !important;
border-radius:3px !important;
}

#zebra-media-landing .zms-footer-menu {
display:flex !important;
align-items:center !important;
justify-content:center !important;
gap:18px !important;
flex-wrap:wrap !important;
text-align:center !important;
}

#zebra-media-landing .zms-footer-menu a {
font-size:.77rem !important;
line-height:1.3 !important;
color:rgba(255,255,255,.48) !important;
text-decoration:none !important;
transition:color .2s ease !important;
}

#zebra-media-landing .zms-footer-menu a:hover {
color:rgba(255,255,255,.86) !important;
}

#zebra-media-landing .zms-footer-right {
display:flex !important;
justify-content:flex-end !important;
align-items:center !important;
}

#zebra-media-landing .zms-footer-zebra-logo {
display:block !important;
width:150px !important;
height:auto !important;
max-width:150px !important;
opacity:.85 !important;
visibility:visible !important;
}

@media (max-width:980px) {
#zebra-media-landing .section-title em {
display:block !important;
}

#zebra-media-landing .zms-footer-bar {
grid-template-columns:1fr !important;
text-align:center !important;
gap:22px !important;
}

#zebra-media-landing .zms-footer-left,
#zebra-media-landing .zms-footer-right {
align-items:center !important;
justify-content:center !important;
}

#zebra-media-landing .zms-footer-menu {
order:2 !important;
}

#zebra-media-landing .zms-footer-right {
order:3 !important;
}
}


/* ZMS v28: header logo, hero line width, section heading line-breaks */

/* White logo on dark hero */
#zebra-media-landing .nav:not(.solid) .nav-logo img {
filter:none !important;
opacity:1 !important;
}

/* Same white SVG becomes dark on sticky/light header */
#zebra-media-landing .nav.solid .nav-logo img {
filter:invert(1) brightness(.16) sepia(.35) saturate(1.4) hue-rotate(350deg) !important;
opacity:1 !important;
}

/* Hero: keep the main promise on one line on desktop */
#zebra-media-landing .hero-home .hero-inner {
max-width:1120px !important;
}

#zebra-media-landing .hero-home h1 {
max-width:1120px !important;
margin-left:auto !important;
margin-right:auto !important;
}

#zebra-media-landing .hero-home h1 em {
display:block !important;
white-space:nowrap !important;
max-width:none !important;
}

#zebra-media-landing .hero-home .hero-sub {
max-width:820px !important;
width:min(820px, 100%) !important;
margin-left:auto !important;
margin-right:auto !important;
}

/* These section headings should have the gold part on a new line */
#zebra-media-landing .calc-section .section-title,
#zebra-media-landing .services-section .section-title {
display:block !important;
text-align:left !important;
max-width:760px !important;
}

#zebra-media-landing .calc-section .section-title br {
display:none !important;
}

#zebra-media-landing .calc-section .section-title em,
#zebra-media-landing .services-section .section-title em {
display:block !important;
float:none !important;
clear:both !important;
margin:0 !important;
text-align:left !important;
line-height:1.04 !important;
}

@media (max-width:1280px) {
#zebra-media-landing .hero-home h1 em {
font-size:clamp(2.6rem, 5vw, 4.8rem) !important;
}
}

@media (max-width:980px) {
#zebra-media-landing .hero-home .hero-inner {
max-width:760px !important;
}
#zebra-media-landing .hero-home h1 em {
white-space:normal !important;
}
#zebra-media-landing .hero-home .hero-sub {
max-width:560px !important;
}
}


/* ZMS v29: colored/sticky logo, Forminator select style, CTA hover readability */

/* Header logo source is colored. On dark hero: force readable white. On sticky: show original colored logo. */
#zebra-media-landing .nav-logo img {
display:block !important;
width:126px !important;
height:auto !important;
max-width:126px !important;
max-height:54px !important;
object-fit:contain !important;
opacity:1 !important;
visibility:visible !important;
}

#zebra-media-landing .nav:not(.solid) .nav-logo img {
filter:brightness(0) invert(1) !important;
opacity:1 !important;
}

#zebra-media-landing .nav.solid .nav-logo img,
#zebra-media-landing .nav:hover .nav-logo img {
filter:none !important;
opacity:1 !important;
}

/* Make Forminator select look like the other fields */
#zebra-media-landing .zebra-forminator-wrap select,
#zebra-media-landing .zebra-forminator-wrap .forminator-select,
#zebra-media-landing .zebra-forminator-wrap .forminator-select2,
#zebra-media-landing .zebra-forminator-wrap .select2-container,
#zebra-media-landing .zebra-forminator-wrap .select2-container--default,
#zebra-media-landing .zebra-forminator-wrap .select2-selection,
#zebra-media-landing .zebra-forminator-wrap .select2-selection--single {
width:100% !important;
min-height:44px !important;
height:44px !important;
border-radius:10px !important;
border:1px solid rgba(0,0,0,.12) !important;
background:#fff !important;
box-shadow:none !important;
outline:none !important;
}

#zebra-media-landing .zebra-forminator-wrap .select2-selection__rendered,
#zebra-media-landing .zebra-forminator-wrap .forminator-select2 + .select2-container .select2-selection__rendered {
height:44px !important;
line-height:44px !important;
padding:0 42px 0 14px !important;
color:#1a1a1a !important;
font-size:.95rem !important;
font-weight:400 !important;
}

#zebra-media-landing .zebra-forminator-wrap .select2-selection__placeholder {
color:rgba(26,26,26,.38) !important;
}

#zebra-media-landing .zebra-forminator-wrap .select2-selection__arrow {
height:44px !important;
right:12px !important;
top:0 !important;
}

#zebra-media-landing .zebra-forminator-wrap .select2-selection__arrow b {
border-color:rgba(26,26,26,.55) transparent transparent transparent !important;
border-width:6px 5px 0 5px !important;
}

#zebra-media-landing .zebra-forminator-wrap .select2-container--open .select2-selection__arrow b {
border-color:transparent transparent rgba(26,26,26,.55) transparent !important;
border-width:0 5px 6px 5px !important;
}

/* Dropdown itself */
.forminator-select-dropdown,
.select2-dropdown {
border:1px solid rgba(0,0,0,.12) !important;
border-radius:10px !important;
box-shadow:0 18px 40px rgba(0,0,0,.16) !important;
overflow:hidden !important;
}

.forminator-select-dropdown .select2-results__option,
.select2-dropdown .select2-results__option {
padding:10px 14px !important;
font-size:.95rem !important;
color:#1a1a1a !important;
}

.forminator-select-dropdown .select2-results__option--highlighted,
.select2-dropdown .select2-results__option--highlighted {
background:var(--gold) !important;
color:#fff !important;
}

/* CTA secondary hover: keep text readable exactly like the original intent */
#zebra-media-landing .cta-btn-secondary,
#zebra-media-landing .cta-btn-secondary:visited {
color:var(--gold) !important;
border-color:var(--gold) !important;
background:transparent !important;
}

#zebra-media-landing .cta-btn-secondary:hover,
#zebra-media-landing .cta-btn-secondary:focus-visible {
color:#f4e7cf !important;
border-color:var(--gold) !important;
background:rgba(166,116,56,.16) !important;
}

#zebra-media-landing .cta-btn-secondary:hover svg,
#zebra-media-landing .cta-btn-secondary:focus-visible svg {
color:currentColor !important;
stroke:currentColor !important;
}
