/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Skip link (tilgængelighed) === */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #111;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  left: 10px;
}

/* === Header === */
.site-header {
  background-color: #2f2f2f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.9rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* === Knapper === */
.btn {
  display: inline-block;
  background-color: #1f4b99;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.1s ease, opacity 0.1s ease;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.92;
}
.btn:active {
  transform: translateY(1px);
}

.btn-header {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cta-row {
  margin-top: 1.25rem;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-secondary {
  color: #1f4b99;
  text-decoration: none;
  font-weight: 600;
}
.cta-secondary:hover {
  text-decoration: underline;
}

/* === Sektioner (generelt) === */
.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background-color: #fff;
}

/* === 1. Hero === */
.hero {
  background-color: #fff;
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(17, 17, 17, 0.72);
  max-width: 620px;
  line-height: 1.6;
}

/* === 2. Features (hvad er SMV-CISO) === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}

.feature-card {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.5;
}

/* === Inline CTA-boks === */
.inline-cta {
  margin-top: 2rem;
  padding: 24px;
  background: rgba(31, 75, 153, 0.04);
  border: 1px solid rgba(31, 75, 153, 0.12);
  border-radius: 12px;
  text-align: center;
}

.inline-cta p {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111;
}

/* === 3. Situationer === */
.situations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 1.25rem;
}

.situation-card {
  border-left: 3px solid #1f4b99;
  padding: 16px 20px;
  background: rgba(31, 75, 153, 0.04);
  border-radius: 0 10px 10px 0;
}

.situation-card p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  color: #111;
}

.situations-footer {
  margin-top: 1.25rem;
  color: rgba(17, 17, 17, 0.72);
}

/* === 4. Proces-trin === */
.process-steps {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #1f4b99;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-steps h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.process-steps p {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.5;
}

/* === 5. Om personen === */
.about-person p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* === 6. Pris === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}

.price-card {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  padding: 24px 20px;
  background: #fff;
  text-align: center;
}

.price-tier {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.72);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.55);
}

.pricing-notes {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.pricing-notes p {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.72);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

/* === 7. CTA-sektion === */
.section-cta {
  background-color: #2f2f2f;
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}

.section-cta h2 {
  color: #fff;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .cta-row {
  justify-content: center;
}

.section-cta .cta-secondary {
  color: rgba(255, 255, 255, 0.8);
}
.section-cta .cta-secondary:hover {
  color: #fff;
}

/* === Typografi-hjælpere === */
h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.muted {
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.5;
}

a {
  color: #1f4b99;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === Footer === */
.site-footer {
  background-color: #2f2f2f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  padding: 1.25rem 1.5rem;
  margin-top: auto;
}

.site-footer p {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

/* === Mobil === */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-inner {
    padding: 0 1rem;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand-sub {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-amount {
    font-size: 1.25rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-cta .cta-row {
    align-items: center;
  }
}
