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

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    sans-serif;
  line-height: 1.5;
    background-color: #f8fffa;

  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.current a {
  color: #0d3d3f;
}

/**********************************/
/*      NAVBAR/HEADER        */
/**********************************/
.l-inf {
  display: flex;
  gap: 30px;
}

.l-inf h2 {
  color: #161101;
}

.u-head {
background-image: linear-gradient(
    45deg,
    #023d3c 0%,
    #023130 99%,
    #022c2c 100%
  );}

.head-cont i {
  margin-right: 6px;
  color: #fff3c0;
}

.head-cont {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  padding: 5px 0;
}

.head-cont h2 {
  font-size: 16px;
  font-weight: 400;
  color: #fffbdf;
}

header {
background-color: #f7fff3;  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%); /* Safari støtte */

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);

  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
}

.container-kont {
  max-width: 1350px;
  width: 90%;
  margin: 0 auto;
}

.container-sm {
  max-width: 1250px;
  width: 80%;
  margin: 0 auto;
}

.navbar {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 70px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 19px;
  font-weight: 500;
  color: #000;
    font-family: "Bricolage Grotesque", sans-serif;

}

.darkerr {
  padding: 16px 24px;
  color: #fff;
  background-color: #054845;
  border-radius: 999px;
  display: inline-block;
  margin-left: 20px;
}

.darkerr a {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.nav-link.current {
  text-decoration: underline;
}

.darkerr i {
  margin-left: 10px;
}

.translate-real-btn {
  padding: 8px 20px;
  background-color: #2f1200;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.translate-real-btn:hover {
  background-color: #4b1c00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 6px auto;
  transition: all 0.3s ease;
  background-color: #002827;
}

/* HERO SECTION */
:root {
  --bg: #f6f5ef; /* lys off-white bakgrunn (fra prøven) */
  --ink: #1c1c1c; /* standard tekst */
  --muted: #6f6f6f; /* sekundær tekst */
  --brand: #b45143; /* rubin/rust-rød overskrift/CTA */
  --brand-dark: #8f3c30;
  --pill: #eee4df;
  --accent: #e9ddd8;
  --stroke: #e9e3e0;
  --success: #113b2c;
}

.hero {
  background-image: linear-gradient(
    45deg,
    #01474a 0%,
    rgb(1, 42, 42) 99%,
    rgb(3, 55, 55) 100%
  );

  position: relative;
  overflow: hidden;
}

/* Plassér og skaler stripe-SVG-en til høyre */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg-svg {
  position: absolute;
  right: -7vw; /* dra litt ut til høyre som i referansen */
  top: 0;
  width: min(22vw, 880px); /* bredde på formen */
  height: 70%;
  display: block;
  /* subtil “drift” for levende følelse (kan fjernes) */
  animation: heroStripeDrift 8s ease-in-out infinite alternate;
  opacity: 0.6; /* fin blending med bakgrunn */
}

/* Valgfri subtil bevegelse */
@keyframes heroStripeDrift {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-14px);
  }
}

/* Bonus: svake, superbrede striper over hele hero for ekstra dybde */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0 1px,
    rgba(255, 255, 255, 0) 1px 14px
  );
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
}

/* Mobil stack */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
}

/* Venstre kolonne */
.hero__pill {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  color: #2b2828;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 1px 0 #fff inset, 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
}

.hero__title {
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 55px;
  line-height: 1.2;
}

.hero__lead {
  color: #fff;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.25rem);
  margin: 30px 0;
  max-width: 500px;
}
.hero__sub {
  margin: 40px 0;
  font-size: 19px;
  color: #9efffd;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.8rem 1.25rem;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 22px;
  color: #092b26;

}


.nr-trust{
display:flex;
align-items:center;
gap:20px;
margin-bottom:30px;
}

.nr-trust-left{
display:flex;
}

.nr-trust-left img{
width:40px;
height:40px;
border-radius:50%;
object-fit:cover;
}

.nr-trust-left img:first-child{
margin-left:0;
}

.nr-stars{
display:flex;
align-items:center;
gap:12px;
font-size:20px;
color:#F5A623;
}

.nr-text span {
  font-weight: 800;
}

.nr-rating{
background:#ffffff1b;
color:#ffffff;
padding:2px 8px;
border-radius:18px;
font-size:14px;
font-weight:600;
}

.nr-text{
margin-top:6px;
font-size:16px;
color:#edfff5;
}


@media (max-width: 768px){

.nr-trust{
gap:14px;
margin-bottom:24px;
flex-wrap:wrap;
}

.nr-trust-left img{
width:34px;
height:34px;
}

.nr-stars{
font-size:18px;
gap:8px;
}

.nr-rating{
font-size:12px;
padding:2px 7px;
border-radius:14px;
}

.nr-text{
font-size:14px;
margin-top:4px;
line-height:1.3;
}

}


/* =========================
   Small mobile
========================= */

@media (max-width: 480px){

.nr-trust{
gap:12px;
}

.nr-trust-left img{
width:30px;
height:30px;
}

.nr-stars{
font-size:16px;
}

.nr-rating{
font-size:11px;
padding:2px 6px;
}

.nr-text{
font-size:13px;
}

}


.callout {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: 9px;
}

.callout__label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.callout__phone {
  color: #032f1a;
  font-weight: 600;
  text-decoration: none;
}

.hero__meta {
  margin-top: 1.2rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #2e2e2e;
  font-size: 0.8rem;
}

/* Høyre kolonne / bilde */
.media-card {
  position: relative;
  isolation: isolate;
  border-radius: 15px 15px 15px 100px; /* stor kurve nede til høyre */
  overflow: hidden;
  background: #fff;
}
.media-card img {
  width: 120%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Rund merke med ring */
.media-card__badge {
  position: absolute;
  right: 1.4rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 113px;
  height: 113px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.badge__ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed #ff927a;
  display: grid;
  place-items: center;
  color: #b45143;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.badge__text {
  transform: rotate(-32deg);
  text-align: center;
}
.badge__icon {
  position: relative;
  font-size: 1.25rem;
}

/* Notebadge nede */
.media-card__note {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.note__dotline {
  width: 140px;
  height: 0;
  border-top: 2px dashed #e2b8ad;
  border-radius: 999px;
  position: relative;
  left: 0;
}
.note__chip {
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.note__icon {
  display: inline-block;
}
/* ========== GLOBAL CONTAINER ========== */
.container {
  width: min(1350px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
  }
}

/* ========== HERO RESPONSIVE ========== */

/* Desktop Large */
.hero {
  padding: clamp(110px, 12vw, 120px) 0;
}

/* ===== GRID ===== */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}

/* ===== TITLE ===== */
.hero__title {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.15;
  max-width: 680px;
}

/* ===== LEAD ===== */
.hero__lead {
  font-size: clamp(19px, 1.1vw, 20px);
  margin: clamp(18px, 2.5vw, 32px) 0;
}

/* ===== SUBTEXT ===== */
.hero__sub {
  font-size: clamp(15px, 1vw, 18px);
  margin: clamp(20px, 3vw, 40px) 0;
}

/* ===== CTA ===== */
.hero__cta {
  gap: clamp(12px, 2vw, 24px);
}

/* ===== BUTTON ===== */
.hero-btn {
  font-size: clamp(15px, 1vw, 19px);
  padding: 0.9rem 1.4rem;
}

/* ===== CALLOUT ===== */
.callout {
  padding: 0.8rem 1rem;
}

/* ===== IMAGE ===== */
.media-card {
  height: clamp(380px, 42vw, 520px);
}

.media-card img {
  width: 120%;
  height: 100%;
  object-fit: cover;
}

/* ========== SVG STRIPES RESPONSIVE ========== */

.hero__bg-svg {
  width: min(60vw, 820px);
  right: -8vw;
  opacity: 0.35;
}

/* ===================================================== */
/* ================= TABLET ============================= */
/* ===================================================== */

@media (max-width: 1024px) {
  .hero {
    padding: 100px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__media {
    order: -1;
  }

  .media-card {
    height: 420px;
    border-radius: 20px;
  }

  .hero__bg-svg {
    width: 90vw;
    right: -30vw;
    opacity: 0.25;
  }
}

/* ===================================================== */
/* ================= MOBILE LARGE ======================= */
/* ===================================================== */

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 70px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__sub {
    font-size: 15px;
    margin: 24px 0;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .callout {
    width: 100%;
    justify-content: center;
  }

  .media-card {
    height: 340px;
    border-radius: 18px;
  }

  .hero__bg-svg {
    display: none; /* skjul stripes på mobil for clean look */
  }
}

/* ===================================================== */
/* ================= MOBILE SMALL ======================= */
/* ===================================================== */

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 60px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__sub {
    font-size: 14px;
  }

  .media-card {
    height: 280px;
  }
}




.nordrent-stats {
    background: #d7e6cae4; /* match “mint”-grønn */
    margin-bottom: 80px;
}

  .nordrent-stats__inner{
  
    padding: 44px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .nordrent-stat{
    text-align: center;
  }

  .nordrent-stat__number{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(48px, 4.8vw, 50px);
    line-height: 1;
    color: #092417f1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .nordrent-stat__label{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(14px, 1.2vw, 22px);
    line-height: 1.35;
    color: #000;
    opacity: 0.95;
  }

  .plus{
    margin-left: 2px;
  }

 @media (max-width: 900px){
  .nordrent-stats{
    margin-bottom: 50px;
  }

  .nordrent-stats__inner{
    grid-template-columns: repeat(2, 1fr); /* 2x2 */
    gap: 18px;
    padding: 22px 14px;
  }

  .nordrent-stat__number{
    font-size: clamp(34px, 10vw, 34px); /* mindre enn desktop */
    margin-bottom: 8px;
  }

  .nordrent-stat__label{
    font-size: clamp(13px, 3.6vw, 13px);
    line-height: 1.25;
    max-width: 16ch; /* holder label pen på mobil */
    margin: 0 auto;
  }
}

/* Små mobiler (iPhone SE osv.) */
@media (max-width: 480px){
  .nordrent-stats__inner{
    grid-template-columns: repeat(2, 1fr); /* fortsatt 2x2 */
    gap: 14px;
    padding: 18px 12px;
  }

  .nordrent-stat__number{
    font-size: 34px;
  }

  .nordrent-stat__label{
    font-size: 13px;
    max-width: 15ch;
  }
}

/* Ekstra små skjermer */
@media (max-width: 360px){
  .nordrent-stats__inner{
    gap: 12px;
    padding: 16px 10px;
  }

  .nordrent-stat__number{
    font-size: 32px;
  }

  .nordrent-stat__label{
    font-size: 12.5px;
    max-width: 14ch;
  }
}

  


/* ===== WHY / CHOOSE US (Collage + text) ===== */
.why {
  background-color: #e6f3d7e6;
  padding: 90px 0;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(46px, 600px, 84px);
  align-items: center;
}

/* LEFT COLLAGE */
.why-media {
  position: relative;
  min-height: 520px;
}

.why-photo {
  position: absolute;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #532626;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-photo--small {
  width: 160px;
  height: 160px;
  top: 10px;
  left: 20px;
  border-radius: 14px;
  transform: rotate(-4deg);

}

.why-photo--big {
  width: min(440px, 64%);
  height: 350px;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  transform: rotate(-6deg);

}




.why-photo--mid {
  width: min(380px, 64%);
  height: 300px;
  right: 0;
  top: 40px;
  border-radius: 50%;
  transform: rotate(4deg);
        border: solid #e7f2dc 9px;

}

/* Small decor icons */
.why-spark {
  position: absolute;
  left: -6px;
  top: -6px;
  font-size: 34px;
  opacity: 0.7;
}

.why-icon {
  position: absolute;
  font-size: 34px;
  opacity: 0.75;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.why-icon--vacuum {
  right: 60px;
  bottom: 36px;
}

.why-icon--spray {
  right: 14px;
  bottom: 160px;
}

/* RIGHT CONTENT */
.why-eyebrow {
  margin: 0 0 10px 0;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  background-color: #002827;
}

.why-title {
  margin: 14px 0;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #011611;
  font-weight: 600;
      font-family: "Bricolage Grotesque", sans-serif;

}

.why-lead {
  max-width: 45ch;
  margin-top: 30px;
  color: #11211dea;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 600;
  font-size: 18.5px;
}

/* FEATURES */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-top: 40px;
  margin-bottom: 22px;
}

.why-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  align-items: start;
  padding: 22px 10px;
  border-radius: 16px;
}

.why-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000301;
  font-size: 18px;
}

.why-feature h3 {
  margin: 0 0 8px 0;
  font-size: 19.5px;
  color: #0c2215;
  font-weight: 600;
}

.why-feature p {
  margin: 0;
  font-size: 16px;
  color: rgba(6, 31, 11, 0.932);
  line-height: 1.5;
  width: 90%;
}

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

.why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.why-btn--primary {
  background: #002827;
  color: #fff;
  border: solid #00260e 1px;
}

.why-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(143, 232, 92, 0.42);
}

.why-btn--ghost {
  background: #fff;
  color: #082c22;
  border: 1px solid rgba(8,44,34,0.25);
}

.why-btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(8,44,34,0.38);
}

@media (max-width: 1024px) {

  .why-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-media {
    order: -1;
    min-height: 400px;
  }

  .why-photo--big {
    width: 60%;
    height: 240px;
    background-size: cover;
  }

  .why-photo--mid {
    width: 55%;
    height: 240px;
        background-size: cover;

    top: 20px;
  }

  .why-title {
    font-size: 34px;
  }

  .why-lead {
    font-size: 16.5px;
  }
}

/* =========================
   WHY features: 2 og 2 på mobil
========================= */

/* Mobil / tablet: 2 kolonner (2x2) */
@media (max-width: 768px){
  .why {
    padding: 40px 0;
  }

  .why-features{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* Litt mer kompakt så det passer pent */
  .why-feature{
    padding: 16px 12px;
    align-items: flex-start;
  }

  .why-badge{
    flex: 0 0 auto;
  }

  .why-feature h3{
    font-size: 16px;
    line-height: 1.2;
  }

  .why-feature p{
    display: none;
  }
}

/* Små mobiler: hvis 2 kolonner blir for trangt, gå tilbake til 1 */
@media (max-width: 420px){
  .why-features{
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */
/* ================= MOBILE SMALL ======================= */
/* ===================================================== */

@media (max-width: 480px) {

  .why {
    padding: 60px 0;
  }

  .why-media {
    min-height: 280px;
  }

  /* Mer clean mobil collage */
  .why-photo--big {
    width: 85%;
    height: 200px;
    transform: none;
    border-radius: 16px;
  }

  .why-photo--mid {
    width: 75%;
    height: 170px;
    top: 10px;
    transform: none;
  }

  .why-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .why-lead {
    font-size: 14.5px;
  }

  .why-eyebrow {
    font-size: 12px;
    padding: 6px 12px;
  }
}






:root {
  --benefits-card: #054845;

  /* You were referencing these but didn’t define them in your snippet */
  --benefits-ink: #0b1b22;
  --benefits-primary: #12353d;
  --benefits-muted: rgba(11, 27, 34, 0.72);
  --benefits-stroke: rgba(255, 255, 255, 0.08);

  --brand-red: #fff9f9;
  --brand-red-hover: #9f0716;
}

/* SECTION */
.benefits {
  
  color: var(--benefits-ink);
  padding: 60px 0;
  padding-bottom: 150px;
}

/* HEAD */
.benefits-head {
  margin-bottom: clamp(22px, 3vw, 40px);
}

.benefits-head h2 {
  margin: 0;
  font-size: clamp(26px, 2.4vw + 1rem, 45px);
  line-height: 1.15;
  max-width: 450px;
  font-weight: 500;
  color: var(--benefits-primary);
  letter-spacing: -0.02em;
      font-family: "Bricolage Grotesque", sans-serif;

}

.benefits-head h2 span {
  font-size: 30px;
  font-weight: 400;
  color: #00323098;
      font-family: "Bricolage Grotesque", sans-serif;

}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 36px);
  margin-top: clamp(16px, 2vw, 22px);
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* CARD */
.benefits-card {
  position: relative;
  background: var(--benefits-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--benefits-stroke);
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefits-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.14);
}

/* "LES MER" BUTTON (top-right) */
.benefits-more {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.027);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.benefits-more:hover {
  transform: translateY(-1px);
  background: rgba(1, 45, 39, 0.803);
  border-color: rgba(255, 255, 255, 0.569);
}

/* MEDIA */
.benefits-media {
  position: relative;
  aspect-ratio: 15 / 9;
  overflow: hidden;
}

.benefits-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}


/* fade into card color */
.benefits-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: linear-gradient(
    180deg,
    rgba(0, 57, 72, 0) 0%,
    rgba(0, 58, 72, 0) 45%,
    var(--benefits-card) 100%
  );
}

/* BODY */
.benefits-body {
  padding: 22px 18px 20px;
  display: grid;
  gap: 12px;
}

.benefits-body h3 {
  margin: 0;
  font-size: clamp(20px, 1.5vw + 12px, 24px);
  line-height: 1.3;
  font-weight: 500;
  margin: 20px 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.benefits-body p {
  margin-top: 20px;
  color: rgb(255, 255, 255);
  line-height: 1.75;
  width: 70%;
  font-size: 15.5px;
}

/* TAGS / PILLS */
.smal {
  padding: 6px 0 2px;
}

.smal-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-smal {
  padding: 6px 14px;
  border: rgba(171, 255, 254, 0.55) solid 0.8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.10);
}

.flow-smal h5 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin: 0;
}

/* CTA link button */
.benefits-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #000000;
  padding: 10px 18px;
  background-color: var(--brand-red);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
  margin-top: 10px;
}

.benefits-link:hover {
  background-color: #b0dede;
  color: #064437;
  transition: all 0.1s ease-in-out;
  
}


@media (max-width: 768px){

.benefits-head h2{
font-size: clamp(22px, 6vw, 30px);
line-height: 1.2;
max-width: 100%;
letter-spacing: -0.01em;
}

.benefits-head h2 span{
display:block;
font-size: clamp(18px, 4.5vw, 22px);
margin-top:6px;
}

}

/* Små mobiler */

@media (max-width: 480px){

.benefits-head h2{
font-size: 22px;
line-height: 1.25;
}

.benefits-head h2 span{
font-size:16px;
margin-top:4px;
}

}


/* =========================
   MODAL / POPUP (PRO)
========================= */
/* =========================
   MODAL / POPUP (PRO) - UPGRADED
   (Kun popup-endring)
========================= */

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.service-modal.is-open {
  display: block;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 18, 0.70);
  backdrop-filter: blur(12px);
  animation: smFade 0.18s ease-out forwards;
}

.service-modal__dialog {
  position: relative;
  width: min(980px, 92vw);
  margin: clamp(16px, 5vh, 44px) auto;
  max-height: 90vh;
  overflow: auto;
  border-radius: 22px;
  background: #ffffff;
  color: #0b1b22;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  transform: translateY(14px) scale(0.98);
  animation: smPop 0.22s cubic-bezier(.2,.9,.2,1) forwards;
}

/* Nicer scrollbar (optional, still clean) */
.service-modal__dialog::-webkit-scrollbar { width: 10px; }
.service-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.16);
  border-radius: 999px;
}
.service-modal__dialog::-webkit-scrollbar-track { background: transparent; }

.service-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255, 255, 255, 0.75);
  color: #111;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.15s ease, background 0.15s ease;
}

.service-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.service-modal__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.service-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.service-modal__content {
  padding: 26px 24px 28px;
  display: grid;
  gap: 14px;
}

.service-modal__title {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #002c38;
}

.service-modal__desc {
  margin: 0;
  color: rgba(11, 27, 34, 0.78);
  line-height: 1.8;
  max-width: 75ch;
}

.service-modal__box {
  background: #f4f9fb;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 16px 16px;
}

.service-modal__box h4 {
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003948;
  font-weight: 800;
}

.service-modal__box ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 27, 34, 0.82);
  line-height: 1.75;
}

.service-modal__box li {
  margin: 6px 0;
}

/* Reuse your pills look inside modal */
#serviceModalFits .flow-smal {
  background: rgba(0, 44, 56, 0.06);
  border: 1px solid rgba(0, 44, 56, 0.12);
}
#serviceModalFits .flow-smal h5 {
  color: rgba(0, 44, 56, 0.88);
}

/* Actions */
.service-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.service-modal__cta {
  text-decoration: none;
  background: var(--benefits-card);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.2s ease;
}

.service-modal__cta:hover {
  transform: translateY(-1px);
  background: #012d27;
}

.service-modal__ghost {
  background: transparent;
  color: #0b1b22;
  border: 1px solid rgba(0,0,0,0.14);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* Animations */
@keyframes smFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes smPop {
  from { transform: translateY(14px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Mobile */
@media (max-width: 640px) {
  .service-modal__media { aspect-ratio: 16 / 9; }
  .service-modal__content { padding: 18px; }
}



:root {
  --flow-bg: ;
  --flow-ink: #0b1320;
  --flow-muted: #6b7a8c;
  --flow-accent: #052418; /* primær aksent */
  --flow-line: #01363dae; /* tidslinje-strek */
  --flow-node: #0b1320; /* ikonfarge oppå hvit sirkel */
}

.flow-section {
  background-color: #edeadb;
  color: var(--flow-ink);
  padding: 40px 0;
}


.flow-eyebrow {
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 60px;
  font-weight: 800;
}

.flow-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000000;
  line-height: 1.12;
  font-size: clamp(28px, 3vw + 14px, 30px);
  margin-bottom: 70px;
}

.flow-lead {
  margin: 22px 0 36px;
  color: #362b2b;
  max-width: 50ch;
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.6;
}

/* HORIZONTAL TIMELINE */
.flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: clamp(18px, 3vw, 36px);
  padding: 22px 0 10px;
  list-style: none;
  margin: 0 0 28px 0;
}

/* bakre linje */
.flow-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 60px; /* justert til midten av nodene */
  height: 0.6px;
  background: linear-gradient(90deg, var(--flow-line), var(--flow-line));
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 14px;
  align-items: start;
}

.flow-node {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000000;
  border: 1px solid var(--flow-line);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.flow-node svg {
  width: 25px;
  height: 25px;
  color: #cafffd;
}
.flow-index {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
  font-weight: 600;
  color: var(--flow-accent);
  background: #ffffff;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid var(--flow-line);
}

.flow-body h3 {
  margin: 4px 0 6px;
  font-weight: 800;
  font-size: 22px;
  margin-left: 12px;
  color: #022b2b;
  
  font-weight: 600;
}
.flow-body p {
  margin: 0;
  color: #021c1c;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 40px;
}

/* Hover/fokus-effekter */
.flow-step:hover .flow-node,
.flow-step:focus-within .flow-node {
  transform: translateY(-2px);
  border-color: var(--flow-accent);
}

/* CTA */
.flow-cta {
  margin-top: 12px;
}
.flow-button {
  display: inline-block;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--flow-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.flow-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 166, 183, 0.28);
}
.flow-button:active {
  transform: translateY(0);
}
.flow-button:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Responsiv: vertikal tidslinje på mobil */
@media (max-width: 800px) {
  .flow-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .flow-timeline::before {
    left: 32px;
    right: auto;
    top: 0;
    bottom: 0;
    height: auto;
    width: 2px;
    background: var(--flow-line);
  }
  .flow-step {
    grid-template-columns: 64px 1fr;
  }
  .flow-node {
    margin-top: -2px;
  }
}

/* ====== Farger/variabler – matcher referansen ====== */
:root {
  --social-outer: #0e0b4a; /* ytre mørk blå */
  --social-panel: #18206e; /* panel */
  --social-purple: #8f5af6; /* lilla venstre */
  --social-text: #ffffff;
  --social-muted: #ede7ff;
  --social-radius-panel: 26px;
  --social-radius-img: 24px;
}

.social-section {
  background: var(--social-outer);
  padding: clamp(24px, 4vw, 48px) 0;
  color: var(--social-text);
}

/* Bruk din egen container hvis du har; denne er “safe” fallback */
.social-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.social-card {
  background: var(--social-panel);
  border-radius: var(--social-radius-panel);
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}
@media (max-width: 1100px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== Venstre lilla form med skrå kant + concave “scoop” ====== */
.social-left {
  position: relative;
  background: var(--social-purple);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 36px);
  /* skrå høyrekant */
  clip-path: polygon(0 0, 88% 0, 82% 100%, 0 100%);
  overflow: hidden;
}
/* concave “scoop” i nederste høyre – legges i panel-fargen */
.social-left::after {
  content: "";
  position: absolute;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  right: -18%;
  bottom: -24%;
  border-radius: 50%;
  background: var(--social-panel);
}

/* heksagon badge plassert mot høyre */
.social-badge {
  position: absolute;
  right: clamp(18px, 2.2vw, 32px);
  top: clamp(22px, 2.6vw, 34px);
  width: min(10vw, 92px);
  aspect-ratio: 1/1;
  display: block;
}
.social-badge-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Topp-linje + label */
.social-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(16px, 2.2vw, 24px);
}
.social-topline {
  display: block;
  height: 2px;
  width: clamp(160px, 16vw, 360px);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
}
.social-eyebrow {
  color: var(--social-muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.social-title {
  margin: 0;
  font-size: clamp(2rem, 2.6vw + 1.2rem, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 22ch; /* stram linjelengde som i eksemplet */
}

/* ====== Høyre bilde ====== */
.social-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--social-radius-img);
}
.social-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--social-radius-img);
}

/* Mobil: lilla felt først, bilde under */
@media (max-width: 1100px) {
  .social-left {
    clip-path: none;
    border-radius: 22px;
  }
  .social-left::after {
    display: none;
  }
}



/* ===== FAQ (renhold) – unike klasser ===== */



.faq-section{
padding:80px 0;
background:#054845;
}

.faq-grid{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:80px;
align-items:start;
}

@media(max-width:900px){
.faq-grid{
grid-template-columns:1fr;
gap:50px;
}
}

.faq-left h2{
font-size:40px;
font-weight:500;
color:#ffffff;
margin-bottom:20px;
letter-spacing:-0.02em;
}

.faq-left p{
font-size:19px;
line-height:1.8;
color:#f5feff;
max-width:490px;
margin-top: 60px;

}

.faq-right{
display:flex;
flex-direction:column;
gap:20px;
}

.faq-item{
background:transparent;
border: solid #fff 0.6px;
border-radius:14px;
overflow:hidden;
transition:all .25s ease;
}

.faq-question{
width:100%;
background:none;
border:none;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 28px;
font-size:20px;
font-weight:500;
color:#ffffff;
cursor:pointer;
text-align:left;
}

.faq-icon{
background:#04c89e;
color:rgb(22, 6, 6);
width:34px;
height:34px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
transition:all .25s ease;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
padding:0 28px;
}

.faq-answer p{
margin:0;
padding-bottom:22px;
font-size:16px;
line-height:1.8;
color:#ffffffd3;
}

.faq-item.active .faq-answer{
max-height:200px;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding-bottom: 40px;
}

.feature-box {
  border-radius: 12px;
  border: solid #ffffff49 0.1px;
  padding: 30px 25px;
  text-align: left;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.icon {
  font-size: 2.9rem;
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-box p {
  color: #b1b1b1;
  font-size: 0.97rem;
  line-height: 1.6;
}
.d-app{
  padding-top: 60px;
  background-image: linear-gradient(to top, #fbfff8 0%, #f9fff4 100%);
}

.app-cont{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* Tekst */
.info-down{
  margin: 0; /* fjern hard left-margin */
  padding: 0;
}

.info-down h5{
  font-size: 14px;
  background-color: #017b34;
  color: #fff;
  padding: 6px 14px;
  margin: 0 0 16px;
  font-weight: 600;
  width: fit-content;
  border-radius: 999px;
  letter-spacing: .2px;
}

.info-down h1{
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 40px;
  color: #052720;
      font-family: "Bricolage Grotesque", sans-serif;

}

.info-down p{
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0;
  max-width: 45ch;
  font-weight: 600;
  color: rgb(3, 36, 28);
}

.bestill {
  display: inline-block;
  margin-top: 40px;
  background-color: #002c38;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 19px;

}



/* App badges */
.app-down{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.apps{
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}

.apps img{
  height: 48px;     /* profesjonell kontroll */
  width: auto;
  display: block;
}

.apps:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.apps:active{
  transform: translateY(0);
}

/* Bilde */
.dif-app{
  display: flex;
  justify-content: center;
}

.dif-app img{
  width: min(520px, 100%);
  height: auto;
  display: block;
}

/* Nettbrett */
@media (max-width: 1024px){
  .app-cont{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .d-app {
    padding-top: 110px;
    
  }

  /* sørger for at tekst kommer først og bildet etter */
  .app-info{ order: 1; }
  .dif-app{ order: 2; }

  .dif-app{
    justify-content: flex-start;
  }

  .apps img{
    height: 54px;
  }
}

/* Mobil */
@media (max-width: 560px){
  .info-down h5{
    font-size: 13px;
    padding: 6px 12px;
  }

  .app-down{
    gap: 12px;
  }

  .apps img{
    height: 42px;
  }
}



:root{
    --hiw-bg: #ffffff;
    --hiw-text: #0f172a;          /* mørk navy tekst */
    --hiw-muted: #475569;         /* slate */
    --hiw-soft: #f3f4f6;          /* lys grå kort */
    --hiw-border: rgba(15,23,42,.06);
    --hiw-primary: #1d4ed8;       /* blå knapp */
    --hiw-primary-2: #2563eb;
    --hiw-navy: #0b1730;          /* mørk CTA */
  }

  .how-it-works{
    background-color: #fff;

    padding: 120px 0;
  }

  .hiw-container{
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
  }

  .hiw-header{
    text-align: center;
    margin-bottom: clamp(28px, 3.2vw, 44px);
  }

  .hiw-kicker{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hiw-primary-2);
    font-weight: 600;
    letter-spacing: .12em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .hiw-kicker-icon{
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    color: var(--hiw-primary-2);
  }
  .hiw-kicker-icon svg{ width: 100%; height: 100%; }

  .hiw-title{
    color: #0a2419;
    font-weight: 600;
    line-height: 1.08;
    font-size: clamp(34px, 4vw, 52px);
    padding-bottom: 40px;
    margin: 0;
  }

  .hiw-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
  }

  .hiw-card{
    position: relative;
    background: #e6f6eaf2;
    border: 1px solid var(--hiw-border);
    border-radius: 10px;
    padding: 34px 30px;
    min-height: 250px;
    overflow: hidden;
  }

  .hiw-num{
    font-size: 45px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.896);
    letter-spacing: -0.03em;
    margin-bottom: 70px; /* gir samme “luft” som i bildet */
  }

  .hiw-card-title{
    margin: 0 0 10px 0;
    font-size: 22px;
    line-height: 1.2;
    color: var(--hiw-text);
    font-weight: 800;
  }

  .hiw-card-text{
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--hiw-muted);
    max-width: 34ch;
  }

  /* CTA */
  .hiw-card--cta{
    background: #fff;
    border-color: rgba(255,255,255,.06);
  }

  .hiw-cta-spark{
    position: absolute;
    top: 26px;
    left: 26px;
    width: 34px;
    height: 34px;
    color: rgba(255,255,255,.45);
  }
  .hiw-cta-spark svg{ width: 100%; height: 100%; }

  .hiw-cta-title{
    margin: 96px 0 22px 0; /* plasser tekst litt lavere som bildet */
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    color: #250808;
  }

  .hiw-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--hiw-primary-2), var(--hiw-primary));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 14px 28px rgba(29, 78, 216, .28);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  }

  .hiw-btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 18px 34px rgba(29, 78, 216, .34);
  }

  .hiw-btn:active{
    transform: translateY(0);
  }

  .hiw-btn-icon{
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
  }
  .hiw-btn-icon svg{ width: 100%; height: 100%; }

  /* Responsiv */
  @media (max-width: 1100px){
    .hiw-grid{ grid-template-columns: repeat(2, 1fr); }
    .hiw-card{ min-height: 240px; }
  }

  @media (max-width: 620px){
    .hiw-container{ width: min(1180px, calc(100% - 28px)); }
    .hiw-grid{ grid-template-columns: 1fr; }
    .hiw-num{ margin-bottom: 60px; }
    .hiw-card{ padding: 28px 22px; }
    .hiw-cta-title{ margin-top: 78px; }
  }


/* Optional container (slett om du allerede har) */

/* ---------- Section styles ---------- */
:root {
  --rings-base: #fbfeff; /* lys bakgrunn bak ringene */
  --rings-color: 16, 77, 89; /* #104d59 som RGB (for rgba) */
  --ring-center-y: 38%; /* hvor høyt sentrum av sirklene ligger */
}

/* ====== Seksjon ====== */
.rings-hero {
  background: var(--rings-base);
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}

.rings-hero__wrap {
  position: relative;
  width: min(780px, 92vw);
  margin: 0 auto;
}

/* 3 radial-gradients (samme farge, ulike opasiteter) */
.rings-hero__wrap::before {
  content: "";
  position: absolute;
  inset: -25% -30% -10% -30%; /* stor flate som kan strekke ringene utover */
  z-index: -1; /* legg ringene bak mobilen */
  background:
    /* ytre ring (svakest) */ radial-gradient(
      circle at 50% var(--ring-center-y),
      rgba(var(--rings-color), 0.06) 0%,
      rgba(var(--rings-color), 0.06) 46%,
      rgba(var(--rings-color), 0) 47%
    ),
    /* midterste ring */
      radial-gradient(
        circle at 50% var(--ring-center-y),
        rgba(var(--rings-color), 0.1) 0%,
        rgba(var(--rings-color), 0.1) 34%,
        rgba(var(--rings-color), 0) 35%
      ),
    /* indre ring (sterkest) */
      radial-gradient(
        circle at 50% var(--ring-center-y),
        rgba(var(--rings-color), 0.18) 0%,
        rgba(var(--rings-color), 0.18) 22%,
        rgba(var(--rings-color), 0) 23%
      );
  pointer-events: none;
}

/* CTA: sørg for at dekor/overlay aldri blokkerer klikk */
.cta-book,
.cta-book__wrap{
  position: relative;
}

/* Hvis du bruker pseudo-elementer for wave/overlay i CTA */
.cta-book::before,
.cta-book::after,
.cta-book__wrap::before,
.cta-book__wrap::after{
  pointer-events: none;
}

/* Hvis du har en egen wave/div (bytt til riktig klasse hvis den heter noe annet) */
.cta-book .wave,
.cta-book .cta-wave,
.cta-book .cta-bg,
.cta-book .cta-overlay{
  pointer-events: none;
}

/* Sørg for at knappen ligger øverst og er klikkbar */
.cta-book__action,
.cta-book__phone{
  position: relative;
  z-index: 5;
}

/* Mobil-mockup-bilde i midten */
.rings-hero__phone {
  display: block;
  width: min(420px, 86vw);
  margin-inline: auto;
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(2, 6, 23, 0.15));
}

/* Valgfritt: større telefon på brede skjermer */
@media (min-width: 1200px) {
  .rings-hero__phone {
    width: 460px;
  }
}
.info-side {
  padding: 70px 0;
  background-image: linear-gradient(
    45deg,
    #104d59 0%,
    #002524 99%,
    #043d4b 100%
  );
}

.utl-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 0; /* én padding-deklarasjon holder */
}

.pd-r {
  padding: 40px;
}

.r-utl {
  padding-top: 80px;
}

.r-utl h2 {
  font-size: 22px;
  font-weight: 400;
  color: #e5ecf0;
}

.r-utl h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #ffffffe1;
  font-weight: 700;
  max-width: 600px;
  padding: 30px 0;
}

.r-utl p {
  max-width: 500px;
  color: #e0fdffe3;
  font-weight: 400;
  font-size: 20px;
  padding-top: 30px;
}

.btn-location {
  display: inline-block;
  padding: 12px 40px;
  background-color: #004c78;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

/* ---------- Bildet mindre, samme kolonnebredde ---------- */
.iutl {
  display: grid;
  place-items: center; /* sentrer bildet i kolonnen */
  padding: 12px 0;
  background-image: linear-gradient(
    45deg,
    #104d59 0%,
    #002524 99%,
    #043d4b 100%
  );
  border-radius: 50%;
  height: 80dvh;
  align-items: center;
}

/* Gjør selve bildet mindre enn kolonnen (75% av kolonnebredden) */
.iutl img {
  width: clamp(260px, 75%, 320px); /* justér 75% for større/mindre bilde */
  height: auto;
  display: block;
}

/* ---------- Responsiv: stack på mobil ---------- */
@media (max-width: 900px) {
  .utl-info {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* På små skjermer kan bildet gjerne fylle bredden */
  .iutl img {
    width: 100%;
  }
}





.cta-book {
  padding-bottom: 100px;
}

/* Kort / wrapper */
.cta-book__wrap {
  position: relative;
  background: linear-gradient(135deg, #0e3b2f 0%, #175142 100%);
  border-radius: 16px;
  padding: 56px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

/* Subtle wave overlay */
.cta-book__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='800' height='400' viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200C150 120 250 280 400 200C550 120 650 280 800 200V400H0Z' fill='%23ffffff10'/%3E%3C/svg%3E")
    no-repeat center / cover;
  opacity: 0.35;
}

/* Venstre tekst */
.cta-book__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Høyre side */
.cta-book__action {
  text-align: center;
}

/* Telefon knapp */
.cta-book__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #eefff9;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 26px;
  border: solid #fff 1px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease;
}

.cta-book__phone:hover {
  transform: translateY(-1px);
}

/* Ikon */
.cta-book__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.cta-book__icon svg {
  width: 100%;
  height: 100%;
  fill: #0c2a20;
}

/* Subtekst */
.cta-book__sub {
  margin: 16px 0 0;
  color: #d6e2dc;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .cta-book__wrap {
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .cta-book__title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .cta-book__wrap {
    padding: 40px 26px;
  }

  .cta-book__title {
    font-size: 30px;
  }

  .cta-book__phone {
    font-size: 17px;
    padding: 14px 22px;
  }
}




.form-contact {
  padding: 90px 0;
  background-color: #053c35;
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 40px 0;
}

.form-info h2 {
  color: #ebfffa;
      font-family: "Bricolage Grotesque", sans-serif;

  font-size: 50px;
  font-weight: 500;
  max-width: 95%;
  line-height: 1.1;
  margin-bottom: 40px;
}

.form-info h6 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;
  max-width: 90%;
  padding-bottom: 40px;
  font-weight: 500;
}

.contact-card {
  display: flex;
  align-items: center;
  max-width: 600px;
}


.contact-details h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  border: solid #fff 1px;
}

.contact-details p {
  margin: 6px 0;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.5;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  margin-top: 8px;
}

.form-input {
  width: 100%;
  padding-left: 40px;
}

.form-input span {
  color: #ff5a5af6;
  font-size: 20px;
}

label {
  display: block;
  font-size: 18px;
  color: #eaffd8;
  font-weight: 500;
  margin: 15px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  border: none;
  resize: vertical;
}

select {
  background: #ffffff;
  color: #111827;
}

.cert-item img {
  width: 100%;
  max-width: 20%;
  
}

textarea::placeholder {
  color: #6b7280;
}

input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  background: #ffffffb0;
  border-radius: 3px;
  border: none;
}




.cert-title{
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 600;
  color: #e2ffb4;                /* grå tittel */
}

.cert-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.cert-item{
  display: flex;
  align-items: center;
}

.cert-logo{
  display: block;
  height: auto;
  max-width: 100%;
}

/* Størrelser som ligner screenshot */
.cert-logo--startbank{
  width: 200px;
}

.cert-logo--ogrb{
  width: 200px;
}

/* Responsiv (mobilvennlig, pro) */
@media (max-width: 900px){
  .cert-title{ font-size: 28px; }
  .cert-row{ gap: 28px; }
  .cert-logo--startbank{ width: 460px; }
  .cert-logo--ogrb{ width: 250px; }
}

@media (max-width: 720px){
  .cert-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .cert-logo--startbank{ width: min(520px, 100%); }
  .cert-logo--ogrb{ width: min(320px, 100%); }
}


input[type="submit"] {
  background-color: #ffffff;
  color: #06402f;
  padding: 19px 30px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.9;
}

.top-icon {
  padding: 40px 0;
  color: #ffffff;
  max-width: 500px;
}

.top-icon p {
  margin-top: 80px;
  color: #fffffff1;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.content-icon {
  display: flex;
  margin-bottom: 30px;
}

.content-icon i {
  margin-right: 10px;
  font-size: 20px;
  color: #000000;
  background-color: #302cff;
  padding: 10px;
  border-radius: 50%;
}

.serving h4 {
  margin-top: 10px;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
}

.serving h4 a {
  color: #000000;
  text-decoration: none;
}

.serving h4 a:hover {
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .grid-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-input,
  .form-info {
    padding-left: 0;
    width: 100%;
  }

  .contact-image img {
    width: 140px;
    height: 140px;
  }

  .form-info h2 {
    font-size: 38px;
  }

  .form-info h6,
  .top-icon p {
    font-size: 16px;
  }

  .contact-details h3 {
    font-size: 20px;
  }

  .top-icon .content-icon {
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/*PRODUCTS*/
.products {
  padding: 120px 0;
  align-items: center;
  text-align: center;
}

.cont-prod {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.prod-cat img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
}

/**********************************/
/*      FOOTER      */
/**********************************/
.nr-footer{
  background:#f3f8f1;
  padding: 90px 0 35px;
  border-top: 1px solid rgba(0,0,0,0.06);
  color:#0b1b22;
}

.nr-footer__top{
  display:grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 90px;
  align-items:start;
}

@media (max-width: 980px){
  .nr-footer__top{
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.nr-footer__brandline{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom: 12px;
}

.nr-footer__logo{
  width:36px;
  height:36px;
  object-fit:contain;
}

.nr-footer__name{
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color:#0b1b22;
}

.nr-footer__desc{
  margin:0;
  max-width: 460px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: rgb(11, 27, 34);
}

.nr-footer__cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

@media (max-width: 980px){
  .nr-footer__cols{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px){
  .nr-footer__cols{
    grid-template-columns: 1fr;
  }
}

.nr-footer__title{
  margin:0 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: #003230; /* matcher ditt grønn/petrol uttrykk */
}

.nr-footer__brandline img {
  width: 50%;
  
}


.nr-footer__list,
.nr-footer__social{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.nr-footer__list a,
.nr-footer__social a{
  text-decoration:none;
  color: rgba(11, 27, 34, 0.987);
  font-size: 16px;
  font-weight: 600;
  transition: color .15s ease, transform .15s ease;
}

.nr-footer__list a:hover,
.nr-footer__social a:hover{
  color:#003230;
  transform: translateX(2px);
}

.nr-footer__social a{
  display:flex;
  align-items:center;
  gap:12px;
}

.nr-icon{
  width:34px;
  height:34px;
  border-radius: 10px;
  background:#003230;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size: 14px;
  flex: 0 0 34px;
}

.nr-footer__divider{
  margin: 70px 0 22px;
  height:1px;
  background: rgba(0,0,0,0.10);
}

.nr-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  flex-wrap:wrap;
}

.nr-footer__copy{
  margin:0;
  color: rgba(11, 27, 34, 0.70);
  font-size: 15px;
}

.nr-footer__policies{
  display:flex;
  gap: 26px;
  flex-wrap:wrap;
}

.nr-footer__policies a{
  color:#003230;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 15px;
}
.nr-footer__policies a:hover{
  opacity:0.85;
}

.utv a {
  color: #f9ca88;
  font-weight: 500;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .u-foot {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
/**********************************/
/*      MEDIA QUARY       */
/**********************************/
@media (max-width: 768px) {
  .languages img {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    display: block;
  }

  .navbar img {
    height: 60px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header {
    backdrop-filter: blur(10px);
  }

  .u-head {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    background: #edf6e6;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: 0.3s;
  }

  .darkerr {
    width: 34%;
    background-color: #002827;
  }

  .nav-item {
    margin: 15px 0;
    align-items: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
  }

  .nav-menu.active {
    left: 0;
  }
}
