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

body {
  line-height: 1.5;
  color: #111;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  text-rendering: optimizeLegibility;
  letter-spacing: 1px;
  background: #ffffff;
}

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

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
}

/****************************/
/* NAVIGATION */
/* HEADER */

/****************************/
/* UTILITY CLASSESSSSSSSSSSS */
/***************************/
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 5px;
}

.main-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #5beba1f3;
  z-index: 1000;
}
.navbar {
  min-height: 65px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
}
.logo {
  flex-shrink: 0;
}
.logo a {
  display: flex;
  align-items: center;
}
.logo img {
  display: block;
  width: auto;
  height: 50px;
  max-width: 180px;
  object-fit: cover;
} /* NAVIGASJON */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: #09371e;
}
.current {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.dropdown-arrow {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s ease;
} /* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 230px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  padding-left: 18px;
  color: #09371e;
  background-color: #e9fff3;
} /* Vis dropdown på desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu,
  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .dropdown:hover .dropdown-arrow,
  .dropdown:focus-within .dropdown-arrow,
  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
} /* CTA */
.add-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 999px;
  background-color: #010b06;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.add-dark:hover {
  background-color: #09371e;
  transform: translateY(-2px);
} /* HAMBURGER */
.hamburger {
  display: none;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.bar {
  display: block;
  width: 31px;
  height: 2px;
  margin: 6px auto;
  background-color: #000000;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
} /* TABLET OG MOBIL */
@media (max-width: 768px) {
  
  .navbar {
    min-height: 70px;
  }
  .logo img {
    height: 38px;
    max-width: 120px;
  }
  .hamburger {
    display: block;
    position: relative;
    z-index: 1002;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 70px);
    padding: 30px 20px 50px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background-color: #7eefb4;
    transition: left 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  }
  .nav-link {
    width: 100%;
    min-height: 62px;
    justify-content: space-between;
    padding: 0;
    font-size: 17px;
    text-align: left;
  }
  .dropdown-toggle {
    width: 100%;
  }
  .dropdown-arrow {
    font-size: 22px;
  } /* Mobil dropdown */
  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 0.3s ease,
      padding-bottom 0.3s ease;
  }
  .dropdown.open .dropdown-menu {
    max-height: 400px;
    padding-bottom: 18px;
  }
  .dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .dropdown-menu a {
    padding: 11px 0;
    color: #102218;
    font-size: 15px;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    padding-left: 8px;
    background: transparent;
  }
  .nav-cta {
    padding-top: 28px;
    border-bottom: 0;
  }
  .add-dark {
    width: 100%;
    min-height: 54px;
    color: #ffffff;
  }
} /* LITEN MOBIL */
@media (max-width: 420px) {
  .main-header .container {
    width: calc(100% - 24px);
  }
  .logo img {
    height: 34px;
    max-width: 105px;
  }
  .nav-menu {
    padding-inline: 16px;
  }
  .nav-link {
    font-size: 16px;
  }
}

/* =========================
   AGENCY HERO
========================= */

/* =========================
   AGENCY HERO
========================= */
.agency-hero {
  background-color: #5beba0;
}

.agency-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

/* =========================
   LEFT
========================= */
.agency-hero-left {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.agency-hero-title {
  margin: 0;
  font-size: clamp(54px, 8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 60px;
  font-weight: 400;
  color: #000000;
  max-width: 900px;
}

.agency-hero-text {
  margin: 34px 0 50px;
  font-size: 18px;
  line-height: 1.4;

  font-weight: 400;
  color: #000000;
  max-width: 550px;
}

.agency-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.agency-btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.agency-btn:hover {
  transform: translateY(-2px);
}

.agency-btn-primary {
  background: #000000;
  color: #ffffff;
  font-weight: 600;
}

.agency-btn-secondary {
  background: #ffffff;
  color: #101010;
}

/* =========================
   RIGHT DESKTOP
========================= */
.agency-hero-right-desktop {
  position: relative;
  height: 80vh;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  overflow: hidden;
}

.agency-column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.agency-column-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.agency-column-left .agency-column-track {
  animation: agencyScrollUp 55s linear infinite;
}

.agency-column-right .agency-column-track {
  animation: agencyScrollDown 55s linear infinite;
}

.agency-hero-right-desktop::before,
.agency-hero-right-desktop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 170px;
  z-index: 2;
  pointer-events: none;
}

.agency-hero-right-desktop::before {
  top: 0;
  background: linear-gradient(180deg, #5beba0 0%, rgba(0, 0, 0, 0) 40%);
}

.agency-hero-right-desktop::after {
  bottom: 0;
  background: linear-gradient(0deg, #5beba0 0%, rgba(0, 0, 0, 0) 40%);
}

/* =========================
   CARDS
========================= */
.agency-card {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 2px;
  flex-shrink: 0;
}

.agency-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.agency-card:hover img {
  transform: scale(1.04);
}

.agency-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(28, 45, 35, 0.14) 100%
  );
  pointer-events: none;
}

.agency-card-tall {
  height: 220px;
}

.agency-card-small {
  height: 180px;
}

/* =========================
   MOBILE STRIP
========================= */
.agency-hero-right-mobile {
  display: none;
  position: relative;
  overflow: hidden;
}

.agency-mobile-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: agencyScrollMobile 38s linear infinite;
}

.agency-card-mobile {
  width: 180px;
  height: 140px;
  flex: 0 0 auto;
}

.agency-hero-right-mobile::before,
.agency-hero-right-mobile::after {
  content: "";
  position: absolute;
  top: 0;
  width: 36px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.agency-hero-right-mobile::before {
  left: 0;
  background: linear-gradient(90deg, #7eefb4 0%, rgba(0, 0, 0, 0) 100%);
}

.agency-hero-right-mobile::after {
  right: 0;
  background: linear-gradient(270deg, #7eefb4 0%, rgba(0, 0, 0, 0) 100%);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes agencyScrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes agencyScrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes agencyScrollMobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1200px) {
  .agency-hero {
    padding-top: 100px;
  }

  .agency-hero-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .agency-hero-left {
    max-width: 100%;
  }

  .agency-hero-right-desktop {
    height: 580px;
    min-height: 580px;
  }

  .agency-card-tall {
    height: 210px;
  }

  .agency-card-small {
    height: 170px;
  }
}

/* =========================
   MOBILE / TABLET SWITCH
========================= */
@media (max-width: 992px) {
  .agency-hero {
    padding: 96px 0 32px;
  }

  .agency-hero-title {
    font-size: clamp(2.3rem, 6vw, 3.4rem);
    line-height: 1.08;
  }

  .agency-hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 24px 0 24px;
    max-width: 100%;
  }

  .agency-btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.9rem;
  }

  .agency-hero-right-desktop {
    display: none;
  }

  .agency-hero-right-mobile {
    display: block;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .agency-hero {
    padding: 108px 0 28px;
  }

  .agency-hero-wrap {
    gap: 26px;
  }

  .agency-hero-title {
    font-size: clamp(2.7rem, 8vw, 3rem);
    line-height: 1.08;
    margin-top: 60px;
  }

  .agency-hero-text {
    font-size: 0.95rem;
    margin: 25px 0;
    font-weight: 400;
  }

  .agency-hero-actions {
    gap: 20px;
  }

  .agency-btn {
    min-height: 48px;
    width: 150px;
    padding: 0 18px;
    font-size: 0.8rem;
  }

  .agency-card-mobile {
    width: 200px;
    height: 160px;
  }

  .agency-mobile-track {
    gap: 12px;
    animation-duration: 50s;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .agency-hero {
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .agency-hero-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
    line-height: 1.06;
  }

  .agency-hero-text {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .agency-btn {
    width: 40%;
  }

  .agency-card-mobile {
    width: 140px;
    height: 160px;
  }
}

/* ONLOAD BASE STATE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE EFFECT */
.reveal-img {
  opacity: 0;
  transform: scale(1.08);
  transition: all 1.2s ease;
}

.reveal-img.active {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   STATEMENT SECTION
========================= */

@media (max-width: 768px) {
  .agency-statement {
    padding: 90px 20px;
  }

  .statement-container p {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .statement-container p {
    font-size: 17px;
    line-height: 1.5;
  }
}

.agency-statement {
  background: #fff;
  padding: 130px 20px;
  display: flex;
  justify-content: center;
}

.statement-container {
  max-width: 800px;
  text-align: center;
}

.statement-container p {
  font-size: 32px;

  line-height: 1.3;
  color: #000000;
  font-weight: 350;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.statement-container span {
  color: #0c4e2c;
  font-weight: 300;
}

.btn-oo {
  color: #ffffff;
  background-color: #002d16;
  padding: 10px 20px;
  border-radius: 999px;
}

.btn-oo:hover {
  background-color: #004e25;
  color: #ffffff;
}

.bg-lg {
  background-color: #ffbe8678;
}

/* Tablet */
@media (max-width: 992px) {
  .agency-statement {
    padding: 100px 24px;
  }

  .statement-container {
    max-width: 680px;
  }

  .statement-container p {
    margin-bottom: 32px;
  }
}

/* Mobil */
@media (max-width: 640px) {
  .agency-statement {
    padding: 70px 16px;
  }

  .statement-container {
    max-width: 100%;
  }

  .statement-container p {
    font-size: clamp(1.05rem, 5vw, 1rem);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
  }

  .btn-oo {
    width: 100%;
    max-width: 220px;
    padding: 8px 20px;
    font-size: 0.98rem;
  }
}

/* Veldig små mobiler */
@media (max-width: 380px) {
  .agency-statement {
    padding: 56px 14px;
  }

  .statement-container p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .btn-oo {
    max-width: 100%;
    font-size: 0.95rem;
  }
}

/*************************************************************************************/

.work-section {
  padding: 100px 0;
  font-family: sans-serif;
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 20px;
  align-items: start;
}

.work-grid h2 {
  font-size: 52px;
  font-weight: 400;
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 0;
  color: #111;
}

.work-content p {
  font-size: 24px;
  color: #000;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 40px;
}

.work-link {
  font-size: 22px;
  color: #111;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 2px solid #111;
  padding-bottom: 3px;
  transition: all 0.2s ease;
}

.work-link:hover {
  color: #db993c;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .work-grid h2 {
    font-size: 40px;
  }

  .work-content p {
    font-size: 18px;
  }
}

/****************************/
/* OUR SERVICES  */
/***************************/
.our-services {
  padding: 80px 15px;
  padding-bottom: 90px;
  background: #fff;
}

.cont-service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 60px;
  align-items: center;
}

.cont-service img {
  height: 75vh;
  object-fit: cover;
}

.grd-serv {
  padding-top: 10px;
}

.cont-service h1 {
  color: #000;
  text-decoration: underline;
  font-size: 17px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 300;
}

.cont-service h2 {
  font-size: 34px;
  font-weight: 600;
  max-width: 600px;
  text-transform: uppercase;
  line-height: 1.3;
  color: #000000;
}

.cont-service p {
  font-size: 20px;
  color: #000;
  max-width: 90%;
  padding-top: 40px;
}

.btn-cta {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  border-radius: 10px;
  margin-top: 43px;
  background-color: #000;
  padding: 15px 34px;
}

.btn-cta:hover {
  background-color: #111111d9;
  color: #fff;
}

.btn-service i {
  margin-left: 15px;
  font-size: 20px;
}

.pt {
  padding-top: 50px;
}

.bg-pur {
  background-color: #cad9fd;
}
.about-section {
  padding: 80px 0 24px;
  background-color: #ffffff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
  background-color: #0a0a0b;
  border-radius: 6px;
  overflow: hidden;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 40px);
  box-sizing: border-box;
}

.about-text h2 {
  max-width: 540px;
  margin: 0 0 28px;

  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-text p {
  max-width: 580px;
  margin: 0;

  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.65;
}

.about-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-wrapper:hover .about-image img {
  transform: scale(1.025);
}

.btn-projects {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 10px;

  min-height: 46px;
  margin-top: 30px;
  padding: 12px 22px;

  color: #ffffff;
  background-color: #360000;
  border-radius: 8px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-projects i {
  margin-left: 0;
}

.btn-projects:hover {
  background-color: #720d0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-projects:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/* Nettbrett */
@media (max-width: 1024px) {
  .about-section {
    padding-top: 64px;
  }

  .about-wrapper {
    min-height: 500px;
  }

  .about-text {
    padding: 48px 36px;
  }

  .about-image {
    min-height: 500px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .about-section {
    padding: 48px 0 16px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 12px;
  }

  .about-image {
    order: 1;
    min-height: auto;
    aspect-ratio: 16 / 11;
  }

  .about-text {
    order: 2;
    padding: 36px 24px 40px;
  }

  .about-text h2 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(26px, 8vw, 38px);
  }

  .about-text p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .btn-projects {
    width: 100%;
    margin-top: 26px;
  }
}

/* Små mobiler */
@media (max-width: 480px) {
  .about-section {
    padding-top: 36px;
  }

  .about-text {
    padding: 30px 20px 34px;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }

  .about-text h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Redusert bevegelse */
@media (prefers-reduced-motion: reduce) {
  .about-image img,
  .btn-projects {
    transition: none;
  }

  .about-wrapper:hover .about-image img,
  .btn-projects:hover {
    transform: none;
  }
}

.pd-top {
  padding-top: 15px;
  padding-bottom: 40px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
}

.marquee-track h2 {
  display: inline-block;
  margin: 0 1.5rem;
  font-weight: 300;
  color: #f1ffe3;
  font-size: 1.1rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .marquee-track h2 {
    font-size: 15px;
  }
}

/*DARKEST*/
.dark {
  background-color: #000;
  color: #fff;
}

.fff h2 {
  color: #000000;
  font-weight: 400;
}

.fff i {
  color: #000;
  margin-right: 10px;
}

/****************************/
/* PROJECTS */
/***************************/

.projects {
  padding: 100px 0;
  background: #fefffe;
}

.project-filters {
  display: flex;
  padding-top: 30px;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 5px 24px;
  border: none;
  border-radius: 3px;
  background: #e0e2e5;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1;
  color: #000000ec;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.filter-btn:hover {
  opacity: 0.8;
}

.filter-btn.active {
  background-color: #0a0a0b;
  color: #fff;
  font-weight: 400;
}

.txt-projects {
  margin-bottom: 40px;
}

.txt-projects h3 {
  font-size: 54px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  row-gap: 60px;
}

.project-card {
  overflow: hidden;
}

.project-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card img,
.project-card video {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  aspect-ratio: 3/2;
  border-radius: 5px;
  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h5 {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin: 16px 0 6px;
}

.project-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .projects {
    padding: 120px 0px;
  }

  .txt-projects h3 {
    font-size: 28px;
    padding-top: 50px;
  }

  .filter-btn {
    width: auto;
    height: auto;
    font-weight: 400;
    padding: 5px 16px;
    font-size: 12px;
  }

  .filter-btn img {
    display: none;
  }

  .filter-btn::before {
    content: attr(data-label);
    font-size: 14px;
    color: #000;
  }

  .filter-btn.active::before {
    color: #fff;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card h5 {
    font-size: 14px;
  }
}

/* CASER PROSJEKTER DETALJER*/
.casestad {
  padding: 130px 0 50px;
  background: #fff;
}

.casestad h1 {
  font-size: clamp(2rem, 5vw, 45px);
  line-height: 1.15;
  max-width: 50%;
  margin-bottom: 50px;
}

.im-b-case img {
  width: 100%;
  display: block;
  border-radius: 6px; /* valgfritt */
}




.case-section {
  padding: 20px 0;
  background: #ffffff;
}

.case-card {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  background:  #fff1b3;
  border-radius: 4px;
  overflow: hidden;
}

/* VENSTRE SIDE */

.case-content {
  padding: 40px;
}

.case-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #453232;
  font-weight: 600;
}

.case-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #111;
}

.case-intro {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
  color: #282323;
  margin-bottom: 25px;
}

.case-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.case-services span {
  background: #ffe678;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 14px;
  color: #000000;
}



.case-description h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.case-description p {
  font-size: 17px;
  line-height: 1.3;
  margin: 20px 0;
  color: #352626;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 15px;
}

.case-link:hover {
  opacity: 0.7;
}

/* HØYRE */

.case-client {
  display: flex;
  flex-direction: column;
  background: #fff1b3;
  align-items: center;
  text-align: center;
}

.case-client__image {
  height: 260px;
}

.case-client__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-client__info {
  padding: 24px;
}

.case-client__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(46, 34, 34, 0.6);
  margin-bottom: 8px;
}

.case-client__info h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 5px;
}

.case-client__role {
  color: #0b0e0c;
  font-size: 14px;
  margin-bottom: 18px;
}

.case-client__text {
  color: rgb(29, 18, 18);
  line-height: 1.3;
  font-size: 14px;
}

/* TABLET */

@media (max-width: 992px) {
  .case-card {
    grid-template-columns: 1fr;
  }

  .case-client {
    order: -1;
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    text-align: left;
  }

  .case-client__image {
    width: 140px;
    height: 140px;
  }

  .case-client__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .case-client__info {
    padding: 20px;
  }

  .case-content {
    padding: 28px;
  }

  .case-title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .case-description p {
    margin: 14px 0;
  }
}


/* MOBIL */

@media (max-width: 768px) {
  .case-section {
    padding: 28px 0;
  }

  .case-card {
    border-radius: 8px;
  }

  .case-client {
    grid-template-columns: 105px 1fr;
  }

  .case-client__image {
    width: 105px;
    height: 105px;
  }

  .case-client__info {
    padding: 14px 16px;
  }

  .case-client__label {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .case-client__info h3 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .case-client__role {
    font-size: 12px;
    margin-bottom: 0;
  }

  .case-content {
    padding: 20px;
  }

  .case-label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .case-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .case-services {
    gap: 6px;
    margin-bottom: 18px;
  }

  .case-services span {
    font-size: 11px;
    padding: 5px 9px;
  }

  .case-description h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .case-description p {
    font-size: 13px;
    line-height: 1.45;
    margin: 10px 0;
  }

  .case-link {
    margin-top: 12px;
    font-size: 13px;
  }
}


/* SMÅ MOBILER */

@media (max-width: 480px) {
  .case-section {
    padding: 20px 0;
  }

  .case-client {
    grid-template-columns: 88px 1fr;
  }

  .case-client__image {
    width: 88px;
    height: 88px;
  }

  .case-client__info {
    padding: 12px;
  }

  .case-client__info h3 {
    font-size: 16px;
  }

  .case-client__role {
    font-size: 11px;
  }

  .case-content {
    padding: 16px;
  }

  .case-title {
    font-size: 23px;
  }

  .case-services {
    margin-bottom: 14px;
  }

  .case-services span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .case-description p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .case-link {
    font-size: 12px;
  }
}

.project-showcase {
    width: 100%;
    padding: clamp(24px, 4vw, 64px) 0;
    background-color: #ffffff;
  }

  .project-showcase__container {
    width: min(100% - 32px, 1600px);
    margin-inline: auto;
  }

  .project-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 24px);
    align-items: stretch;
  }

  .project-showcase__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
  }

  .project-showcase__item img {
    display: block;
    width: 100%;
    border-radius: 6px;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .project-showcase__item--phone,
  .project-showcase__item--billboard {
    aspect-ratio: 1 / 1;
  }

  .project-showcase__item:hover img {
    transform: scale(1.025);
  }

  @media (max-width: 900px) {
    .project-showcase {
      padding: 32px 0;
    }

    .project-showcase__container {
      width: min(100% - 24px, 1600px);
    }

    .project-showcase__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .project-showcase__item--phone,
    .project-showcase__item--billboard {
      aspect-ratio: 4 / 3;
    }
  }

  @media (max-width: 600px) {
    .project-showcase {
      padding: 20px 0;
    }

    .project-showcase__container {
      width: calc(100% - 20px);
    }

    .project-showcase__grid {
      gap: 10px;
    }

    .project-showcase__item--phone,
    .project-showcase__item--billboard {
      aspect-ratio: 1 / 1;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .project-showcase__item img {
      transition: none;
    }

    .project-showcase__item:hover img {
      transform: none;
    }
  }


  .testimonial-s{
    background-color: #fff;
    text-align: center;
    align-items: center;
}


.testimonial-container {
  padding: 50px 90px;
}

.testimonial-text{
    font-size:clamp(1.5rem,4vw,1.6rem);
    line-height:1.2;
    font-weight:400;
    padding: 40px;
    color:#261702;
    margin:0;
}

.testimonial-author{
    margin-top:70px;
    font-family:"Inter", sans-serif;
    font-size:1rem;
    color:#543204;
    opacity:.9;
    line-height:1.8;
}

.testimonial-author strong{
    font-weight:600;
}


  .sm-pro {
    margin-top: 20px;
  }
.vusiell-frem {
  padding: 90px 0;
}

.raw-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.img-view img {
  width: 100%;
}

.info-case {
  padding: 30px 0;
  background-color: #00974444;
  display: grid;
  margin: 50px;
}

.mid-info-case {
  text-align: center;
  align-items: center;
}

.mid-info-case h4 {
  width: 100%;
  padding: 0 60px;
}

/*****************************************/
.sustainability-section {
  padding: 120px 0;
  background: #fffaed;
}

.sustainability-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}

.sustainability-text {
  background-color: #66f1a4; /* tilsvarende grønn */
  color: black;
  flex: 1 1 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
}

.sustainability-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sustainability-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.sustainability-sub {
  margin-top: auto;
  margin-top: 3rem;
}

.sustainability-image {
  flex: 1 1 50%;
  min-height: 300px;
}

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

/****************************/
/* TESTMONIALS */
/***************************/
.testmonials {
  padding: 60px 0;
  background-color: #000000;
  width: 100%;
  position: relative;
}

.testi-heads h2 {
  font-size: 35px;
  color: #ffffffe9;
  font-weight: 400;
  padding: 20px 0;
}

.scroll-buttons {
  position: absolute;
  top: 80px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 20px;
}

.scroll-buttons button {
  background-color: #5beba0;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 10%;
  cursor: pointer;
  transition: background 0.2s;
}

.scroll-buttons button:hover {
  background-color: #4ed790;
}

.testmonials-comments {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 30px;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* for iOS */
}

.testmonials-comments::-webkit-scrollbar {
  display: none;
}

.testmonials-content {
  flex: 0 0 48%;
  flex-direction: column;
  justify-content: center;
  max-width: 48%;
  padding: 30px;
  padding-top: 80px;
  align-items: center;
  border-radius: 5px;
  height: 55dvh;
  background-color: #ffffff;
  border: solid 0.6px #c6c6c64b;
}

.testmonials-content p {
  color: #222;
  font-size: 18px;
  letter-spacing: 1.2px;
  max-width: 80%;
  font-weight: 300;
  line-height: 1.3;
}

.info-test {
  margin-top: 40px;
}

.info-test img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.info-test h4 {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0;
}

.info-test h6 {
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

@media (max-width: 768px) {
  .testmonials {
    padding: 40px 0;
  }

  .testi-heads h2 {
    font-size: 20px;
    text-align: center;
    text-transform: lowercase;
    padding: 10px 20px;
  }

  .scroll-buttons {
    position: static;
    justify-content: center;
    margin: 20px 0;
  }

  .scroll-buttons button {
    font-size: 28px;
    padding: 8px;
  }

  .testmonials-comments {
    flex-direction: row;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    overflow-x: auto;
    padding: 10px;
    gap: 16px;
  }

  .testmonials-content {
    flex: 0 0 85%;
    max-width: 85%;
    height: auto;
    padding: 20px;
    scroll-snap-align: center;
    border-radius: 10px;
  }

  .testmonials-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .info-test {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-test img {
    width: 40px;
    height: 40px;
  }

  .info-test h4 {
    font-size: 16px;
    margin: 0;
  }

  .info-test h6 {
    font-size: 13px;
  }
}
/****************************/
/* BUILD YOUR PROJECT */
/***************************/
.build-project {
  background-color: #000;
  padding: 30px 50px;
}

.biuld-content {
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.biuld-content h1 {
  font-size: 70px;
  font-weight: 600;
  width: 900px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1.5px;
  padding-bottom: 10px;
}

.biuld-content p {
  color: #ffffffe6;
  padding: 30px 0;
  font-size: 20px;
  width: 500px;
  font-weight: 300;
}

.btn-letsgo {
  padding: 12px 40px;
  background-color: #e5fb52;
  border-radius: 5px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

/****************************/
/* FAQ */
/***************************/
.bg-yel {
  background-color: #ffd8a1;
}

.faqs {
  padding-top: 150px;
  padding-bottom: 120px;
  background: #ffffff;
}

.yfaq {
  padding-bottom: 40px;
}

.yfaq h2 {
  font-size: 50px;
}

.question {
  border-bottom: 1px solid #000;
}

.question button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px;
  border: none;
  outline: none;
  font-size: 25px;
  color: #000;
  background-color: #ffffff;
  font-weight: 500;
  cursor: pointer;
}

.d-arrow {
  transition: transform 0.3s ease-in;
  color: #000;
}

/*add this class when click*/
.question p {
  font-size: 20px;
  max-width: 60%;
  max-height: 0;
  opacity: 0;
  line-height: 1.2;
  overflow: hidden;
  padding: 0 15px; /* så det ikke hopper ved toggle */
  transition:
    max-height 0.6s ease,
    opacity 0.6s ease,
    padding 0.6s ease;
}

.question p.show {
  max-height: 500px; /* høy nok til å vise innhold */
  opacity: 1;
  padding: 15px 15px 30px 15px;
}

.question button .d-arrow.rotate {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  /* ABOUT SECTION */
  .about-wrapper {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-text p {
    font-size: 16px;
    margin-top: 40px;
    max-width: 100%;
  }

  .about-image img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .btn-rm {
    padding: 10px 24px;
    font-size: 16px;
  }

  /* FAQ SECTION */

  .faqs {
    padding: 30px 0;
  }

  .yfaq h2 {
    font-size: 32px;
    padding-top: 40px;
  }
  .question button {
    font-size: 16px;
    padding: 25px 0;
  }

  .question p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .question p.show {
    padding: 15px 10px 25px 10px;
  }
}

/****************************************************   OM OSS *************************/

.padding-top {
  padding-top: 140px;
  padding-bottom: 50px;
}

.about-geni {
  background: #fffaed;
  padding: 140px 20px;
  font-family: sans-serif;
}

.about-geni-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff2cd;

  flex-wrap: wrap;
}

.geni-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.geni-text a.geni-link {
  text-transform: uppercase;
  text-decoration: underline;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 15px;
}

.geni-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
}

.geni-text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: #111;
  max-width: 600px;
  margin-bottom: 40px;
}

.geni-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.geni-btn:hover {
  background-color: #111;
}

.geni-image {
  flex: 1;
  min-width: 300px;
}

.geni-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

/* Media query for mobile */
@media (max-width: 768px) {
  .about-geni-wrapper {
    flex-direction: column;
  }

  .geni-text h2 {
    font-size: 28px;
  }

  .geni-text p {
    font-size: 16px;
  }

  .geni-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.unikt-digital {
  padding: 100px 20px;
  background: #fffaed;
}

.unikt-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

.unikt-left {
  flex: 0 0 600px;
  font-weight: 800;
  position: sticky;

  top: 100px;
  line-height: 1.3;
  color: #111;
}

.unikt-left h2 {
  font-size: 50px;
  font-weight: 500;
  color: #000;
}

.unikt-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.unikt-item h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

.unikt-item p {
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 500px;
}

@media (max-width: 768px) {
  .unikt-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .unikt-left {
    position: static;
    flex: 1;
    font-size: 28px;
    text-align: left;
  }

  .unikt-left h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .unikt-right {
    gap: 60px;
  }

  .unikt-item h3 {
    font-size: 22px;
    font-weight: 700;
  }

  .unikt-item p {
    font-size: 14px;
    max-width: 100%;
  }
}

.våre-kunder {
  padding: 90px 0;
  background: #ffffff;
}

.kunder-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  justify-content: space-between;
  padding: 40px 0;
}

.img-kunder img {
  transform: scale(1);
}

@media (max-width: 768px) {
  .kunder-cont {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .kun-t h1 {
    font-size: 30px;
  }
}

/****************************************************   OUR SERVICES *************************/

.line-sip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fw {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #6cffb3;
  border: 1px solid transparent;
  border-radius: 8px;

  min-height: 42px;
  padding: 10px 18px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fw a {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.fw:hover {
  background-color: #58e99e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.fw:focus-within {
  outline: 3px solid rgba(108, 255, 179, 0.35);
  outline-offset: 3px;
}

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

/* Mobil */
@media (max-width: 600px) {
  .line-sip {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .fw {
    width: 100%;
    padding: 12px 16px;
  }

  .fw a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

.web-section {
  padding-top: 100px;
  background: #ffffff;
  padding-bottom: 40px;
}

.web-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.web-heading h2 {
  font-size: 54px;
  font-weight: 500;
  padding-top: 40px;
  padding-bottom: 50px;
  line-height: 1.2;
  color: #000000;
}

.web-text p {
  font-size: 18px;
  line-height: 1.4;
  padding-left: 90px;
  padding-top: 40px;
  max-width: 90%;
  color: #000;
  font-weight: 400;
}

@media (max-width: 768px) {
  .web-section {
    padding: 0;
    margin: 0;
  }

  .web-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .web-text p {
    padding: 0;
  }

  .web-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    padding-top: 10px;
    padding-bottom: 0px;
    text-align: left;
  }

  .web-text p {
    display: none;
  }

  .web-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.utstil {
  background: #ffffff;
  padding-bottom: 90px;
}

.ut-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  background-color: #8e0b0b;
  border-radius: 5px;
}

.ut-content img {
  border-radius: 0 10px 10px 0;
}

.ut-raw {
  padding: 70px;
}

.ut-raw h2 {
  color: #fff;
  font-size: 40px;
  padding-bottom: 40px;
}

.ut-raw p {
  color: #fffffff7;
  line-height: 1.3;
  max-width: 95%;
  font-weight: 400;
  font-size: 18px;
}

.cta-bes {
  display: inline-block;
  margin-top: 43px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ut-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ut-raw {
    padding: 22px;
    order: 2;
    padding-bottom: 40px;
  }

  .ut-raw h2 {
    font-size: 27px;
  }

  .ut-raw p {
    font-size: 16px;
  }

  .cta-bes {
    font-size: 18px;
  }
}

/* M A R K E D S F Ø R I N G*/
.markeds {
  background: #ffffff;
}

.markeds img {
  border-radius: 5px;
  margin-bottom: 20px;
  height: 100%;
  object-fit: cover;
  background: #fffaed;
}

.padding-top {
  padding-top: 150px;
}

.partners {
  padding: 10px 0;
  background-color: #f8f1e1;
  overflow: hidden;
}

.partners-wrap {
  max-width: 1400px;
  background-color: #f8f1e1;

  margin: 0 auto;
}

.partners-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

/* Slider wrapper */
.partners-slider {
  --gap: 72px;
  --logo-width: 140px;
  --logo-height: 52px;
  --fade-size: 80px;

  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fffaed;
}

/* Fade i kantene for penere look */
.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: var(--fade-size);
  height: 100%;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    #f8f1e1 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #f8f1e1 0%, rgba(255, 255, 255, 0) 100%);
}

/* Selve raden */
.partners-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  will-change: transform;
  animation: partners-marquee var(--duration, 28s) linear infinite;
}

/* Hvert logo-element */
.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--logo-width);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.partner-item:hover {
  transform: translateY(-2px);
}

/* Logo */
.partner-item img {
  display: block;
  width: auto;
  max-width: var(--logo-width);
  max-height: var(--logo-height);
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.95;
}

/* Sømløs loop */
@keyframes partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Pause på hover kun for desktop */
@media (hover: hover) and (pointer: fine) {
  .partners-slider:hover .partners-track {
    animation-play-state: paused;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .partners-slider {
    --gap: 52px;
    --logo-width: 120px;
    --logo-height: 46px;
    --fade-size: 56px;
  }

  .partners {
    padding: 32px 0 24px;
  }
}

/* Mobil */
@media (max-width: 640px) {
  .partners-slider {
    --gap: 34px;
    --logo-width: 92px;
    --logo-height: 38px;
    --fade-size: 28px;
  }

  .partners-title {
    font-size: 1.2rem;
  }

  .partners-track {
    padding: 14px 0;
  }

  .partner-item {
    min-width: var(--logo-width);
  }

  .partner-item img {
    max-width: 100%;
    max-height: var(--logo-height);
  }
}

/* Respekter reduced motion */
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    transform: none;
  }
}

.nettside {
  padding-bottom: 40px;
  background: #ffffff;
}

.nettside-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: #f9ebc8;
  gap: 60px;
  border-radius: 0 5px 5px 0;
}

.nettside-cont img {
  border-radius: 5px 0px 0px 5px;
}

.sider {
  padding: 20px;
}

.sider h2 {
  font-size: 37px;
  max-width: 70%;
  text-transform: uppercase;
  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 500;
  line-height: 1;
  margin-bottom: 70px;
  color: #311202;
}

.sider p {
  font-size: 18px;
  line-height: 1.3;
  max-width: 80%;
  color: #000;
  margin: 0;
}

.cta-nettside {
  display: inline-block;
  margin-top: 30px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nettside-cont {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sider {
    padding: 20px;
    padding-bottom: 40px;
  }

  .sider h2 {
    font-size: 25px;
  }

  .cta-nettside {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
  }

  .markeds img {
    width: 100%;
    margin-top: -50px;
    height: 50%;
    margin-bottom: 20px;
  }
}

.offer-section {
  padding: 7.5rem 10px;
  background-color: #ffffff;
}

.offer-title {
  font-size: 2.2rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 3rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.offer-item {
  text-align: left;
  padding: 1rem 0;
}

.offer-number {
  display: block;
  color: #434242;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

.offer-heading {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.offer-text {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #161313;
  margin-top: 40px;
}

.dprice h1 {
  font-size: 46px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.v-price h1 {
  margin-bottom: 40px;
}
/* =========================
   PRISING
========================= */

.pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background-color: #ffffff;
}

.v-price {
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #434242;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v-price h1 {
  margin: 0 0 1rem;
  color: #000000;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.v-price p {
  margin: 0;
  max-width: 620px;
  color: #3f3f3f;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

/* KORT */

.price-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.4rem, 2.2vw, 1.5rem);
  background: #efede7;
  border-radius: 6px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  background: #7eefb4;
}

.price-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card h2 {
  margin: 0 0 1.2rem;
  color: #111111;
  font-size: clamp(1.65rem, 2.3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.pricing-amount {
  font-size: 26px;
}

.desc {
  margin: 0 0 clamp(1.8rem, 3vw, 2.8rem);
  color: #222222;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.3;
  margin-top: 20px;
}

/* BADGE */

.price-badge {
  align-self: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.2rem 0.75rem;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FEATURES */

.features {
  margin-bottom: 1.5rem;
}

.features div {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: #111111;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.4;
}

.features div:first-child {
  padding-top: 0;
}

/* KNAPP */

.price-btn {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding: 0.9rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  background: #000000;
  color: #ffffff;
  border-radius: 3px;
  text-decoration: none;

  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  line-height: 1.25;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  background: #151515;
}

.price-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 4px;
}

.price-btn__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.price-btn strong {
  font-weight: 600;
}

.price-btn__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.price-btn:hover .price-btn__icon {
  transform: translate(3px, -3px);
}

/*VISUELL IDENTITET*/
/* =========================
   BRAND SERVICES
========================= */

.brand-services {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background-color: #f7f7f5;
}

/* HEADER */

.brand-services__header {
  max-width: 600px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.brand-services__header > span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #555555;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-services__header h2 {
  margin: 0 0 1.2rem;
  color: #111111;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.brand-services__header p {
  max-width: 450px;
  margin: 0;
  color: #272424;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.2;
}

/* GRID */

.brand-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

/* CARD */

.brand-card {
  min-width: 0;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 6px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

.brand-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.brand-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e6e6e6;
}

.brand-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.55s ease;
}

.brand-card:hover .brand-card__image img {
  transform: scale(1.045);
}

/* CONTENT */

.brand-card__content {
  flex: 1;
  padding: clamp(1.35rem, 2.2vw, 2rem);

  display: flex;
  flex-direction: column;
}

.brand-card__number {
  margin-bottom: 1.2rem;
  color: #777777;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-card h3 {
  margin: 0 0 1rem;
  color: #111111;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.brand-card p {
  margin: 0 0 2rem;
  color: #201f1f;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.2;
}

.brand-card__action {
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);

  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-card__action span {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.brand-card:hover .brand-card__action span {
  transform: translate(3px, -3px);
}

/* TABLET */

@media (max-width: 1050px) {
  .brand-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-card:last-child {
    grid-column: 1 / -1;
  }

  .brand-card:last-child .brand-card__link {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .brand-card:last-child .brand-card__image {
    height: 100%;
    aspect-ratio: auto;
  }
}

/* MOBIL */

@media (max-width: 700px) {
  .brand-services {
    padding: 4rem 0;
  }

  .brand-services .container {
    width: calc(100% - 28px);
  }

  .brand-services__grid {
    grid-template-columns: 1fr;
  }

  .brand-card:last-child {
    grid-column: auto;
  }

  .brand-card:last-child .brand-card__link {
    display: flex;
  }

  .brand-card:last-child .brand-card__image {
    aspect-ratio: 4 / 3;
  }

  .brand-card {
    border-radius: 14px;
  }

  .brand-card__content {
    padding: 1.3rem;
  }
}

/* LITEN MOBIL */

@media (max-width: 420px) {
  .brand-services__header h2 {
    font-size: 2rem;
  }

  .brand-card h3 {
    font-size: 1.45rem;
  }

  .brand-card p {
    font-size: 0.95rem;
  }
}

/* REDUSERT BEVEGELSE */

@media (prefers-reduced-motion: reduce) {
  .brand-card,
  .brand-card__image img,
  .brand-card__action span {
    transition: none;
  }
}

/* =========================
   RESPONSIV
========================= */

/* Mindre desktop og nettbrett */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Nettbrett */
@media (max-width: 760px) {
  .pricing {
    padding: 4rem 0;
  }

  .pricing .container {
    width: min(94%, 1380px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .price-card:last-child {
    grid-column: auto;
  }

  .price-card {
    padding: 1.5rem;
  }

  .desc {
    margin-bottom: 1.7rem;
  }

  .features div {
    padding: 0.75rem 0;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .pricing {
    padding: 3.25rem 0;
  }

  .pricing .container {
    width: calc(100% - 24px);
  }

  .v-price {
    margin-bottom: 2rem;
  }

  .price-card {
    padding: 1.2rem;
  }

  .price-card h2 {
    font-size: 1.7rem;
  }

  .desc {
    font-size: 0.95rem;
  }

  .features div {
    font-size: 0.9rem;
  }

  .price-btn {
    min-height: 52px;
    padding: 0.85rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* Reduser animasjon for brukere som ønsker det */
@media (prefers-reduced-motion: reduce) {
  .price-card,
  .price-btn,
  .price-btn__icon {
    transition: none;
  }
}



/****************************/
/* CONTACT */
/***************************/

.kontakt-seksjon {
  padding: 4rem 1rem;
  padding-top: 6rem;
  background-color: #ffffff;
}

.kontakt-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ede1c7;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 10px;
  align-items: center;
}

.kontakt-form {
  flex: 1;
  max-width: 700px;
  width: 100%;
  padding: 30px;
}

.kontakt-form h1 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 1rem;
}

.kontakt-form p {
  font-size: 1.2rem;
  margin-bottom: 1.7rem;
  color: #000;
}

.form-rad {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-rad input {
  flex: 1 1 200px;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  border: solid #3333337f 0.5px;
  background-color: #ffffff;
  font-size: 1rem;
  margin-top: 20px;
}

button[type="submit"] {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #001517;
  margin-top: 40px;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background: #333;
}

.kontakt-bilde img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 0 10px 10px 0;
}

.meg {
  margin-top: 20px;
  margin-bottom: 40px;
}

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

.info-meg h4 {
  font-size: 20px;
  font-weight: 900;
}
.info-meg h6 {
  font-size: 14px;
  padding-top: 2px;
  color: #544129;
}

.info-meg a {
  color: #000;
}
.raw-info {
  display: flex;
  margin-top: 15px;
  gap: 15px;
}

.raw-info h5 {
  font-size: 13px;
  font-weight: 500;
  color: #331c00;
  padding: 4px 14px;
  background-color: #ffffff;
}

.footer-contact a {
  color: #fff;
}

.sbs img {
  width: 100%;
  max-width: 100px;
  height: 100px;

  border-radius: 50%;
}

@media (max-width: 768px) {
  .kontakt-seksjon {
    padding-top: 90px;
  }

  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }

  .kontakt-form h1 {
    font-size: 35px;
  }

  button[type="submit"] {
    font-size: 18px;
  }

  .kontakt-bilde img {
    display: none;
  }
}

/* RESPONSIVT */
@media (max-width: 600px) {
  .sbs {
    gap: 12px;
    padding: 20px 0;
  }

  .sbs img {
    width: 70px;
    height: 70px;
  }

  .raw-info h5 {
    font-size: 0.75rem;
  }
}
/****************************/
/* FOOTER */
/***************************/
.custom-footer {
  background-color: #000d0e;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 40px;
  font-family: sans-serif;
}

.logo-2 img {
  width: 180px;
  padding-bottom: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.footer-col img {
  width: 100%;
  max-width: 180px;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-col a i {
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  border-top: 1px solid #333;
  padding-top: 30px;
}

.footer-left a {
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-address,
.footer-contact {
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-links,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    transform: none;
  }
}

.thank-you-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
}

.thank-you-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 600;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-home {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #333;
}

/****************************/
/* PERSONVERN */
/***************************/

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #121826;
  --muted: #5b6475;
  --line: #e7ebf3;
  --primary: #111111;
  --accent: #1f6fff;
  --accent-soft: #eef4ff;
  --radius: 22px;
  --shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
  --container: 1120px;
}

.privacy-page {
  padding: 36px 0 80px;
}

.privacy-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 44px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.privacy-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.privacy-hero p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.privacy-meta span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.privacy-sidebar h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.privacy-nav {
  display: grid;
  gap: 8px;
}

.privacy-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  background: transparent;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.privacy-nav a:hover {
  background: var(--accent-soft);
  text-decoration: none;
  transform: translateX(2px);
}

.privacy-main {
  display: grid;
  gap: 20px;
}

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.privacy-card h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
}

.privacy-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.privacy-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.privacy-card li + li {
  margin-top: 8px;
}

.privacy-highlight {
  background: #fafbff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
}

.contact-box {
  display: grid;
  gap: 10px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #fff;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: #fafbff;
  font-size: 0.95rem;
}

tr:last-child td {
  border-bottom: none;
}

.privacy-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fffaf0;
  border: 1px solid #f4e3b2;
  color: #6b5a22;
}

.privacy-footer-box {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
}

.privacy-footer-box p:last-child,
.privacy-card p:last-child {
  margin-bottom: 0;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: static;
    order: -1;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .privacy-page {
    padding: 20px 0 56px;
  }

  .privacy-hero,
  .privacy-card,
  .privacy-sidebar {
    border-radius: 20px;
    padding: 22px;
  }

  .privacy-meta span {
    width: 100%;
  }

  .privacy-nav a {
    padding: 11px 12px;
  }
}
