/******************************************************** FONTE: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* Transition overlay*/
#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFA243;
    z-index: 9999;
    animation: slideOut 1.0s forwards;
  }
  
  @keyframes slideOut {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
  }
  
  /* PublicSans */
  @font-face {
    font-family: 'PublicSans-ExtraBold';
    src: url('../fonts/PublicSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  
  /* PublicSans */
  @font-face {
    font-family: 'PublicSans-Medium';
    src: url('../fonts/PublicSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
  }
  
  /* PublicSans */
  @font-face {
    font-family: 'PublicSans-Bold';
    src: url('../fonts/PublicSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  
  /* Grundlæggende reset */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Rød prik der er tilføjet cursor */
  .cursor-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #022E3B, #FFA243);
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  /* Baggrundsfarve  */
  body, header, footer {
    background-color: #FFFFFE;
  }
  
  /* Animation der loader op til de første 8 elementer på siden */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  .load-animation {
    opacity: 0; 
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-duration: 0.8s;
  }
  
  .load-1 {
    animation-name: fadeInUp;
    animation-delay: 0.2s;
  }
  
  .load-2 {
    animation-name: fadeInUp;
    animation-delay: 0.4s;
  }
  
  .load-3 {
    animation-name: fadeInUp;
    animation-delay: 0.6s;
  }
  
  .load-4 {
    animation-name: fadeInUp;
    animation-delay: 0.7s;
  }
  
  .load-5 {
    animation-name: fadeInUp;
    animation-delay: 0.8s;
  }
  
  .load-6 {
    animation-name: fadeInUp;
    animation-delay: 0.9s;
  }
  
  .load-7 {
    animation-name: fadeInUp;
    animation-delay: 1.0s;
  }
  
  .load-8 {
    animation-name: fadeInUp;
    animation-delay: 1.1s;
  }
  
  .load-9 {
    animation-name: fadeInUp;
    animation-delay: 1.2s;
  }
  
  .load-10 {
    animation-name: fadeInUp;
    animation-delay: 1.3s;
  }
  
  .load-11 {
    animation-name: fadeInUp;
    animation-delay: 1.4s;
  }
    
  /* Basis typografi for websitet */
  body {
    font-family: 'PublicSans-Medium', Arial, sans-serif;
    font-weight: normal;
    color: #022E3B;
    background-color: #FFFFFE;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
  }
  
  /* Overskrifter bruger Sailec Medium */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'PublicSans-ExtraBold', Arial, sans-serif;
    font-weight: 800;
    color: #022E3B;
    letter-spacing: -0.02em;
  }
  
  /* Links */
  a {
    color: #022E3B;
    text-decoration: none;
  }
  
  a:hover {
    color: #022E3B;
    text-decoration: none;
  }
  
  /******************************************************** ANIMATION AF ELEMENTER ********************************************************/
  
  /* Animation af elementer der ikke er i view-port */
  .animate-elm { 
    opacity: 0 !important;
    -webkit-transition: opacity 1.2s ease-in !important;
    -moz-transition: opacity 1.2s ease-in !important;
    -ms-transition: opacity 1.2s ease-in !important;
    -o-transition: opacity 1.2s ease-in !important;
    transition: opacity 1.2s ease-in !important;
  }
  
  .animate-elm.in-view {
    opacity: 1 !important;
  }
    
  /******************************************************** TRANSPARANT HEADER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  /* Global offset til ankerscroll */
  :root { --header-offset: 0px; }          /* justér til din faktiske højde */
  html { scroll-padding-top: var(--header-offset); }
  section[id] { scroll-margin-top: var(--header-offset); }
  
  /* FIXED header der visuelt opfører sig som sticky */
  .topbar-wrap{
    position: static;
    top: 0;
    left: 0;
    right: 0;
  
    /* sørger for at den ligger over indhold */
    z-index: 1000;
  
    /* behold din luft rundt om pillen */
    padding: 16px;
  
    /* background følger din side (kan være gennemsigtig) */
    background: transparent;
  }
  
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* brand | nav | kontakt+pris */
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Logo i topbar (SVG som img) */
  .topbar__logo {
    height: var(--topbar-logo-h, 47px); /* ændr 40px til hvad du vil */
    width: auto;
    display: block;
  }
  
  @media (max-width: 680px){
    .topbar__logo {
      height: 41px;   /* fx 32–36px er sweet spot */
    }
  }

  /* Nav centreres (midten) */
  .topbar__nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 4vw, 36px);
  }
  
  /* Link-stil (nav + højre) */
  .topbar__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  }
  .topbar__link:hover,
  .topbar__link:focus-visible {
  text-decoration: none;
  }
  
  /* Højre side: Kontakt + PRIS */
  .topbar__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  }
  
/* CTA-knap – Safari-sikkert: gradient border + solid fill (ligesom resten) */
.topbar__cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
  
    padding: 14px 22px;
    border-radius: 8px;
  
    border: 0;
    background: transparent;
  
    color: #ffffff !important;
    text-decoration: none;
    cursor: pointer;
  
    isolation: isolate;
    z-index: 0;
  
    transition: transform .15s ease;
  }
  
  /* Gradient border */
  .topbar__cta::before{
    content:"";
    position:absolute;
    inset:-2px;                 /* border tykkelse */
    border-radius:inherit;
    background: linear-gradient(135deg, #022E3B, #FFA243);
    z-index:-2;
    pointer-events:none;
  }
  
  /* Indre fill */
  .topbar__cta::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:#022E3B;
    z-index:-1;
    pointer-events:none;
  }
  
  /* Hover */
  .topbar__cta:hover{
    transform: translateY(-0px);
  }
  
  /* --- Keep topbar CTA text white on hover --- */
  .topbar__cta,
  .topbar__cta:visited,
  .topbar__cta:focus,
  .topbar__cta:active,
  .topbar__cta:hover {
  color: #ffffff !important; /* hvid tekst */
  }
  
  /* Responsiv adfærd */
  @media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto 1fr;
    padding: 10px 14px;
  }
  .topbar__nav { gap: 16px; }
  }
  
  @media (max-width: 680px) {
  .topbar {
    grid-template-columns: 1fr auto;  /* brand | højre */
    row-gap: 10px;
  }
  .topbar__nav {
    order: 3;                 /* læg nav ned under på små skærme */
    grid-column: 1 / -1;      /* fuld bredde */
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-bottom: 6px;
  }
  .topbar__right .topbar__cta { padding: 12px 18px; }
  }
  
  /* Skjul midter-menu på mobil */
  @media (max-width: 680px) {
    .topbar__nav {
      display: none !important;   /* skjul links helt og fjern fra tab-rækkefølgen */
    }
  }
  
  /******************************************************** OVERSKRIFT: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  .hero-heading {
    text-align: center;
  }
  
  .hero-heading h1 {
    font-family: 'PublicSans-ExtraBold', Arial, sans-serif;
    font-weight: 700;
  }
  
  .hero-heading__highlight {
    font-weight: 600;
  }
  
/******************************************************** VIDEO: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* Billede med blur */
.cf-video-wrap img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/******************************************************** KNAPPER UNDER VIDEO: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  /* Highlighter-effekt bag CTA-heading */
  .cta-heading{
    position: relative;
    display: inline-block; /* gør at highlight følger tekstens bredde */
    z-index: 0;
    line-height: 1.15;
  }

  .grad-pipe {
    display: inline-block;
    padding: 0 10px;
  
    background: linear-gradient(135deg, #022E3B, #FFA243);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  
    font-weight: 700;
  }
  
  /* Hvis den går på 2 linjer på mobil, giver vi lidt mere luft */
  @media (max-width: 480px){
    .cta-heading{
      line-height: 1.2;
    }
    .cta-heading::after{
      top: 66%;
      height: 0.6em;
    }
  }
  
  /* Sektion under video */
  .cta-section {
    text-align: center;
  }
  
  .cta-heading {
    font-weight: 600;
  }
  
  /* Knap-container */
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
/******************************************************** LOGO BANNER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* LOGO TICKER (én række der kører hen over skærmen) */
.logo-banner {
    margin: 80px auto 60px;
    padding: 0 20px;
  }
  
  .logo-banner__wrap{
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;              /* klip det som løber ud */
  }
  
  /* LISTEN: én række, ingen grid */
  .logo-grid{
    list-style: none;
    margin: 0;
    padding: 0;
  
    display: flex;               
    align-items: center;
    gap: 48px;                   
    width: max-content;          
    animation: logoMarquee 80s linear infinite; /* animation hastighed */
    will-change: transform;
  }
  
  .logo-grid li{
    flex: 0 0 auto;              
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* NØGLEN: default + per-logo override */
  .logo-grid img{
    height: var(--logo-h, 40px);   /* default 40px, men kan overrides pr. li */
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 1.00;
    transition: transform .15s ease, opacity .15s ease;
  }
  
  .logo-grid img:hover{
    transform: translateY(-2px);
    opacity: 1;
  }
  
  /* Infinite bevægelse (du har duplikeret listen) */
  @keyframes logoMarquee{
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Per-logo størrelser (ret px som du vil) */
  .logo.netcompany   { --logo-h: 24px; }
  .logo.joe          { --logo-h: 70px; }
  .logo.best-western { --logo-h: 35px; }
  .logo.zwei         { --logo-h: 70px; }
  .logo.rekom        { --logo-h: 110px; }
  .logo.ild-pizza    { --logo-h: 75px; }
  .logo.sushi-art    { --logo-h: 126px; }
  .logo.zurf         { --logo-h: 70px; }
  .logo.geodata      { --logo-h: 150px; }
  .logo.primær       { --logo-h: 68px; }
  
  /* Mobil tweak */
  @media (max-width: 680px){
    .logo-grid{ gap: 28px; animation-duration: 60s; }
    .logo-grid img{ height: var(--logo-h-mobile, 40px); }  /* mobil default */
  }
  
  /* (Valgfrit) mobil per-logo overrides */
  @media (max-width: 680px){
    .logo.netcompany   { --logo-h-mobile: 24px; }
    .logo.joe          { --logo-h-mobile: 60px; }
    .logo.best-western { --logo-h-mobile: 35px; }
    .logo.zwei         { --logo-h-mobile: 60px; }
    .logo.rekom        { --logo-h-mobile: 110px; }
    .logo.ild-pizza    { --logo-h-mobile: 70px; }
    .logo.sushi-art    { --logo-h-mobile: 126px; }
    .logo.zurf         { --logo-h-mobile: 70px; }
    .logo.geodata      { --logo-h-mobile: 150px; }
    .logo.primær       { --logo-h-mobile: 68px; }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .logo-grid{ animation: none; }
  }

/******************************************************** 3 PUNKTER UNDER LOGO BANNER ********************************************************/
  
  .process-section {
    text-align: center;
  }
  
  .process-header h2 {
    font-weight: 600;
  }
    
  /* Steps layout */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  
  /* (Deaktiveret prikket linje – beholdt til senere hvis du vil aktivere den) */
  .process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 1px;
    border-top: 2px dashed transparent;
    z-index: 0;
  }
  
  /* Stepkort */
  .process-steps .step {
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 22px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  
  .process-steps .step:hover {
    transform: translateY(-0px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  }
  
  /* Cirklen – nu uden baggrund og border */
  .process-steps .step .step-circle {
    position: relative;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: transparent;
    border: none;
    border-radius: 999px;
    z-index: 1;
  }
  
  /* Skjul evt. tal */
  .process-steps .step .step-circle span { 
    display: none; 
  }
  
/* Baseline: gradient-ikon via mask */
.process-steps .step .step-circle::before{
    content:"";
    display:block;
    width:41px;
    height:41px;
  
    /* Gradient som knapperne */
    background: linear-gradient(135deg, #022E3B, #FFA243);
  
    /* SVG bruges som maske */
    -webkit-mask: url("../images/a.svg") center / contain no-repeat;
    mask: url("../images/a.svg") center / contain no-repeat;
  }
  
  /* Step 1 */
  .process-steps .step .step-circle.step-1::before{
    -webkit-mask-image: url("../images/b2.svg"); /* <— ret filnavn */
    mask-image: url("../images/b2.svg");
  }
  
  /* Step 2 */
  .process-steps .step .step-circle.step-2::before{
    -webkit-mask-image: url("../images/b2.svg");
    mask-image: url("../images/b2.svg");
  }
  
  /* Step 3 */
  .process-steps .step .step-circle.step-3::before{
    -webkit-mask-image: url("../images/b2.svg"); /* <— ret filnavn */
    mask-image: url("../images/b2.svg");
  }
  
/* Tekster venstrejusteres */
  .process-steps .step h3,
  .process-steps .step p {
    align-self: stretch;
    margin-left: 0;
}
  
  .process-steps .step h3 {
    font-size: 18px;
    line-height: 34px;
    font-weight: 600;
    margin: 0;
  }
  
  .process-steps .step p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
  }
  
  /* Fallback hvis mask ikke understøttes */
  @supports not ((-webkit-mask: url("")) or (mask: url(""))) {
    .process-steps .step .step-circle::before {
      background-color: transparent;
      background-image: url("../images/ikonserie.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
  }
  
  /* Mobil / tablet */
  @media (max-width: 900px) {
    .process-steps {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .process-steps::before {
      display: none;
    }
  }
  
  /******************************************************** FULL WIDTH BILLEDE BANNER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  /* Fix: ægte full-bleed uden horisontal scroll */
  .fullwidth-image-row {
  position: relative;
  width: 100vw;              
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;    
  }
  
  /* Ens mellemrum + 50% peek, men uden at udvide dokumentbredden */
  .image-row {
  --g: 15px;
  --peek: calc((100vw - (4 * var(--g))) / 4); /* halvdelen af billedbredden */
  
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--g);
  
  width: calc(100vw + var(--peek));   
  margin-left: calc(-0.5 * var(--peek));
  padding: 0;
  }
  
  /* Default (Laptop) */
  :root {
  --img-h: clamp(180px, 28vw, 360px);
  }
  
  .image-row img {
  width: 100%;
  height: var(--img-h) !important;
  object-fit: cover;
  border-radius: 0px;
  max-width: none;
  }
  
  /* Desktop: større højde */
  @media (min-width: 1513px) {
  :root { --img-h: 520px; } 
  }
  
  /* MOBIL: 3 billeder med peek i begge sider og centreret midtbillede */
  @media (max-width: 640px) {
    .fullwidth-image-row { 
        margin-top: 80px !important;   /* afstand over billedrækken */
  
      overflow: hidden;                 /* klip kanten pænt */
    }
  
    .image-row {
      --g: 12px;                      
      --peek: 120px;                 
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: var(--g);
  
      /* gør rækken bredere end viewport og centrer den,
         så midter-kortet er i fokus og siderne peeker */
      width: calc(100vw + var(--peek));
      margin-left: calc(-0.5 * var(--peek));
      padding: 0;
    }
  
    /* behold kun de 3 første billeder */
    .image-row img:nth-child(n+4) {
      display: none !important;
    }
  
    /* størrelse/stil på billeder */
    .image-row img {
      height: 300px !important;
      width: 100%;
      object-fit: cover;
      border-radius: 0px;
      max-width: none;
      display: block;
    }
  }
  
  /* Safety net mod evt. andre sektioner */
  html, body { overflow-x: hidden; }
  
  /******************************************************** UDBYTTE : DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  /* CTA */
  .features-cta {
    text-align: center;
    margin-top: 28px;
  }
  
  
  .features-cta .btn.btn-primary {
    padding: 14px 22px;
    margin-top: 30px;
  }
  
  /******************************************************** UDTALELSER FRA KUNDER : DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  .linkedin-heading h2 {
    text-align: center;
    font-weight: 600;
    /* sikkerhed – ingen intern “plade” bag sektionstitlen */
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  
  /* Grid */
  .linkedin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* Kort med glass/blur (behold) */
  .li-card {
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 26px 26px 18px;
    display: flex;
    flex-direction: column;
    /* undgå at indhold skaber visuelle “plader” ved afrundede hjørner */
    background-clip: padding-box;
  }
  
  /* Header med avatar + navn */
  .li-card__head {
    display: grid;
    grid-template-columns: 72px 1fr;      /* matcher avatar-størrelsen */
    gap: 18px;                             /* lidt mindre end 42px for tættere layout */
    align-items: center;
    margin-bottom: 10px;
  
    /* VIGTIGT: ingen egen “plade” – kun parentens glass skal tegnes */
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    filter: none !important;
  }
  
  /* Fjern evt. baggrund/skygg­er på det indre wrapper-div i headeren */
  .li-card__head > div {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    filter: none !important;
  }
  
  /* Avatar */
  .li-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: transparent !important;
    box-shadow: none !important;
  }
  
  /* Navn og titel – sørg for ingen “plade” bag teksten */
  .li-card__name,
  .li-card__meta {
    font-weight: 600;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }
  
  .li-card__meta a {
    text-decoration: none;
  }
  
  /* Brødtekst */
  .li-card__body {
    background: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  
  /* Fod: Læs mere */
  .li-card__foot { margin-top: 10px; }
  .li-card__more {
    font-weight: 600;
    text-decoration: none;
  }
  .li-card__more:hover { text-decoration: underline; }
  
  /* Hover-elevate */
  .li-card:hover {
    transform: translateY(-0px);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  
  /* Responsiv */
  @media (max-width: 1024px) {
    .linkedin-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 680px) {
    .linkedin-grid { grid-template-columns: 1fr; }
  }

  /* Mobil: vis kun de første 3 udtalelser */
@media (max-width: 680px) {
    .linkedin-section .linkedin-grid > .li-card:nth-child(n+4) {
      display: none !important;
    }
  }
  
  /******************************************************** SPEAKER : DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  /* Grid layout */
  .bio-split__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  /* Venstre tekstside */
  .bio-stats { 
    margin-bottom: 26px; 
  }
  
  .bio-stat {
    font-family: 'PublicSans-ExtraBold', Arial, sans-serif;
    font-weight: 700;
  }
  
  /* CTA-knap */
  .bio-cta { 
    margin-top: 26px; 
  }
  
  /* Billede */
  .bio-image {
    margin: 0;
    border-radius: 0px;
    overflow: hidden;
  }
  .bio-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Mobil-tilpasning */
  @media (max-width: 980px) {
    .bio-split__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .bio-image {
      order: -1; /* billede først på mobil hvis ønsket */
    }
  }
  
  /******************************************************** FOOTER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/
  
  .site-footer{
    max-width: 1200px;
    margin: 90px auto 40px;
    padding: 28px 20px 22px;
    text-align: center;
  
    /* “rolig” base-look der matcher din side */
    background: transparent;
    border-top: 1px solid #FFFFFE;
  }




  
  
  .site-footer p{
    margin: 10px 0;
    font-size: 14px;
    line-height: 22px;
    color: #022E3B;
  }
  
  .site-footer .meta-disclaimer{
    max-width: 820px;
    margin: 0 auto 14px;
    font-size: 14px;
    line-height: 18px;
  }
  
  .site-footer a{
    color: #022E3B;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
  
    /* fin, subtil underline som følger tekstbredden */
    background-image: linear-gradient(#022E3B, #022E3B);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    padding-bottom: 1px;
  }
  
  .site-footer a:hover{
    opacity: 0.85;
  }
  
  /* Mobil */
  @media (max-width: 680px){
    .site-footer{
      margin: 70px auto 28px;
      padding: 22px 16px 18px;
    }
  }
  
    /* Padding i toppen af copyright linje */
  .site-footer .footer-copy {
    padding-top: 8px;
  }
  
  /******************************************************** FOOTER FARVESKIFT (scrolled-bottom) ********************************************************/
  
  body.scrolled-bottom .site-footer{
    background: transparent; /* behold dit mørkeblå body/footer-bg */
    border-top: 1px solid #ffffff 
  }
  
  body.scrolled-bottom .site-footer p,
  body.scrolled-bottom .site-footer .meta-disclaimer{
    color: #ffffff !important;
  }
  
  body.scrolled-bottom .site-footer a{
    color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
  }
  
  body.scrolled-bottom .site-footer a:hover{
    opacity: 0.9;
  }
  
  /******************************************************** CUSTOM BUND FARVESKIFT ********************************************************/
  
  /* CUSTOM GENERELT */
  
  /* Rød prik der er tilføjet cursor */
  body.scrolled-bottom .cursor-dot {
    background-color: #FFFFFE;
  }
  
  /* Ændring af baggrundsfarve, når scrolled-bottom er aktiv */
  body.scrolled-bottom,
  body.scrolled-bottom header,
  body.scrolled-bottom footer {
   background-color: #022E3B;
  }
  
  /* CUSTOM PAGE ELEMENTS */
  
  body.scrolled-bottom .qs-header h2 {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom  .qs-header p {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .qs-name,
  .qs-role,
  .qs-contact a {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .qs-name {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .qs-role {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .qs-contact a {
    color: #FFFFFE;
  }
  
  /* Knap */
  body.scrolled-bottom .qs-btn {
    background-color: #FFFFFE;
    color: #022E3B;
    border: #FFFFFE;
  }
  
  /* Farver i bund-tilstand */
  body.scrolled-bottom .qs-contact a {
    color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff);
  }
  
  body.scrolled-bottom .pricing__header h2 {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .price-card__price {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .price-card__desc {
    color: #FFFFFE;
  }
    
  /* Feature list + pænere checkmarks */
  body.scrolled-bottom .price-list {
    color: #FFFFFE;
  }
  
  body.scrolled-bottom .price-list li::before {
    color: #FFFFFE;
  }
  
  /* CTA-knap – mere luft over, ingen ekstra luft under, behagelig knaphøjde
  body.scrolled-bottom .price-card .btn {
    color: yellow;
    background-color: blue;
  }
   */

  /* Farver til knapper kun i pricing */
  body.scrolled-bottom .pricing .btn-primary { 
    background: #FFFFFE;
    color: #022E3B;
    border: 1px solid #FFFFFE;
  }
  
  body.scrolled-bottom .pricing .btn-outline { 
    background: transparent;
    color: #FFFFFE;
    border: 1px solid #FFFFFE;
  }
  
  /* Featured kort (#2) – 1px border i samme farve som knappen */
  body.scrolled-bottom .price-card--featured {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px yellow;
    box-shadow: none;
  }
  
  /* Når man er tæt på bunden: gør pris-kort transparente og fjern glass/blur */
  body.scrolled-bottom .pricing .price-card {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-color: #ffffff  !important; /* valgfrit – let outline */
    box-shadow: none !important;
  }
  
  /* Checkmarks gule i listen (mask bruger baggrundsfarve) */
  body.scrolled-bottom .pricing .price-list li::before {
    background-color: #ffffff  !important; /* gul */
  }
  
  /* (Valgfrit) Hvis du også vil sikre, at det generiske li-card ikke “skinner igennem” i pricing */
  body.scrolled-bottom .pricing .li-card {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }
  
  /* QS-billede: fjern kant/skygg­er ved bunden */
  body.scrolled-bottom .qs-image {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  
  /* Sørg for at selve billedet ikke laver halo/kanter */
  body.scrolled-bottom .qs-image img {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: inherit;   /* matcher figurens hjørner */
    transform: translateZ(0); /* fjerner evt. subpixel-halo i nogle browsere */
  }
  
  /* Topbar links/logo hvide i bunden */
  body.scrolled-bottom .topbar__brand,
  body.scrolled-bottom .topbar__link {
  color: #ffffff !important;
  opacity: 1 !important;
  }
  
  /* Bevar hvid ved hover/focus/visited */
  body.scrolled-bottom .topbar__link:hover,
  body.scrolled-bottom .topbar__link:focus-visible,
  body.scrolled-bottom .topbar__link:visited {
  color: #ffffff !important;
  opacity: 1 !important;
  }
  
  /* Topbar CTA-knap bliver hvid med sort tekst i bunden */
  body.scrolled-bottom .topbar__cta {
    background-color:  #ffffff !important;
    color: #022E3B !important;
    border: 1px solid  #ffffff !important;
  }
  
  /* Når man er i bunden: gør topbaren sort med hvid kant og fjern blur */
  body.scrolled-bottom .topbar {
    background: #022E3B !important;        /* ren sort baggrund */
    border: 1px solid #ffffff !important;  /* hvid kant */
    box-shadow: none !important;           /* fjern skygge */
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  
  /* ===== Kundeudtalelser – bund-tilstand ===== */
  
  /* Sektionstitel */
  body.scrolled-bottom .linkedin-heading h2 {
    color: #FFFFFE;
  }
  
  /* Kort (li-card) – fjern glass / gør transparente */
  body.scrolled-bottom .linkedin-section .li-card {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
  }
  
  /* Navn + titel */
  body.scrolled-bottom .li-card__name,
  body.scrolled-bottom .li-card__meta {
    color: #ffffff !important;
  }
  
  /* Brødtekst */
  body.scrolled-bottom .li-card__body p {
    color: #ffffff !important;
  }
  
  /* Avatar – ingen halo */
  body.scrolled-bottom .li-card__avatar {
    box-shadow: none !important;
    border: 0 !important;
  }
  
  /* ===== Features CTA – bund-tilstand ===== */
  
  body.scrolled-bottom .features-cta .btn-primary {
    background-color: #ffffff !important;   /* hvid knap */
    color: #022E3B !important;              /* mørk tekst */
    border: 1px solid #ffffff !important;
  }
  
  /* Hover – behold kontrast og ro */
  body.scrolled-bottom .features-cta .btn-primary:hover,
  body.scrolled-bottom .features-cta .btn-primary:focus,
  body.scrolled-bottom .features-cta .btn-primary:active {
    background-color: #ffffff !important;
    color: #022E3B !important;
    filter: brightness(0.95);
  }
  
  /* ===== Speaker / bio – bund-tilstand ===== */
  
  /* Overskrift / stats */
  body.scrolled-bottom .bio-stat {
    color: #FFFFFE;
  }
  
  /* Brødtekst */
  body.scrolled-bottom .bio-split__left p {
    color: #FFFFFE;
  }
  
  /* CTA-knap */
  body.scrolled-bottom .bio-cta {
    background-color: #ffffff !important;
    color: #022E3B !important;
    border: 1px solid #ffffff !important;
  }
  
  /* Billede – fjern evt. glass/kanter */
  body.scrolled-bottom .bio-image {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  
  body.scrolled-bottom .bio-image img {
    box-shadow: none !important;
    border: 0 !important;
  }
  
  /* === VIDEO FIX === */
  .hero-video {
    display: flex;
    justify-content: center;
  }
  
  .video-frame {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    background: none;
    box-shadow: 0 8px 24px rgba(15,23,42,.06);
    width: 100%;
    max-width: 960px;
  }
  
  .cf-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  
  #cfStream {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
  }
    
  /* POP UP */
  
  /* Gør billedet til et “link”, uden at ændre layout */
  .video-gate {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  
  /* Modal base */
  .modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
  }
  
  .modal.is-open {
    display: block;
  }
  
  /* Backdrop */
  .modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 46, 59, 0.35);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
  }
  
/* POPUP panel – Safari-sikkert: gradient border + solid fill */
.modal__panel{
    position: relative;
    width: min(500px, calc(100% - 32px));
    margin: 84px auto 32px;
    padding: 22px;
  
    border-radius: 0px;
    border: 0;
    background: transparent;
  
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  
    isolation: isolate; /* vigtig for stacking */
    z-index: 0;
  }
  
  /* Gradient border (11px) */
  .modal__panel::before{
    content:"";
    position:absolute;
    inset:-8px;                 /* border tykkelse */
    border-radius:inherit;
    background: linear-gradient(135deg, #022E3B, #FFA243);
    z-index:-2;
    pointer-events:none;
  }
  
  /* Solid hvid fill */
  .modal__panel::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:#FFFFFE;
    z-index:-1;
    pointer-events:none;
  }
  
  .modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 54px;
    height: 54px;
    border-radius: 0px;
    border: 0px solid rgba(255,255,255,0.45);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #022E3B;
  }
  
  .modal__title {
    margin: 0 0 14px;
    font-weight: 600;
    text-align: center;
  }
  
  .popup-heading{
  line-height: 1.25;
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 36px;
  }
  
  
  /* Form */
  .modal__form {
    display: grid;
    gap: 12px;
    margin-top: 10px;
  }
  
  .modal__field label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  /* Inputfelter som mini-glass-cards (samme DNA som .step) */
  .modal__field input{
  width: 100%;
  height: 52px;
  border-radius: 8px;
  
  /* Samme glass-base som cards – men lidt stærkere */
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  
  /* Samme type kant som cards – IKKE klassisk border */
  border: 1px solid rgba(255, 255, 255, 0.55);
  
  /* Det der får dem til at “løfte sig” */
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.08);
  
  background-clip: padding-box;
  
  padding: 0 16px;
  outline: none;
  
  color: #022E3B;
  font-size: 16px;
  font-family: 'PublicSans-Medium', Arial, sans-serif;
  
  transition:
    background .15s ease,
    box-shadow .15s ease;
  }
  
  /* Fokus: samme “løft” vibe */
  .modal__field input:focus{
  border-color: rgba(2, 46, 59, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  }
  
  /* (valgfrit) Lidt hover-lift ligesom kort */
  .modal__field input:hover{
  transform: translateY(0px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  }
  
  .modal__submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  
  .modal__disclaimer {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 18px;
    opacity: 0.9;
    text-align: center;
  }
  
  /* Video i modal */
  .modal__video {
    margin-top: 14px;
  }
  
  .modal__video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }
  
  .modal__video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  
  /* Mobil */
  @media (max-width: 680px) {
    .modal__panel {
      margin: 74px auto 18px;
      padding: 16px;
    }
  }



/********************************************************
  KNAPPER – ALT (undtagen header CTA) matcher .topbar__cta
  Safari-sikkert: gradient border + solid fill, altid bag tekst
********************************************************/

.btn,
a.btn,
button.btn,
input[type="submit"].btn,
.btn-primary,
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;

  padding: 14px 22px;
  border-radius: 8px;

  border: 0;
  background: transparent;
  cursor: pointer;

  color: #ffffff !important;
  text-decoration: none;

  /* NØGLEN: gør så ::before/::after kan ligge bag teksten */
  isolation: isolate;
  z-index: 0;

  transition: transform .15s ease;
}

/* Gradient border (bag alt) */
.btn::before,
a.btn::before,
button.btn::before,
input[type="submit"].btn::before,
.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  inset: -2px; /* border tykkelse */
  border-radius: inherit;
  background: linear-gradient(135deg, #022E3B, #FFA243);
  z-index: -2;
  pointer-events: none;
}

/* Indre fill (bag tekst, ovenpå border) */
.btn::after,
a.btn::after,
button.btn::after,
input[type="submit"].btn::after,
.btn-primary::after,
.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #022E3B;
  z-index: -1;
  pointer-events: none;
}

/* Hover */
.btn:hover,
a.btn:hover,
button.btn:hover,
input[type="submit"].btn:hover,
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(0px);
}

/* Focus */
.btn:focus-visible,
a.btn:focus-visible,
button.btn:focus-visible,
input[type="submit"].btn:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 162, 67, 0.35);
}

/* visited */
a.btn:visited,
a.btn-primary:visited,
a.btn-outline:visited {
  color: #ffffff !important;
}

/* Mobil */
@media (max-width: 680px) {
  .btn,
  a.btn,
  button.btn,
  input[type="submit"].btn,
  .btn-primary,
  .btn-outline {
    padding: 12px 18px;
    font-size: 15px;
  }
}








/********************************************************
  FIX: Knap-tekst forbliver hvid ved scrolled-bottom
  (Overstyrer dine bund-regler der gør teksten mørk)
********************************************************/

body.scrolled-bottom .btn,
body.scrolled-bottom a.btn,
body.scrolled-bottom button.btn,
body.scrolled-bottom input[type="submit"].btn,
body.scrolled-bottom .btn-primary,
body.scrolled-bottom .btn-outline,
body.scrolled-bottom .pricing .btn-primary,
body.scrolled-bottom .pricing .btn-outline,
body.scrolled-bottom .features-cta .btn-primary,
body.scrolled-bottom .bio-cta,
body.scrolled-bottom .qs-btn {
  color: #ffffff !important;
}

/* hvis der er <span> eller andre elementer inde i knappen */
body.scrolled-bottom .btn *,
body.scrolled-bottom .btn-primary *,
body.scrolled-bottom .btn-outline *,
body.scrolled-bottom .bio-cta *,
body.scrolled-bottom .qs-btn * {
  color: #ffffff !important;
}

@media (max-width: 680px){
    .topbar-wrap{
      padding-left: 0;
      padding-right: 0;
    }
  
    /* VIGTIG: overstyr padding fra @media (max-width: 900px) */
    .topbar{
      padding-left: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 680px){
    .popup-heading{
      font-size: 27px;
      line-height: 1.2;
      margin-top: 45px;
      margin-bottom: 12px;
    }
  }



  /* FIX: square billeder i fullwidth-image-row */
.fullwidth-image-row .image-row img{
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* FIX: Kun padding under denne ene CTA-overskrift */
.cta-section .cta-heading{
  padding-bottom: 18px; /* justér efter behov */
}

/* FIX: I scrolled-bottom skal CTA-knap-tekst forblive hvid – også på hover */
body.scrolled-bottom .features-cta a.btn,
body.scrolled-bottom .features-cta a.btn:hover,
body.scrolled-bottom .features-cta a.btn:focus,
body.scrolled-bottom .features-cta a.btn:active,
body.scrolled-bottom .features-cta a.btn:visited,
body.scrolled-bottom .features-cta a.btn.btn-primary:hover {
  color: #fffffe !important;
}

/* Hvis der ligger spans/ikoner inde i knappen, så tving dem også */
body.scrolled-bottom .features-cta a.btn:hover *,
body.scrolled-bottom .features-cta a.btn:active *,
body.scrolled-bottom .features-cta a.btn:focus * {
  color: #fffffe !important;
}



/********************************************************
  PRIVATLIVSPOLITIK: RAMME + TYPOGRAFI (FIX)
********************************************************/

/* Sørg for at dit generelle container altid har en rigtig ramme */
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Selve policy-sektionen */
  .policy{
    padding: 56px 0 70px;
  }
  
  /* Indholdets ramme (mere læsevenlig bredde end 1200) */
  .policy__wrap{
    max-width: 920px;
    margin: 0 auto;
  }
  
  /* “Kortet” som teksten skal ligge i */
  .policy__card{
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 34px;
  }
  
  /* Typografi i selve policy-teksten */
  .policy__content{
    line-height: 1.7;
    font-size: 16px;
    overflow-wrap: anywhere;   /* vigtig for lange mails/links/CVR osv. */
    word-break: break-word;
  }
  
  .policy__content h3{
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
  }
  
  .policy__content h4{
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.25;
  }
  
  .policy__content p{
    margin: 0 0 12px;
  }
  
  .policy__content ul{
    margin: 10px 0 14px 20px;
    padding: 0;
  }
  
  .policy__content li{
    margin: 8px 0;
  }
  
  /* CTA under kortet */
  .policy__cta{
    margin-top: 22px;
    text-align: center;
  }
  
  /* Mobil */
  @media (max-width: 680px){
    .container{ padding-left: 16px; padding-right: 16px; }
    .policy{ padding: 40px 0 52px; }
    .policy__card{ padding: 20px; }
    .policy__content{ font-size: 15px; }
    .policy__content ul{ margin-left: 18px; }
  }



  