/* =========================================================
  0) BASE / RESET
========================================================= */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #05070a;
}

/* =========================================================
  1) BACKGROUND
========================================================= */
.bg{
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("assets/bg.png") center / cover no-repeat;
  z-index: -1;
}

/* =========================================================
  2) LAYOUT WRAPPER
========================================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 18px;
}

.page{
  margin-top: 24px;
  padding: 0;

  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;

  color: rgba(255,255,255,0.85);
}

/* Kun "side-overskriften" på mørk baggrund */
.page > h1,
.page > h2 {
  color: #ffffff;
}


/* VIGTIGT: efter .page */
.is-hidden { display: none !important; }

/* =========================================================
  3) TOPBAR + BRAND
========================================================= */
.topbar {
  height: 72px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px; /* lidt luft mellem logo og tekst */
  color: #bfeaff;
}

.brand__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand__name { font-weight: 800; }
.brand__sub { font-size: 12px; opacity: 0.85; }

/* =========================================================
  4) NAVIGATION (MENU)
========================================================= */
.nav { display: flex; gap: 10px; }

.nav__item {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 999px;

  background: rgba(120,205,255,0.16);
  color: #0b0f14; /* ikonfarve via currentColor */
}

.nav__item:hover { background: rgba(120,205,255,0.24); }
.nav__item.is-active { background: rgba(120,205,255,0.35); }

/* Tekstfarve på labels (så ikon kan være mørk/hvid uden at ændre tekst) */
.nav__label {
  font-size: 11px;
  font-weight: 700;
  color: #d9f3ff;
}

/* SVG icons (stroke style) */
.icon{
  width: 18px;
  height: 18px;
  display: inline-block;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover/active: gør IKONET hvidt (via currentColor) */
.nav__item:hover,
.nav__item.is-active {
  color: #ffffff;
}

/* =========================================================
  5) HOME: HERO + SECTIONS
========================================================= */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 0;
  text-align: center;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.85);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Section blocks on home */
.home-section {
  margin-top: 26px;
}

.home-section h2 {
  margin: 0 0 12px;
  color: #ffffff; /* vigtigt: læsbar på baggrunden */
}

.home-services-cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}


/* =========================================================
  6) BUTTONS (GENERIC)
========================================================= */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn--primary {
  background: rgba(120,205,255,0.9);
  color: #000;
}
.btn--primary:hover { background: rgba(120,205,255,1); }

.btn--ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* =========================================================
  7) CARDS (Services overview + Services page)
========================================================= */
.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);
}

.card {
  position: relative;
  padding: 16px 16px 52px; /* ekstra plads i bunden til knap */
}

/* Læs mere-knap i card */
.card .btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
}


.services-details{
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}


/* Uddybning = fuld bredde */
.detail{
  width: 100%;
  padding: 32px 36px;
  border-radius: 26px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);

  color: rgba(0,0,0,0.8);
}

.detail h3{
  margin: 0 0 10px;
  color: #000;
}

/* =========================================================
   LYSE KOMPONENTER (sort tekst)
========================================================= */
.card,
.stepper__step,
.t-card,
.cta,
.contact-box,
.glass-card {
  color: rgba(0,0,0,0.8);
}

/* Overskrifter i lyse komponenter */
.card h1, .card h2, .card h3,
.stepper__step h3,
.t-card h3,
.cta h2,
.contact-box h2,
.glass-card h2, .glass-card h3 {
  color: #000;
}

.card h3 { margin: 0 0 8px; }
.card p { margin: 0; line-height: 1.5; color: rgba(0,0,0,0.75); }

/* =========================================================
  8) MISSION (Home boks – mere diskret end "glass")
========================================================= */
.mission {
  margin: 26px auto 0;
  max-width: 760px;
  padding: 22px 24px;
  border-radius: 22px;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission h2 {
  margin: 0 0 10px;
  color: #ffffff;
}

.mission__intro {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.mission__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission__points li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.mission__points li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(120,205,255,0.9);
  font-weight: 700;
}

/* =========================================================
  9) PROCESS (HOME) – STEPper (3 kolonner)
========================================================= */
.stepper {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stepper__step {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
}

.stepper__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stepper__dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(120,205,255,0.35);
  border: 1px solid rgba(0,0,0,0.06);
}

.stepper__line {
  height: 2px;
  flex: 1;
  background: rgba(0,0,0,0.10);
  border-radius: 999px;
}

.stepper__step h3 { margin: 0 0 6px; }
.stepper__step p  { margin: 0; color: rgba(0,0,0,0.75); line-height: 1.5; }

/* =========================================================
  10) CTA (Home afslutning)
========================================================= */
.cta {
  margin-top: 48px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);
}

.cta h2 { margin: 0 0 6px; }
.cta p  { margin: 0 0 14px; color: rgba(0,0,0,0.75); }

/* =========================================================
  11) JOURNEY (Din PC rejse)
========================================================= */
.journey-intro{
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

.journey-chooser{
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.choice{
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}
.choice:hover{ background: rgba(0,0,0,0.36); }

/* Timeline */
.timeline{
  position: relative;
  max-width: 860px;
  margin-top: 12px;
  padding-left: 26px;
}

.timeline::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
}
.journey-layout{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}

/* Venstre side bliver sticky-ish følelse uden at være sticky */
.journey-side{
  display: grid;
  gap: 14px;
}

.journey-summary{
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
}

.journey-summary h3{
  margin: 0 0 6px;
  color: #fff;
}

/* Timeline fylder nu højre side pænt */
.journey-main .timeline{
  max-width: none;     /* fjern max-width: 860px effekt */
  width: 100%;
}

/* Mobil: stack */
@media (max-width: 900px){
  .journey-layout{ grid-template-columns: 1fr; }
}


.t-item{
  position: relative;
  margin: 0 0 14px;
}

.t-dot{
  position: absolute;
  left: -2px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(120,205,255,0.95);
  box-shadow: 0 0 0 5px rgba(120,205,255,0.18);
}

.t-card{
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
}

.t-card h3{ margin: 0 0 6px; }
.t-card p{ margin: 0 0 8px; color: rgba(0,0,0,0.75); line-height: 1.5; }
.t-next{ margin-top: 8px; }

.journey-cta{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
  12) CONTACT
========================================================= */
.contact-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);
}

.contact-link {
  display: block;
  text-decoration: none;
  font-weight: 800;
  margin: 10px 0;
  color: #0b0f14;
}
.contact-link:hover { text-decoration: underline; }

.contact-note {
  margin-top: 12px;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
}
.contact-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.contact-card{
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);
  color: rgba(0,0,0,0.8);
}

.contact-card h3{ margin: 0 0 12px; color: #000; }
.contact-card h4{ margin: 16px 0 8px; color: #000; }

.contact-form{
  display: grid;
  gap: 12px;
}

.field label{
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.75);
  color: #000;
  font: inherit;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(120,205,255,0.9);
  box-shadow: 0 0 0 4px rgba(120,205,255,0.20);
}

.error{
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(160,0,0,0.85);
  min-height: 1em;
}

.form-actions{
  margin-top: 4px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-note{
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
}

.contact-tips ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,0.75);
}

.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
  13) ABOUT (glass-card inden i "about" page)
========================================================= */
.glass-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

/* Omvendt layout til Om os */
.glass-card--reverse{
  grid-template-columns: 0.8fr 1.2fr;
}

.glass-card--reverse .glass-card__media{
  order: 1;
}

.glass-card--reverse .glass-card__text{
  order: 2;
}


.glass-card__media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* Afstand mellem medstiftere i Om os */
#about .glass-card {
  margin-bottom: 28px;
}

/* =========================================================
  14) RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; }
  .stepper__line { display: none; }
  .glass-card { grid-template-columns: 1fr; }
}

.process{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process__item{
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.8);
}

.process__meta{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(120,205,255,0.35);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 10px;
}

.process__item h3{
  margin: 0 0 6px;
  color: #000;
}

.process__item p{
  margin: 0 0 10px;
  line-height: 1.5;
  color: rgba(0,0,0,0.75);
}

.process__hint{
  margin: 8px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.72);
  font-size: 13px;
}

/* mobil */
@media (max-width: 900px) {
  .process{ grid-template-columns: 1fr; }
}

