/* Self-hosted Inter font (GDPR-venlig — ingen data sendes til Google). Lavet med AI, kig i documentation/samtaler/session-005_2026-02-08.md */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* CSS Custom Properties (farvevariabler). Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
:root {
  --bg-primary: #141423;
  --bg-secondary: #111128;
  --bg-tertiary: #1a1a2e;
  --accent: #2a2a5e;
  --accent-light: #4a4a8a;
  --accent-glow: rgba(74, 74, 138, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6a6a80;
  --gradient: linear-gradient(135deg, #1a1a3e, #2a1a4e);
  --font-family: 'Inter', sans-serif;
  --nav-height: 70px;
  --transition-speed: 0.3s;
}

/* Global reset og base-styling. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--accent-light);
}

ul {
  list-style: none;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

/* Sticky navigation med transparent-til-solid overgang. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 18, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Hamburger-menu knap til mobil. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform var(--transition-speed) ease,
              opacity var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobilmenu (overlay). Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right var(--transition-speed) ease;
  z-index: 1000;
}

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

.nav-menu li a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ============================================
   HERO-SEKTION
   ============================================ */

/* Full-width hero med baggrundsbillede og centreret tekst. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/STNG-Studios-Hero-Banner-20.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--nav-height) 1.5rem 2rem;
}

/* Bølgekant i bunden af hero via absolut positioneret wave-divider. Lavet med AI, kig i documentation/samtaler/session-011_2026-02-09.md */
.wave-divider.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  margin-bottom: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 18, 0.3) 0%,
    rgba(10, 10, 18, 0.1) 50%,
    rgba(10, 10, 18, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   APP-SEKTION
   ============================================ */

/* App-showcase sektion med karrusel og tekst. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.app-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.app-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Billedkarrusel til app-screenshots. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.carousel-container {
  width: 100%;
  max-width: 320px;
  position: relative;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: 40px;
  corner-shape: squircle;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide img {
  width: 100%;
  border-radius: 40px;
  corner-shape: squircle;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: background-color var(--transition-speed) ease,
              transform var(--transition-speed) ease;
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--accent-light);
  transform: scale(1.3);
}

.app-text {
  text-align: center;
}

.app-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.app-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* CTA-knap med margin i app-tekst sektionen. Lavet med AI, kig i documentation/samtaler/session-011_2026-02-09.md */
.app-text .cta-button {
  margin-top: 1.5rem;
}

/* Scroll-animation klasser (bruges af JS). Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.slide-in-left,
.slide-in-right {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   FOUNDER'S NOTE
   ============================================ */

/* Bølge-divider mellem app-showcase og founder's note. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.wave-divider {
  line-height: 0;
  position: relative;
  z-index: 1;
  margin-bottom: -80px;
  margin-top: -5px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Wave-divider fill styret via CSS-variabel med --bg-primary som default. Lavet med AI, kig i documentation/samtaler/session-011_2026-02-09.md */
.wave-divider path {
  fill: var(--wave-fill, var(--bg-primary));
}

/* Founder's note sektion med billede og tekst. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.founder-section {
  padding: 5rem 1.5rem;
  background: var(--gradient);
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.founder-image {
  width: 100%;
  max-width: 350px;
}

.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-tertiary);
  border-radius: 40px;
  corner-shape: squircle;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-image-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

/* Stifterbillede i founders note. Lavet med AI, kig i documentation/samtaler/session-014_2026-02-10.md */
.founder-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 40px;
  corner-shape: squircle;
  display: block;
}

.founder-text {
  text-align: center;
}

.founder-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.founder-text blockquote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--accent-light);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.founder-text .founder-name {
  font-weight: 600;
  color: var(--text-primary);
  font-style: normal;
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer med tre kolonner: links, selskabsinfo og social media. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--bg-secondary);
  padding: 3rem 1.5rem 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-company {
  text-align: center;
}

.footer-company p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-company strong {
  color: var(--text-primary);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease;
}

.footer-social a:hover {
  background-color: var(--accent);
  color: var(--text-primary);
}

/* Fjernet fill: currentColor så stroke-baserede SVGs (email, Instagram) renderes korrekt. Lavet med AI, kig i documentation/samtaler/session-011_2026-02-09.md */
.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   FAQ-SEKTION
   ============================================ */

/* FAQ-header med centreret overskrift og undertekst. Lavet med AI, kig i documentation/samtaler/session-005_2026-02-08.md */
.faq-header {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-header h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FAQ accordion-kort med expand/collapse animation. Lavet med AI, kig i documentation/samtaler/session-005_2026-02-08.md */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--accent);
  border-radius: 40px;
  corner-shape: squircle;
  overflow: hidden;
  margin: 0.4rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0), color var(--transition-speed) ease;
}

.faq-question:hover .faq-chevron {
  color: var(--accent-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0);
  padding: 0 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

/* ============================================
   SERVICEVILKÅR-SEKTION
   ============================================ */

/* Servicevilkår-header og boks-styling. Lavet med AI, kig i documentation/samtaler/session-006_2026-02-08.md */
.terms-header {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.terms-header h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.terms-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.terms-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.terms-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-item {
  background-color: var(--accent);
  border-radius: 40px;
  corner-shape: squircle;
  padding: 2rem 2rem;
  margin: 0.4rem;
}

.terms-item h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.terms-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.terms-subpoints {
  list-style: disc;
  list-style-position: outside;
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}

.terms-subpoints li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.terms-subpoints li strong {
  color: var(--text-primary);
}

/* ============================================
   OM OS — HERO-SEKTION
   ============================================ */

/* Full-width hero med team-billede og bølget underkant via SVG mask. Lavet med AI, kig i documentation/samtaler/session-014_2026-02-10.md */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 960' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V860 C1200,960 960,760 720,860 C480,960 240,760 0,860 Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 960' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1440 V860 C1200,960 960,760 720,860 C480,960 240,760 0,860 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 18, 0.3) 0%,
    rgba(10, 10, 18, 0.1) 50%,
    rgba(10, 10, 18, 0.8) 100%
  );
  z-index: 0;
}

.about-hero-placeholder {
  width: 100%;
  min-height: 620px;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-hero-overlay h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}

.about-hero-overlay p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ============================================
   OM OS — FOUNDER-SEKTIONER
   ============================================ */

/* Founder-sektioner med alternerende layout. Lavet med AI, kig i documentation/samtaler/session-007_2026-02-08.md */
/* Gradient-baggrund for founders-sektionen. Lavet med AI, kig i documentation/samtaler/session-007_2026-02-08.md */
.about-founders {
  background: var(--gradient);
  margin-top: -20vh;
  padding: calc(8rem + 15vh) 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

.founder-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  width: 100%;
}

/* Polaroid-kort styling med ekstra bund-padding. Lavet med AI, kig i documentation/samtaler/session-007_2026-02-08.md */
.polaroid-card {
  background-color: var(--bg-secondary);
  border-radius: 24px;
  corner-shape: squircle;
  padding: 0.75rem 0.75rem 1.5rem;
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}

.polaroid-image {
  border-radius: 18px;
  corner-shape: squircle;
  overflow: hidden;
}

/* Profilbilleder i polaroid-kort. Lavet med AI, kig i documentation/samtaler/session-014_2026-02-10.md */
.polaroid-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.polaroid-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  corner-shape: squircle;
}

.polaroid-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.25;
}

.polaroid-info {
  text-align: center;
  padding-top: 1rem;
}

.polaroid-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.polaroid-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.polaroid-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.polaroid-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease;
}

.polaroid-links a:hover {
  background-color: var(--accent);
  color: var(--text-primary);
}

.polaroid-links svg {
  width: 18px;
  height: 18px;
}

/* Founder bio-tekst. Lavet med AI, kig i documentation/samtaler/session-007_2026-02-08.md */
.founder-bio {
  text-align: center;
}

.founder-bio h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.founder-bio p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* ============================================
   PRODUKTER — HERO-SEKTION
   ============================================ */

/* Product hero med app-showcase billede og introduktionstekst. Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
/* background-color tilføjet for at dække sub-pixel gap — hero var gennemsigtig så feature-sektionens lilla skinede igennem. Lavet med AI, kig i documentation/samtaler/session-013_2026-02-09.md */
.product-hero {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
  position: relative;
  z-index: 2;
  background-color: var(--bg-primary);
}

/* max-width flyttet hertil så .product-hero er full-width med baggrund. Lavet med AI, kig i documentation/samtaler/session-013_2026-02-09.md */
.product-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Svæve-animation til hero-billede (subtil op/ned bevægelse). Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.product-hero-image {
  width: 100%;
  max-width: 400px;
  animation: product-float 3s ease-in-out infinite;
  position: relative;
}

/* Diffus hvid cirkel bag hero-billedet som backlight-effekt. Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
.product-hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.173) 0%, rgba(255, 255, 255, 0.095) 40%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.product-hero-text {
  text-align: center;
}

.product-hero-text h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.product-hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.product-hero-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   PRODUKTER — FEATURE-SEKTIONER
   ============================================ */

/* Feature-sektioner med individuelle lilla baggrunde og bølge-grænser. Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
.product-feature {
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-feature--1 {
  background-color: #1a1a3e;
  padding-top: 7rem;
}

.product-feature--2 {
  background-color: #212150;
  padding-top: 7rem;
}

.product-feature--3 {
  background-color: #2a2a62;
  padding-top: 7rem;
}

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  max-width: 1000px;
  width: 100%;
}

.feature-image {
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
}

.feature-image img {
  width: 100%;
  border-radius: 40px;
  corner-shape: squircle;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.feature-text {
  text-align: center;
}

.feature-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   PRODUKTER — CTA-SEKTION
   ============================================ */

/* Call-to-action sektion med "Kommer snart" og kontakt-knap. Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
.product-cta {
  padding: 5rem 1.5rem;
  text-align: center;
}

.product-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.product-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-cta-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--accent-light);
  transition: background-color var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.cta-button:hover {
  background-color: var(--accent-light);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================
   KONTAKT — HERO-SEKTION
   ============================================ */

/* Kontakt hero med centreret tekst og nav-padding. Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
.contact-hero {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-hero-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   KONTAKT — GENEREL KONTAKTINFO
   ============================================ */

/* Generel kontakt-sektion med gradient-baggrund. Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
.contact-general {
  background: var(--gradient);
  padding: 7rem 1.5rem 5rem;
  text-align: center;
}

.contact-general h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Email-link som pill-formet knap med ikon. Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--text-primary);
  padding: 1rem 2rem;
  background-color: var(--bg-secondary);
  border-radius: 50px;
  transition: background-color var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
  margin-bottom: 2.5rem;
}

.contact-email:hover {
  background-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.contact-email svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Sociale medier-ikoner (større end footer-ikoner). Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
.contact-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease,
              transform var(--transition-speed) ease;
}

.contact-social a:hover {
  background-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-4px);
}

.contact-social svg {
  width: 26px;
  height: 26px;
}

/* ============================================
   KONTAKT — TEAM-KORT
   ============================================ */

/* Team-sektion med polaroid-kort for co-founders. Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
/* Lysere lilla baggrund end .contact-general for visuel kontrast. Lavet med AI, kig i documentation/samtaler/session-011_2026-02-09.md */
.contact-team {
  padding: 5rem 1.5rem;
  text-align: center;
  background-color: #212150;
}

.contact-team h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Omvendt bølge-divider (bund-af-sektion variant). Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
.wave-divider--flipped {
  margin-bottom: 0;
  margin-top: -80px;
}

/* ============================================
   404-FEJLSIDE
   ============================================ */

/* 404 top-sektion: centrerer 404-displayet. Lavet med AI, kig i documentation/samtaler/session-009_2026-02-09.md */
/* will-change: transform forhindrer sub-pixel gap efter animationer. Lavet med AI, kig i documentation/samtaler/session-013_2026-02-09.md */
.error-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  text-align: center;
  will-change: transform;
}

/* 404 bund-sektion: accent-baggrund med tekst og knap. Lavet med AI, kig i documentation/samtaler/session-009_2026-02-09.md */
.error-bottom {
  background: var(--gradient);
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

/* 404-display: tallene og logoet i en række, bund-justeret. Lavet med AI, kig i documentation/samtaler/session-009_2026-02-09.md */
.error-display {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 3rem;
  margin-bottom: none;
}

.error-digit {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  user-select: none;
}

/* Logo-wrapper og tip-animation: logoet vipper fra diamant (45°) til flad position. Lavet med AI, kig i documentation/samtaler/session-009_2026-02-09.md */
.error-logo-wrapper {
  width: clamp(4.36rem, 10.9vw, 7.27rem);
  height: clamp(4.36rem, 10.9vw, 7.27rem);
  flex-shrink: 0;
  margin: 0 0.75rem clamp(0.75rem, 1.875vw, 1.25rem);
}

/* cubic-bezier vlaues fudnet ved at lege med dette værktøj: https://cubic-bezier.com */
.error-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: bottom right;
  animation: logo-tip 1.1s cubic-bezier(.99,-0.01,.95,.74) 0.3s both;
}

/* Ændret selv rotations retning*/
@keyframes logo-tip {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* Tilgængelighed: deaktiver animation for brugere med reduced motion. Lavet med AI, kig i documentation/samtaler/session-009_2026-02-09.md */
@media (prefers-reduced-motion: reduce) {
  .error-logo {
    animation: none;
  }
}

.error-heading {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.error-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   DESKTOP LAYOUT (min-width: 768px)
   ============================================ */

/* Responsive breakpoint for tablet og op. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    gap: 2rem;
  }

  .nav-menu li a {
    font-size: 0.95rem;
  }

  .nav-overlay {
    display: none !important;
  }

  .app-content {
    flex-direction: row;
    align-items: center;
  }

  .carousel-container {
    flex-shrink: 0;
    max-width: 280px;
  }

  .app-text {
    text-align: left;
  }

  .app-text p {
    margin: 0;
  }

  .founder-content {
    flex-direction: row-reverse;
    align-items: center;
  }

  .founder-image {
    flex-shrink: 0;
    max-width: 300px;
  }

  .founder-text {
    text-align: left;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links ul {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .faq-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
  }

  .faq-list {
    max-width: 800px;
  }

  .faq-question {
    padding: 1.75rem 2.5rem;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .faq-answer p {
    padding-bottom: 1.75rem;
  }

  /* Responsive servicevilkår-styling. Lavet med AI, kig i documentation/samtaler/session-006_2026-02-08.md */
  .terms-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
  }

  .terms-item {
    padding: 2rem 2.5rem;
  }

  /* Responsive om os-styling (tablet+). Lavet med AI, kig i documentation/samtaler/session-007_2026-02-08.md */
  .about-hero {
    padding-top: calc(var(--nav-height) + 1.5rem);
  }

  .founder-row {
    flex-direction: row;
    align-items: center;
  }

  .founder-row--reversed {
    flex-direction: row-reverse;
  }

  .founder-bio {
    text-align: left;
  }

  /* Responsive produkter-styling (tablet+). Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
  .product-hero {
    padding-top: calc(var(--nav-height) + 4rem);
  }

  .product-hero-content {
    flex-direction: row;
    align-items: center;
  }

  .product-hero-image {
    flex-shrink: 0;
    max-width: 350px;
  }

  .product-hero-text {
    text-align: left;
  }

  .product-hero-description {
    margin: 0;
  }

  .feature-row {
    flex-direction: row;
    align-items: center;
  }

  .feature-row--reversed {
    flex-direction: row-reverse;
  }

  .feature-text {
    text-align: left;
  }

  .feature-text p {
    margin: 0;
  }

  /* Responsive kontakt-styling (tablet+). Lavet med AI, kig i documentation/samtaler/session-010_2026-02-09.md */
  .contact-hero {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
  }

  .contact-cards {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

/* ============================================
   DESKTOP LAYOUT (min-width: 1024px)
   ============================================ */

/* Responsive breakpoint for desktop med scroll-animationer. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
@media (min-width: 1024px) {
  .carousel-container {
    max-width: 320px;
  }

  .founder-image {
    max-width: 350px;
  }

  /* Scroll-animation starttilstand (kun desktop). Easing ændret til ease-in-out. Lavet med AI, kig i documentation/samtaler/session-004_2026-02-07.md */
  .slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }

  .slide-in-left.visible,
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Responsive produkter-styling (desktop). Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
  .product-hero-image {
    max-width: 700px;
    animation: none;
  }

  /* Svæve-animation starter efter slide-in (0.8s delay). Lavet med AI, kig i documentation/samtaler/session-008_2026-02-08.md */
  .product-hero-image.visible {
    animation: product-float 4s ease-in-out 0.8s infinite;
  }
}
