@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap");

/* -------------------------
   RESET / BASE
-------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  background: #fff;
  color: #232c3d;
}

html,
body {
  overflow-x: clip;
}

/* -------------------------
   NAVBAR
-------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 40px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 5px 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}
.navbar-left a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.navbar-logo {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  transform: scale(0.94);
}

/* LINKS */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 6px 11px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.1px;
  transition: color 0.22s ease;
}

.navbar-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #4ade80;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.navbar-link:hover {
  color: #fff;
}
.navbar-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.navbar-link.active::after {
  transform: scaleX(1);
}

.navbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 8px;
}

.navbar-cta {
  padding: 6px 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
  white-space: nowrap;
  margin-left: 4px;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar-cta.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.dropdown > .navbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.dropdown:hover .dropdown-chevron {
  transform: rotate(225deg) translateY(1px);
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 0px) !important;
  left: 0 !important;
  width: 260px !important;
  background: rgba(13, 20, 15, 0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
  margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu-label {
  padding: 8px 12px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  padding-left: 12px !important;
}

.dropdown-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.dropdown-item-name {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 2px;
}

.dropdown-item-desc {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.38) !important;
  line-height: 1.35;
}

.navbar.scrolled .navbar-link {
  color: rgba(255, 255, 255, 0.8);
}
.navbar.scrolled .navbar-link:hover {
  color: #fff;
}
.navbar.scrolled .navbar-link.active {
  color: #fff;
}
.navbar.scrolled .navbar-link::after {
  background: #4ade80;
}

/* -------------------------
   HAMBURGER
-------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  z-index: 11002;
  gap: 5px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 10998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    order: 3;
    z-index: 11001;
  }

  .navbar-left {
    order: 1;
  }

  .navbar-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 72%;
    max-width: 320px;
    background: rgba(13, 20, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
    z-index: 10999;
  }

  .navbar-right.active {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-right .navbar-link,
  .navbar-right .dropdown > .navbar-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(16px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      color 0.2s ease;
  }

  .navbar-right .navbar-link::after {
    display: none;
  }

  .navbar-right .navbar-link:hover {
    color: #fff;
    background: none;
  }

  .navbar-right.active .navbar-link,
  .navbar-right.active .dropdown > .navbar-link {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar-right.active .dropdown:nth-child(1) > .navbar-link {
    transition-delay: 0.08s;
  }
  .navbar-right.active a:nth-child(2) {
    transition-delay: 0.13s;
  }
  .navbar-right.active a:nth-child(3) {
    transition-delay: 0.18s;
  }
  .navbar-right.active a:nth-child(4) {
    transition-delay: 0.23s;
  }

  .navbar-divider {
    display: none;
  }

  .navbar-cta {
    margin: 28px 0 0 0 !important;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(16px);
    transition:
      opacity 0.35s ease 0.28s,
      transform 0.35s ease 0.28s,
      background 0.2s ease,
      border-color 0.2s ease !important;
  }

  .navbar-right.active .navbar-cta {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar {
    padding: 10px 20px !important;
  }
  .menu-overlay {
    z-index: 9999;
  }

  /* DROPDOWN ON MOBILE */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 12px !important;
    width: auto !important;
    backdrop-filter: none !important;
  }

  .dropdown-menu-label {
    display: none;
  }

  .dropdown-item {
    justify-content: flex-start;
    padding: 10px 0 !important;
    border-bottom: none !important;
  }

  .dropdown-item-dot {
    display: none;
  }
  .dropdown-item-desc {
    display: none;
  }

  .dropdown-item-name {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.55) !important;
  }

  .dropdown-item:hover {
    background: transparent !important;
  }
  .dropdown-item:hover .dropdown-item-name {
    color: #fff !important;
  }
}

/* -------------------------
   HERO SECTION
-------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 20px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
  padding-left: 0 20px;
  margin-left: 18%;
  padding-right: 20px;

  color: white;
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADLINE */
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* SUBTEXT */
.hero-content p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 550px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  font-weight: 600;
}

/* PRIMARY */
.hero-btn.primary {
  background: #22c55e;
  color: white;
}

.hero-btn.primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* SECONDARY */
.hero-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* -------------------------
   SCROLL INDICATOR
-------------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);

  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;

  z-index: 3;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);

  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;

  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .navbar-right {
    gap: 15px;
  }

  .hero {
    height: 100vh;
  }

  .hero-content {
    margin-left: 0;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .hero-content {
    margin-left: 0;
    padding: 0 20px;
    text-align: center;
  }

  .hero-actions {
    align-items: center;
  }
}

/* -------------------------
   ABOUT SECTION
-------------------------- */

section.about {
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("img/vetlink-img-1.jpg") center center / cover no-repeat;
}

section.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness here */
  z-index: 1;
}

/* make sure content stays above overlay */
section.about > * {
  position: relative;
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
  padding-left: auto;
  margin-left: 8%;
  padding-right: 20px;

  color: white;
}

/* HEADLINE */
.about-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* SUBTEXT */
.about-content p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 550px;
}

/* BUTTONS */
.about-actions {
  display: flex;
  gap: 15px;
}

.impact-title {
  font-size: clamp(2.5rem, 5vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  color: #3d3d3d;
}

/* -------------------------
   IMPACT SECTION
-------------------------- */

section.impact {
  background: #fff;
  padding: 100px 6% 0;
  color: #232c3d;
  min-height: 95vh;
}

.impact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.impact-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(35, 44, 61, 0.38);
  margin-bottom: 18px;
}

.impact-title {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #1b2a1e;
  margin: 0;
}

.impact-subtitle {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6b7280;
  font-weight: 400;
  max-width: 440px;
  margin: 0;
  align-self: end;
  padding-bottom: 6px;
}

.impact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding-bottom: 5vh;
}

.impact-img-wrap {
  position: relative;
  overflow: hidden;
}

.impact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  filter: brightness(0.8) saturate(0.82);
}

.impact-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 35, 24, 0.22);
}

.impact-cards {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.impact-card {
  background: #1b2a1e;
  padding: 44px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.impact-card-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 14px;
}

.impact-card-num {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.impact-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  font-weight: 400;
  max-width: 300px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .impact-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .impact-subtitle {
    max-width: 100%;
    padding-bottom: 0;
  }

  .impact-bottom {
    grid-template-columns: 1fr;
  }

  .impact-photo {
    min-height: 260px;
  }
}

@media (max-width: 540px) {
  section.impact {
    padding: 72px 24px 0;
  }

  .impact-card {
    padding: 32px 28px;
  }

  .impact-card-num {
    font-size: 2.8rem;
  }
}

/* -------------------------
   PRODUCT SECTION
-------------------------- */

section.product {
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url("img/vetlink-img-4.jpg"), url("img/vetlink-img-5.jpg");

  background-size:
    50% 100%,
    50% 100%;

  background-position:
    left center,
    right center;

  background-repeat: no-repeat;
  justify-content: center; /* centrer horisontalt */
}

@media (max-width: 768px) {
  section.product {
    background-size:
      100% 50%,
      100% 50%;
    background-position:
      top center,
      bottom center;
  }
}

/* OVERLAY */
section.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* CONTENT ABOVE */
section.product > * {
  position: relative;
  z-index: 2;
}
.product-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
  width: 100%;
  padding: 0 20px;

  text-align: center;
  color: #ffffff;
}

/* HEADLINE */
.product-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

/* SUBTEXT */
.product-content p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  opacity: 0.85;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto 35px; /* centrer tekstblok */
  max-width: 550px;
  color: #ffffff;
}

/* BUTTONS */
.product-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: #ffffff;
}

/* -------------------------
   AWARD-INTRO SECTION
-------------------------- */

section.award-intro {
  padding: 100px 20px;
  background: #fff;
}

.award-intro-header-wrap {
  max-width: 580px;
  margin: 0 auto 60px;
  text-align: center;
}

.award-intro-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22c55e;
  border: 1px solid #22c55e;
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.award-intro-header-wrap .impact-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 14px;
}

.award-intro-header-wrap .impact-subtitle {
  font-size: 1rem;
  line-height: 1.65;
}

/* GRID */
.awards-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto 48px;
}

/* CARD */
.award-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0f1e16;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.award-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.award-card:hover .award-card-bg {
  opacity: 0.65;
}

.award-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 18, 0.92) 0%,
    rgba(10, 30, 18, 0.35) 55%,
    transparent 100%
  );
}

.award-card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  z-index: 2;
  user-select: none;
}

.award-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
}

.award-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 10px;
}

.award-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 5px;
}

.award-card-year {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* BUTTON */
.award-btn-container {
  text-align: center;
}

.award-btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #22322b;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.award-btn:hover {
  background: #38a674;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .awards-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
  }

  .award-card {
    aspect-ratio: 4 / 3;
  }
}

/* -------------------------
   FOOTER
-------------------------- */

.site-footer {
  background: #1b2a1e;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 64px 48px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  max-width: 210px;
  margin: 0;
  font-weight: 400;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
}

.footer-sub-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-product-item a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-product-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
}

.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-linkedin:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-linkedin:hover .footer-contact-icon {
  background: rgba(0, 119, 181, 0.3);
  border-color: rgba(0, 119, 181, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .site-footer {
    padding: 48px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* BASE ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(6px);
}

/* ACTIVE */
.fade-in.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.fade-left {
  transform: translateX(-40px) scale(0.98);
}

.fade-right {
  transform: translateX(40px) scale(0.98);
}

.fade-up {
  transform: translateY(40px) scale(0.98);
}

/* når de vises */
.fade-in.show.fade-left,
.fade-in.show.fade-right,
.fade-in.show.fade-up {
  transform: translate(0, 0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .impact-header-container {
    width: 100%;
  }

  .impact-img {
    width: 100%;
    float: none;
    margin-top: 20px;
  }

  .stats-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.hero-fallback {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  .impact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    width: 100%;
    grid-template-columns: 1fr; /* single column on mobile */
    margin: 0 auto;
    margin-top: 2%;
  }
}
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .dropdown-menu a {
    color: white;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .impact-title {
    font-size: 2rem; /* sikrer den ikke går ud over siden */
  }

  .impact-header-container {
    padding: 0 15px; /* lidt mindre padding på mobil */
  }
}
@media (max-width: 768px) {
  .impact-header-container,
  .impact-img {
    flex: 1 1 100%;
  }
}
