/* =========================================
   Tilbudslister.dk - landing page
   Simple HTML + CSS one-pager
   ========================================= */

:root {
  --navy: #3a4d63;
  --navy-dark: #2f3f52;
  --navy-darker: #263243;
  --text: #4a5460;
  --text-muted: #7a8492;
  --heading: #3a4d63;
  --bg: #ffffff;
  --bg-light: #f3f4f6;
  --bg-blue: #d9e1ea;
  --border: #e2e5ea;
  --accent: #5a6f8a;
  --white: #ffffff;
  --max-width: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); }
a:hover { opacity: 0.85; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--navy-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-size: 22px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.logo-text { white-space: nowrap; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.site-nav a:hover { color: #cfd6e0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-darker);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  opacity: 1;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(38,50,67,0.55) 0%, rgba(38,50,67,0.65) 100%),
    url("hero.jpg") center/cover no-repeat;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 140px 0 160px;
  text-align: center;
}

.hero-inner h1 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 300;
  color: #e6ebf2;
}

.hero .btn {
  margin-top: 30px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 28px;
  font-size: 14px;
}
.hero .btn:hover {
  background: #e6ebf2;
}

/* =========================================
   BANDS (alternating sections)
   ========================================= */
.band {
  padding: 56px 0;
}
.band-light { background: var(--bg-light); }
.band-blue  { background: var(--bg-blue); }
.band-dark  { background: var(--navy-dark); color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.band-cta { display: flex; justify-content: flex-end; }

.band-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.band-title-light { color: var(--white); }
.light-text { color: var(--white); }

/* =========================================
   GENERIC SECTION
   ========================================= */
.section {
  padding: 80px 0;
}
.section-center { text-align: center; }

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 48px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* =========================================
   CHECK LIST
   ========================================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.check-list li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--navy);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.check-list-light li { color: #e6ebf2; }

/* =========================================
   4 SKRIDT
   ========================================= */
.four-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.steps-list { display: flex; flex-direction: column; gap: 32px; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 6px 0 6px;
  color: var(--heading);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

.video-wrap {
  display: flex;
  justify-content: center;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================
   FORDELE / BENEFITS
   ========================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.benefit-card-wide {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-group {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.benefit-card h4 {
  font-size: 14px;
  color: var(--heading);
  margin: 18px 0 8px;
  letter-spacing: 0.04em;
}

.benefit-card p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   PRIS
   ========================================= */
.price-big {
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.price-note {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy-darker);
  color: #b9c1cc;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .four-steps {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .band-cta { justify-content: flex-start; }
  .hero-inner h1 { font-size: 28px; }
}

@media (max-width: 640px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; }
  .header-inner { flex-direction: column; padding: 12px 0; gap: 12px; }
  .logo-text { font-size: 18px; }
  .hero { padding: 70px 0 80px; }
  .hero-inner h1 { font-size: 24px; }
  .section { padding: 56px 0; }
  .band { padding: 40px 0; }
  .price-big { font-size: 48px; }
}
