/* --- Basis Opsætning & Farver --- */
:root {
  --primary-color: #3b82f6; /* Den moderne blå farve */
  --primary-hover: #2563eb;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Gør at siden ruller blødt når man klikker på menuen */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typografi --- */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.3rem; }

p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.eyebrow {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* --- Knapper --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
  border-color: var(--text-dark);
}

.full {
  width: 100%;
}

/* --- Navigation --- */
.topbar {
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-dark);
}

.logo span {
  color: var(--primary-color);
}

.nav nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background-color: var(--dark-bg);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-cta:hover {
  background-color: var(--text-dark);
}

/* --- Layout Sektioner --- */
.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section-dark h2 { color: var(--white); }
.section-dark p { color: #94a3b8; }

.bg-light {
  background-color: var(--light-bg);
}

/* --- Hero --- */
.hero {
  padding: 8rem 0;
  background-color: var(--light-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Statistik Boks */
.hero-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.stat:last-child {
  margin-bottom: 0;
}

.stat strong {
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 1;
}

.stat span {
  color: var(--text-light);
  font-weight: 500;
}

/* --- Ydelser --- */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* --- Om Os --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-item:last-child {
  margin-bottom: 0;
}

.about-item .check {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.about-item p {
  color: var(--white);
  margin: 0;
}

/* --- Kontakt (Skærmbillede-look) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: -0.8rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #f4f8ff;
}

.form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--white);
  border-top: 1px solid #e2e8f0;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Mobil Tilpasning --- */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  
  .nav nav { display: none; } /* Gemmer menuen på små skærme */
  
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero { padding: 4rem 0; }
  .section { padding: 4rem 0; }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}