/* ============================================
   AK ADS - Complete Stylesheet
   Premium dark theme with wow-effects
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0a2896;
  --blue-light: #1e3ec5;
  --blue-bright: #4d7aff;
  --blue-glow: rgba(30, 62, 197, 0.15);
  --accent: #5588ff;
  --white: #FFFFFF;
  --grey: #D1D3D4;
  /* Alternating dark/light backgrounds for contrast */
  --bg-deep: #030818;
  --bg-start: #06102e;
  --bg-mid: #0c1a4a;
  --bg-end: #112460;
  --bg-elevated: #142a5c;
  --bg-light: #f5f7fa;
  --bg-light-alt: #edf0f5;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(30, 62, 197, 0.4);
  --border-light: rgba(10, 40, 150, 0.15);
  --text: #dfe3ea;
  --text-muted: #a0a8b8;
  --text-bright: #f0f2f5;
  --text-dark: #1a2234;
  --text-dark-muted: #5a6475;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 200px;
  --section-gap: 7rem;
  /* Chelsea accent colors */
  --chelsea-gold: #F5C542;
  --chelsea-gold-light: #FFD86F;
  --chelsea-red: #C8102E;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-start);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- FOCUS STYLES --- */
:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--chelsea-gold) 0%, var(--chelsea-gold-light) 100%);
  color: var(--bg-deep);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: var(--blue-bright);
  color: var(--white);
  background: rgba(77, 122, 255, 0.05);
  transform: translateY(-2px);
}

/* Pulse effect on hero CTA */
.btn--pulse {
  position: relative;
}

.btn--pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(30, 62, 197, 0.5); }
  70%  { box-shadow: 0 0 0 20px rgba(30, 62, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 62, 197, 0); }
}

/* Small button variant */
.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
}

/* Submit button loader */
.btn__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn--loading .btn__text { display: none; }
.btn--loading .btn__loader { display: inline-block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn--ghost {
  color: var(--text-dark-muted);
  border-color: rgba(100, 110, 130, 0.4);
  background: rgba(255, 255, 255, 0.5);
}

.cookie-banner__actions .btn--ghost:hover {
  color: var(--text-dark);
  border-color: var(--chelsea-gold);
  background: rgba(212, 168, 67, 0.08);
}

@media (max-width: 639px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header--scrolled {
  background: rgba(6, 13, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo — glassy frosted pill with subtle shimmer */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 101;
}

.logo:hover {
  opacity: 0.85;
}

.logo__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  line-height: 1;
  transition: opacity 0.25s ease;
}

.logo__text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: logoShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoShimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

/* Glass pill nav with glow border */
.nav {
  position: relative;
  display: none;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border-radius: var(--pill);
  padding: 0.35rem 0.5rem;
  border: 1px solid transparent;
  z-index: 0;
}

.nav::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--pill);
  padding: 1px;
  background: linear-gradient(270deg, rgba(30, 62, 197, 0), rgba(109, 179, 255, 0.25), rgba(30, 62, 197, 0));
  background-size: 300% 100%;
  animation: navGlowBorder 8s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pill);
  box-shadow: 0 0 15px rgba(30, 62, 197, 0.06), 0 0 30px rgba(30, 62, 197, 0.03);
  animation: navGlowPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes navGlowBorder {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

@keyframes navGlowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.nav__link {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--pill);
  transition: all 0.25s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--chelsea-gold);
  background: rgba(255, 255, 255, 0.08);
}

/* CTA button in nav */
.nav__link--cta {
  background: var(--chelsea-gold);
  color: var(--bg-deep) !important;
  font-weight: 600;
  margin-left: 0.25rem;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.3);
}

.nav__link--cta:hover {
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  opacity: 0.88;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Avatar + "Aktiv nu" status in header */
.header__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header__avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

.header__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.header__online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--bg-start);
  animation: dotPulse 2s ease-in-out infinite;
}

.header__active-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%      { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(6, 13, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav__link {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav__link:hover { color: var(--white); }

@media (min-width: 768px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ===================================================
   HERO — Enhanced wow-effect
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-elevated) 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Soft animated gradient waves for depth and dynamism */
.hero__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
}

/* Layer 1: Large warm light sweep — top-left to bottom-right */
.hero__wave--1 {
  background: radial-gradient(ellipse 80% 60% at 20% 30%,
    rgba(25, 60, 200, 0.25) 0%,
    rgba(19, 56, 160, 0.1) 40%,
    transparent 70%
  );
  opacity: 1;
  animation: waveFlow1 20s ease-in-out infinite;
}

/* Layer 2: Cool accent sweep — bottom-right */
.hero__wave--2 {
  background: radial-gradient(ellipse 70% 50% at 80% 70%,
    rgba(50, 100, 240, 0.2) 0%,
    rgba(30, 70, 210, 0.08) 45%,
    transparent 70%
  );
  opacity: 1;
  animation: waveFlow2 25s ease-in-out infinite;
}

/* Layer 3: Subtle center highlight — creates depth */
.hero__wave--3 {
  background: radial-gradient(ellipse 60% 40% at 50% 50%,
    rgba(40, 85, 235, 0.12) 0%,
    rgba(20, 50, 180, 0.05) 50%,
    transparent 75%
  );
  opacity: 1;
  animation: waveFlow3 30s ease-in-out infinite;
}

@keyframes waveFlow1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  25% { transform: translate(40px, 20px) scale(1.1); opacity: 1; }
  50% { transform: translate(-20px, 40px) scale(1.05); opacity: 0.6; }
  75% { transform: translate(30px, -10px) scale(0.95); opacity: 0.9; }
}

@keyframes waveFlow2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  33% { transform: translate(-50px, -30px) scale(1.15); opacity: 1; }
  66% { transform: translate(30px, 20px) scale(0.9); opacity: 0.5; }
}

@keyframes waveFlow3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% { transform: translate(-25px, 30px) scale(1.2); opacity: 1; }
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--blue-bright);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* Falling SoMe icons */
.falling-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.falling-icon {
  position: absolute;
  opacity: 0;
  animation: iconFall linear infinite;
}

.falling-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.18;
  filter: none;
}

.falling-icon--1  { left: 5%;  animation-duration: 18s; animation-delay: 0s;   }
.falling-icon--2  { left: 15%; animation-duration: 22s; animation-delay: 3s;   }
.falling-icon--3  { left: 28%; animation-duration: 20s; animation-delay: 1s;   }
.falling-icon--4  { left: 40%; animation-duration: 25s; animation-delay: 5s;   }
.falling-icon--5  { left: 55%; animation-duration: 19s; animation-delay: 2s;   }
.falling-icon--6  { left: 68%; animation-duration: 23s; animation-delay: 4s;   }
.falling-icon--7  { left: 78%; animation-duration: 21s; animation-delay: 0.5s; }
.falling-icon--8  { left: 88%; animation-duration: 24s; animation-delay: 6s;   }
.falling-icon--9  { left: 35%; animation-duration: 26s; animation-delay: 8s;   }
.falling-icon--10 { left: 62%; animation-duration: 20s; animation-delay: 10s;  }

@keyframes iconFall {
  0%   { transform: translateY(-60px) rotate(0deg); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(calc(100vh + 60px)) rotate(25deg); opacity: 0; }
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(77, 122, 255, 0.2);
  border-radius: 9999px;
  background: rgba(77, 122, 255, 0.06);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Rotating word in hero */
.hero__rotate-wrapper {
  display: inline-block;
  position: relative;
  min-width: 200px;
}

.hero__rotate {
  display: inline-block;
  position: relative;
  color: var(--white);
  font-weight: 700;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__rotate.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.hero__rotate.fade-in-word {
  opacity: 1;
  transform: translateY(0);
}

/* Highlighter effect behind rotating word */
.hero__rotate::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 2px;
  height: 35%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0.35;
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------------------
   CSS DASHBOARD MOCKUP
   ------------------------------------------- */
.dashboard {
  margin-top: 3.5rem;
  perspective: 1200px;
}

.dashboard__browser {
  max-width: 780px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 36, 0.85);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotateX(4deg);
  transition: transform 0.6s ease;
}

.dashboard__browser:hover {
  transform: rotateX(0deg);
}

.dashboard__toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard__dots {
  display: flex;
  gap: 6px;
}

.dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard__dots span:nth-child(1) { background: #ff5f57; }
.dashboard__dots span:nth-child(2) { background: #febc2e; }
.dashboard__dots span:nth-child(3) { background: #28c840; }

.dashboard__url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.3rem 1rem;
  border-radius: 6px;
  font-family: 'Inter', monospace;
  letter-spacing: 0.01em;
}

.dashboard__browser img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 639px) {
  .dashboard__browser {
    transform: rotateX(2deg);
  }
}




/* ===================================================
   SOCIAL PROOF / RESULTATER
   =================================================== */
.proof {
  padding: var(--section-gap) 0;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.proof__browser {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.proof__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.proof__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.proof__dot--red { background: #ff5f57; }
.proof__dot--yellow { background: #febc2e; }
.proof__dot--green { background: #28c840; }

.proof__url {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.proof__browser img {
  width: 100%;
  height: auto;
  display: block;
}

/* Proof glow accent */
.proof::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 62, 197, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.proof > .container {
  position: relative;
  z-index: 1;
}


/* ===================================================
   ABOUT / OM MIG (2-column layout) — LIGHT section
   =================================================== */
.about {
  padding: var(--section-gap) 0 calc(var(--section-gap) + 1rem);
  background: var(--bg-light);
  position: relative;
}


.about > .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image-wrapper {
  display: flex;
  justify-content: center;
}

.about .section-title--left { color: var(--text-dark); }
.about .about__text { color: var(--text-dark-muted); }
.about .about__value strong { color: var(--text-dark); }
.about .about__value span { color: var(--text-dark-muted); }

.about__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  max-width: 340px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s, box-shadow 0.4s;
}

.about__card:hover {
  box-shadow: 0 20px 60px rgba(10, 40, 150, 0.12);
}

.about__photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
}

.about__card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.about__card-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}

.about__content {
  max-width: 560px;
}

.about__text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about__value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__value svg {
  flex-shrink: 0;
  color: var(--blue-bright);
  margin-top: 0.15rem;
}

.about__value strong {
  display: block;
  color: var(--text-bright);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about__value span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

/* ===================================================
   PLATFORMS / JEG ARBEJDER MED
   =================================================== */
.platforms {
  padding: 3.5rem 0;
  background: var(--bg-light-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.platforms__label {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
  margin-bottom: 1.75rem;
}

.platforms__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.platforms__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark-muted);
  transition: color 0.3s, transform 0.3s;
}

.platforms__item:hover {
  color: var(--blue-bright);
  transform: translateY(-3px);
}

.platforms__item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s;
}

.platforms__item:hover img {
  transform: scale(1.1);
}

.platforms__item span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===================================================
   UNIFIED CARD SYSTEM
   =================================================== */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

/* Top accent gradient line */
.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover .card__accent { opacity: 1; }

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(10, 40, 150, 0.12),
              0 0 0 1px rgba(30, 62, 197, 0.1);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

/* Glow effect on service cards hover */
.card--service:hover {
  box-shadow: 0 16px 48px rgba(10, 40, 150, 0.18),
              0 0 0 1px rgba(30, 62, 197, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 3D tilt handled by JS */
.card--tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 40, 150, 0.2), rgba(30, 62, 197, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue-bright);
}

.card__title {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--chelsea-gold), var(--chelsea-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.7;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chelsea-gold);
}

/* Checkmark variant for pricing */
.card__list--check li::before {
  width: 8px;
  height: 5px;
  border-radius: 0;
  background: none;
  border-left: 2px solid var(--chelsea-gold);
  border-bottom: 2px solid var(--chelsea-gold);
  transform: rotate(-45deg);
  top: 0.5em;
}

/* ===================================================
   SERVICES SECTION (2-col layout)
   =================================================== */
.services {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-elevated) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 0 rgba(30, 62, 197, 0.12);
}

/* Services glow accents */
.services::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(77, 122, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 40, 150, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.services > .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.card--service .card__title {
  margin-bottom: 1rem;
}

/* ===================================================
   PRICING SECTION — LIGHT section
   =================================================== */
.pricing {
  padding: var(--section-gap) 0;
  background: var(--bg-light);
  position: relative;
}


.pricing > .container {
  position: relative;
  z-index: 1;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pricing .section-title { color: var(--text-dark); }
.pricing .section-subtitle { color: var(--text-dark-muted); }

.card--pricing {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-color: var(--border-light);
}

.card--pricing:hover {
  border-color: rgba(30, 62, 197, 0.3);
  box-shadow: 0 12px 40px rgba(10, 40, 150, 0.1);
  background: var(--white);
}

.card--pricing .card__title { color: var(--text-dark); }
.card--pricing .card__list li { color: var(--text-dark-muted); }

.card--pricing .btn {
  width: 100%;
  margin-top: auto;
}

.card--pricing .card__accent {
  background: linear-gradient(90deg, transparent, var(--chelsea-gold), transparent);
}

.pricing__header {
  margin-bottom: 1.25rem;
}

.pricing__desc {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.pricing__price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pricing__from {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-right: 0.15rem;
}

.pricing__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing__period {
  font-size: 1rem;
  color: var(--text-dark-muted);
}

.pricing__note {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  font-style: italic;
}

.card--pricing .card__list {
  margin-bottom: 2rem;
  flex: 1;
}

/* ===================================================
   CONTACT SECTION (2-column layout)
   =================================================== */
.contact {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-start) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 0 rgba(30, 62, 197, 0.12);
}

/* Contact glow accent */
.contact::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30, 62, 197, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* Profile card in contact */
.contact__profile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__profile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s, box-shadow 0.4s;
}

.contact__profile-card:hover {
  box-shadow: 0 20px 60px rgba(10, 40, 150, 0.15);
}

.contact__photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
}

.contact__profile-info {
  padding: 1.25rem 1.5rem;
  background: rgba(6, 13, 31, 0.6);
  backdrop-filter: blur(8px);
}

.contact__profile-info strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact__profile-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact details card */
.contact__details-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.contact__details-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.contact__detail-item svg {
  flex-shrink: 0;
  color: var(--blue-bright);
}

a.contact__detail-item:hover {
  color: var(--blue-bright);
}

/* Contact form */
.contact__form-wrapper {
  width: 100%;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(30, 62, 197, 0.15);
}

.form-input::placeholder { color: var(--text-muted); }

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 0.35rem;
}

.form-group.has-error .form-input {
  border-color: #e05252;
}

.form-group.has-error .form-error {
  display: block;
}

.btn--submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem;
  font-size: 1rem;
}

.contact-form__status {
  display: none;
  text-align: center;
  padding: 2rem 0 0;
}

.contact-form__success svg {
  margin: 0 auto 0.75rem;
  color: #22c55e;
}

.contact-form__success p {
  color: var(--text);
  font-size: 1rem;
}

.contact-form__error svg {
  margin: 0 auto 0.75rem;
  color: #e05252;
}

.contact-form__error p {
  color: var(--text);
  font-size: 1rem;
}

.contact-form__error a {
  color: var(--blue-bright);
  text-decoration: underline;
}

/* Form submitted/error states */
.contact-form.submitted .contact-form__row,
.contact-form.submitted .form-group,
.contact-form.submitted .btn--submit {
  display: none;
}

.contact-form.submitted .contact-form__success {
  display: block;
}

.contact-form.form-failed .contact-form__error {
  display: block;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 340px 1fr;
    gap: 3rem;
  }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: 4rem 0 0;
  background: var(--bg-deep);
  border-top: none;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 62, 197, 0.3), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.logo--footer {
  font-size: 1.35rem;
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.logo--footer .logo__icon {
  filter: drop-shadow(0 2px 6px rgba(10, 40, 150, 0.2));
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__address {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__contact-links a {
  color: var(--blue-bright);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__contact-links a:hover {
  color: var(--white);
}

.footer__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__heading--mt {
  margin-top: 1.5rem;
}

.footer__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
}

.footer__list a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--white);
}

/* Footer platform icons */
.footer__platform-icons {
  display: grid;
  grid-template-columns: repeat(4, 36px);
  gap: 0.6rem;
  margin-top: 0.5rem;
  justify-content: start;
}

@media (max-width: 767px) {
  .footer__platform-icons {
    justify-content: start;
  }
}

.footer__platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
  flex-shrink: 0;
}

.footer__platform-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer__platform-icon:hover {
  border-color: var(--border-hover);
  background: rgba(77, 122, 255, 0.06);
  transform: translateY(-2px);
}

.footer__google-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--chelsea-gold);
  border-radius: var(--pill);
  padding: 0.3rem 0.75rem 0.3rem 0.5rem;
  transition: background 0.3s ease;
}

.footer__google-cert:hover {
  background: rgba(212, 168, 67, 0.08);
}

.footer__bottom {
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================================
   FEATURED PRICING CARD (subtle highlight)
   =================================================== */
.card--pricing-featured {
  border-color: rgba(30, 62, 197, 0.25);
  box-shadow: 0 0 0 1px rgba(30, 62, 197, 0.08),
              0 8px 30px rgba(10, 40, 150, 0.06);
  position: relative;
}

.card--pricing-featured .card__accent {
  opacity: 1;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  height: 3px;
}

@media (min-width: 1024px) {
  .card--pricing-featured {
    transform: scale(1.03);
  }
  .card--pricing-featured:hover {
    transform: scale(1.05);
  }
}

/* ===================================================
   STICKY KONTAKT-WIDGET
   =================================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Tab-knap */
.sticky-cta__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light, #1a6fd4) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(10, 40, 150, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-cta__tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(10, 40, 150, 0.5);
}

.sticky-cta__tab svg {
  flex-shrink: 0;
}

/* Panel (skjult som standard) */
.sticky-cta__panel {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  background: #0a1224;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.sticky-cta.open .sticky-cta__tab {
  display: none;
}

.sticky-cta.open .sticky-cta__panel {
  display: block;
  animation: stickySlideUp 0.3s ease;
}

@keyframes stickySlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.sticky-cta__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sticky-cta__header h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.sticky-cta__close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.sticky-cta__close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Formular-felter */
.sticky-cta__input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: border-color 0.25s;
}

.sticky-cta__input::placeholder {
  color: var(--text-muted);
}

.sticky-cta__input:focus {
  outline: none;
  border-color: var(--blue);
}

.sticky-cta__textarea {
  resize: vertical;
  min-height: 60px;
}

.sticky-cta__submit {
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light, #1a6fd4) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s;
}

.sticky-cta__submit:hover {
  opacity: 0.9;
}

/* Success besked */
.sticky-cta__success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.sticky-cta__success p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.sticky-cta.form-sent .sticky-cta__form {
  display: none;
}

.sticky-cta.form-sent .sticky-cta__success {
  display: block;
}

/* Mobil tilpasning */
@media (max-width: 480px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }

  .sticky-cta__panel {
    width: calc(100vw - 32px);
    right: 0;
  }

  .sticky-cta__tab span {
    display: none;
  }

  .sticky-cta__tab {
    padding: 0.75rem;
    border-radius: 50%;
  }
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
