/* ============================================
   Libbers Køreskole – Stylesheet
   Farvetema: Limegrøn (logofarve) + mørkegrøn
   ============================================ */

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

:root {
  --green:        #2c6629;
  --green-dark:   #1e4318;
  --green-mid:    #3d8a30;
  --lime:         #8dbe22;
  --lime-h:       #79a81b;
  --lime-light:   #eaf4c8;
  --white:        #ffffff;
  --gray-50:      #f5f8f0;
  --gray-100:     #e8f0d8;
  --gray-200:     #cfdebe;
  --gray-700:     #3d4a35;
  --gray-900:     #1a2214;
  --radius:       10px;
  --shadow:       0 4px 24px rgba(44,102,41,.10);
  --transition:   0.25s ease;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--lime-h); }

h1, h2, h3, h4 { font-weight: 700; color: var(--green-dark); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
section     { padding: 80px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--lime);
  color: var(--green-dark);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-h);
  border-color: var(--lime-h);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141,190,34,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,102,41,.3);
}

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime-h);
  margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo { height: 46px; width: auto; }

/* Nav */
nav ul { list-style: none; display: flex; gap: .15rem; align-items: center; }
nav li { position: relative; }
nav > ul > li > a {
  display: block;
  padding: .45rem .8rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
  white-space: nowrap;
}
nav > ul > li > a:hover,
nav > ul > li > a.active {
  color: var(--green);
  background: var(--gray-100);
}
.nav-cta {
  background: var(--lime) !important;
  color: var(--green-dark) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  padding: .5rem 1.35rem !important;
  margin-left: .4rem;
  /* hover animation */
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 128px;
  vertical-align: middle !important;
}
.nav-cta .btn-label {
  position: relative; z-index: 2;
  transition: transform .32s ease, opacity .32s ease;
  pointer-events: none;
}
.nav-cta .btn-arrow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transform: translateX(-115%); opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
  z-index: 2; white-space: nowrap; pointer-events: none;
}
.nav-cta .btn-fill {
  position: absolute; width: 8px; height: 8px;
  background: var(--lime-h); border-radius: 50%;
  top: 50%; left: 18%;
  transform: translate(-50%,-50%) scale(0);
  transition: transform .48s ease;
  z-index: 1; pointer-events: none;
}
.nav-cta:hover .btn-label     { transform: translateX(115%); opacity: 0; }
.nav-cta:hover .btn-arrow     { transform: translateX(0);    opacity: 1; }
.nav-cta:hover .btn-fill      { transform: translate(-50%,-50%) scale(28); }
.nav-cta:hover {
  color: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(141,190,34,.35);
}
/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .6;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border-radius: var(--radius);
  min-width: 190px;
  padding: .5rem;
  z-index: 200;
  border: 1px solid var(--gray-100);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: .6rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.dropdown li a:hover { background: var(--gray-50); color: var(--green); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 1rem;
    border-top: 1px solid var(--gray-100);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: .15rem; }
  nav > ul > li > a { padding: .75rem 1rem; }
  .has-dropdown > a::after { float: right; }
  .dropdown {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    margin-top: .25rem;
    padding-left: 1rem;
  }
  .has-dropdown.open .dropdown { display: block !important; }
  .nav-cta { margin-left: 0 !important; margin-top: .75rem; display: inline-flex !important; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 0;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/2024-09-15.webp') center/cover no-repeat;
  opacity: .28;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 100px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d5f0a0;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,.15); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--white); }
.hero-stat span   { font-size: .85rem; color: rgba(255,255,255,.72); }

/* ============ USP STRIP ============ */
.usp-strip { background: var(--green); padding: 22px 0; }
.usp-strip .container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
}
.usp-item i { color: var(--lime); font-size: 1.1rem; }

/* ============ ABOUT / OM LIBBER ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--lime);
  color: var(--green-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(141,190,34,.4);
  font-weight: 700;
}
.about-badge strong { display: block; font-size: 1.6rem; }
.about-badge span   { font-size: .8rem; }
.about-text .label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime-h);
  margin-bottom: .75rem;
}
.about-text h2 { margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.25rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .97rem;
  border-bottom: 1px solid var(--gray-100);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--lime-h); margin-top: .2rem; flex-shrink: 0; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(44,102,41,.15);
  border-color: var(--green-mid);
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--green);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green); color: var(--white); }
.service-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.service-card p  { font-size: .91rem; color: #6a7a60; }
.service-card a  { font-size: .88rem; font-weight: 600; color: var(--green); margin-top: .75rem; display: inline-block; }

/* ============ STEPS / FORLØB ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.step { text-align: center; padding: 1.5rem; }
.step-num {
  width: 52px; height: 52px;
  background: var(--lime);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(141,190,34,.3);
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .92rem; }

/* ============ TRUSTPILOT / ANMELDELSER ============ */
.reviews-section { background: var(--gray-50); }
.tp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.tp-score-block { display: flex; flex-direction: column; align-items: center; }
.tp-score-num { font-size: 4rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.tp-stars { font-size: 1.5rem; color: #00b67a; margin: .3rem 0; }
.tp-label { font-size: .9rem; color: #666; }
.tp-label a { color: var(--green); font-weight: 600; }
.tp-widget-wrap { max-width: 900px; margin: 0 auto 2rem; min-height: 120px; }

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(44,102,41,.12); }
.review-stars { color: #00b67a; font-size: 1rem; margin-bottom: .75rem; }
.review-text {
  font-size: .95rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.reviewer-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.reviewer-name   { font-weight: 700; font-size: .9rem; color: var(--gray-900); }
.reviewer-meta   { font-size: .78rem; color: #999; }
.reviewer-source { font-size: .78rem; color: #00b67a; font-weight: 600; }
.tp-logo-inline  { height: 18px; vertical-align: middle; }

/* ============ GENERHVERV BANNER ============ */
.generhverv-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.generhverv-banner h3 { color: white; font-size: 1.5rem; margin-bottom: .6rem; }
.generhverv-banner p  { color: rgba(255,255,255,.85); margin-bottom: 0; }
@media (max-width: 640px) {
  .generhverv-banner { grid-template-columns: 1fr; }
}

/* ============ PRICE SECTION ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(44,102,41,.18);
}
.price-card.featured::before {
  content: 'Mest populær';
  position: absolute;
  top: 1.25rem; right: -1.5rem;
  background: var(--lime);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: .35rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: .06em;
}
.price-name {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: .5rem;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: .25rem;
}
.price-amount span { font-size: 1rem; font-weight: 500; }
.price-sub {
  font-size: .83rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.price-features { list-style: none; margin: 0 0 2rem; }
.price-features li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .93rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features i { color: var(--lime-h); margin-top: .15rem; flex-shrink: 0; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .95rem; }
.price-table th {
  background: var(--green);
  color: white;
  padding: .8rem 1.1rem;
  text-align: left;
  font-size: .87rem;
  font-weight: 600;
}
.price-table th:last-child { text-align: right; }
.price-table td { padding: .75rem 1.1rem; border-bottom: 1px solid var(--gray-200); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--gray-50); }
.price-table .total-row td {
  font-weight: 700;
  background: var(--lime-light);
  border-top: 2px solid var(--lime);
}
.price-table td:last-child { text-align: right; font-weight: 600; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 90px 0;
  text-align: center;
  color: white;
}
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-details { list-style: none; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-details li:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-label { font-size: .77rem; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-value { font-weight: 600; color: var(--gray-900); }
.contact-value a { color: var(--green); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-900);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,102,41,.10);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.success-banner {
  display: none;
  background: var(--lime-light);
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .98rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: var(--transition);
  font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question i { color: var(--green); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-100);
}
.faq-answer p { margin-bottom: .6rem; }
.faq-item.open .faq-answer { display: block; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 70px 0;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: white; }

/* ============ INFO / HIGHLIGHT BOXES ============ */
.highlight-box {
  background: var(--lime-light);
  border-left: 4px solid var(--lime);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: .95rem; }
.info-banner {
  background: var(--lime-light);
  border: 1px solid var(--lime);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-banner i { color: var(--green); margin-top: .15rem; flex-shrink: 0; }
.info-banner p { margin: 0; font-size: .93rem; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.info-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200);
}
.info-box i { color: var(--green); font-size: 1.25rem; margin-bottom: .5rem; }
.info-box h4 { font-size: .92rem; margin-bottom: .3rem; }
.info-box p { font-size: .88rem; color: #6a7a60; }

/* Vilkår / terms */
.terms-section { background: var(--gray-50); border-radius: var(--radius); padding: 2rem; margin-top: 2rem; border: 1px solid var(--gray-200); }
.terms-section h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.terms-section ul, .terms-section ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.terms-section li { font-size: .9rem; color: var(--gray-700); margin-bottom: .4rem; line-height: 1.6; }
.terms-section p { font-size: .9rem; }

/* ============ GENERHVERV SIDE ============ */
.gen-packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.gen-contact-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0; }
.contact-option {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-option:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 10px 30px rgba(44,102,41,.12); }
.contact-option i { font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.contact-option h4 { margin-bottom: .5rem; font-size: 1rem; }
.contact-option p { font-size: .88rem; color: #6a7a60; margin-bottom: 1rem; }
.contact-option a { font-weight: 700; color: var(--green); font-size: .92rem; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-about { font-size: .9rem; margin-bottom: 1.25rem; line-height: 1.7; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: var(--transition);
}
.social-link:hover { background: var(--lime); color: var(--green-dark); }
.footer-col h4 { color: white; font-size: .95rem; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a  { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: rgba(255,255,255,.9); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ COOKIE BANNER ============ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--green-dark);
  color: rgba(255,255,255,.9);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 28px rgba(0,0,0,.22);
  display: none;
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: .88rem; min-width: 200px; line-height: 1.6; }
.cookie-text a { color: var(--lime); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: .6rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: inherit;
}
.cookie-btn-accept {
  background: var(--lime);
  color: var(--green-dark);
  border-color: var(--lime);
}
.cookie-btn-accept:hover { background: var(--lime-h); border-color: var(--lime-h); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.35);
}
.cookie-btn-reject:hover { border-color: white; color: white; }
#cookie-settings-btn {
  position: fixed;
  bottom: 1rem; left: 1rem;
  z-index: 9998;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  padding: .4rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  opacity: .65;
  transition: var(--transition);
  display: none;
  font-family: inherit;
}
#cookie-settings-btn:hover { opacity: 1; }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============ SKOLEVOGN SIDE ============ */
.car-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ============ TESTIMONIALS CAROUSEL ============ */
@keyframes scrollUp {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(0,-50%,0); }
}
.testimonials-cols {
  display: flex;
  gap: 1.25rem;
  max-height: 680px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom,transparent,black 14%,black 86%,transparent);
  mask-image: linear-gradient(to bottom,transparent,black 14%,black 86%,transparent);
}
.testimonial-col { flex: 1; min-width: 0; }
.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.col-1 .testimonial-track { animation: scrollUp 28s linear infinite; }
.col-2 .testimonial-track { animation: scrollUp 35s linear infinite; }
.col-3 .testimonial-track { animation: scrollUp 31s linear infinite; }
.testimonials-cols:hover .testimonial-track { animation-play-state: paused; }

.tc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 3px 16px rgba(44,102,41,.07);
  flex-shrink: 0;
}
.tc-stars { color: #00b67a; font-size: .88rem; margin-bottom: .6rem; }
.tc-text {
  font-size: .91rem; font-style: italic; line-height: 1.65;
  color: var(--gray-700); margin-bottom: 1rem;
}
.tc-reviewer { display: flex; align-items: center; gap: .65rem; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
}
.tc-name   { font-weight: 700; font-size: .87rem; color: var(--gray-900); }
.tc-source { font-size: .74rem; color: #00b67a; font-weight: 600; margin-top: 2px; }

@media (max-width: 700px) { .col-2,.col-3 { display: none; } }
@media (min-width: 701px) and (max-width: 1024px) { .col-3 { display: none; } }

/* ============ TILMELDING PRISOVERSIGT ============ */
.price-summary-strip {
  background: var(--lime-light);
  border-bottom: 2px solid var(--lime);
}
.price-summary-strip .container {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem 2rem; padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.ps-item { display: flex; align-items: center; gap: .45rem; }
.ps-icon { color: var(--green); font-size: 1rem; }
.ps-label { font-size: .88rem; color: var(--gray-700); }
.ps-val { font-weight: 700; color: var(--green-dark); font-size: .95rem; }
.ps-link {
  margin-left: auto; font-size: .85rem; font-weight: 700;
  color: var(--green); white-space: nowrap;
}
.ps-link:hover { color: var(--lime-h); }
.ps-divider { color: var(--gray-200); font-size: 1.2rem; }
@media (max-width: 700px) {
  .ps-divider { display: none; }
  .ps-link { margin-left: 0; width: 100%; }
}
@media (max-width: 768px) { .car-feature-grid { grid-template-columns: 1fr; } }

/* ============ HERO FADE-UP ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ha-1 { animation: fadeUp .7s .05s both ease-out; }
.ha-2 { animation: fadeUp .7s .18s both ease-out; }
.ha-3 { animation: fadeUp .7s .30s both ease-out; }
.ha-4 { animation: fadeUp .7s .42s both ease-out; }
.ha-5 { animation: fadeUp .7s .54s both ease-out; }
.ha-6 { animation: fadeUp .7s .66s both ease-out; }

/* ============ BENTO SERVICES GRID ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.bento-card {
  border-radius: 16px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,102,41,.14); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.row-2  { grid-row: span 2; }
.bento-card.has-photo {
  background-size: cover;
  background-position: center;
  color: white;
  border: none;
  min-height: 200px;
}
.bento-card.has-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,67,24,.88) 0%, rgba(44,102,41,.65) 100%);
}
.bento-card.has-photo > * { position: relative; z-index: 1; }
.bento-icon {
  width: 50px; height: 50px;
  background: var(--lime-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: .9rem;
  flex-shrink: 0;
}
.bento-card.has-photo .bento-icon { background: rgba(255,255,255,.18); color: var(--lime); }
.bento-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.bento-card p  { font-size: .88rem; color: #6a7a60; margin-bottom: .65rem; }
.bento-card.has-photo p  { color: rgba(255,255,255,.82); }
.bento-card a  { font-size: .86rem; font-weight: 700; color: var(--green); }
.bento-card.has-photo a  { color: var(--lime); }
.bento-card.has-photo h3 { color: white; }
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-card.span-4 { grid-column: span 3; }
  .bento-card.span-6 { grid-column: span 3; }
}
@media (max-width: 580px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2,.bento-card.span-3,.bento-card.span-4,.bento-card.span-6 { grid-column: span 2; }
}

/* ============ CAROUSEL PHOTO CARDS ============ */
.tc-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  height: 210px;
  position: relative;
}
.tc-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.tc-photo-card:hover img { transform: scale(1.04); }
.tc-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,67,24,.75));
  padding: .5rem .75rem;
  color: white;
  font-size: .75rem;
  font-weight: 600;
}

/* ============ CONCEPT 1: PILL/FLOATING NAV ============ */
.pill-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding .3s ease;
}
.pill-header.scrolled { padding: .5rem 0; }
.pill-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30,67,24,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: .55rem .55rem .55rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.logo-link-pill { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-pill { height: 36px; width: auto; filter: brightness(0) invert(1); }
.pill-header nav ul { gap: .05rem; }
.pill-header nav > ul > li > a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  padding: .4rem .75rem;
}
.pill-header nav > ul > li > a:hover,
.pill-header nav > ul > li > a.active {
  color: var(--lime);
  background: rgba(255,255,255,.1);
}
.pill-header .dropdown {
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,.12);
}
.pill-header .dropdown li a { color: rgba(255,255,255,.8); }
.pill-header .dropdown li a:hover { background: rgba(255,255,255,.08); color: var(--lime); }
.pill-header .nav-cta {
  background: var(--lime) !important;
  color: var(--green-dark) !important;
}

/* Pill nav: hero needs top padding so content isn't under fixed nav */
.hero-with-pill { padding-top: 90px; }

/* Pill nav mobile */
@media (max-width: 900px) {
  .pill-inner { border-radius: 12px; margin-left: .75rem; margin-right: .75rem; }
  .pill-header nav {
    position: absolute;
    top: 100%; left: .75rem; right: .75rem;
    background: var(--green-dark);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.1);
  }
  .pill-header nav > ul > li > a { color: rgba(255,255,255,.82); }
}

/* ============ CONCEPT 2: SPLIT HERO ============ */
.hero-split {
  min-height: 640px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}
.hero-split-text {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 120px 3.5rem 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split-text .container-left {
  max-width: 560px;
  margin-left: auto;
  padding-left: 1.25rem;
}
.hero-split-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-split-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-photo { height: 300px; position: relative; }
  .hero-split-text { padding: 60px 1.5rem; }
  .hero-split-text .container-left { max-width: 100%; margin: 0; padding: 0; }
}

/* ============ CONCEPT 2: HORIZONTAL SERVICE CARDS ============ */
.service-h-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-h-card {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  transition: .3s ease;
}
.service-h-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.service-h-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-h-card:hover img { transform: scale(1.05); }
.service-h-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,50,16,.9) 0%, rgba(20,50,16,.3) 55%, transparent 100%);
}
.service-h-content {
  position: relative; z-index: 2;
  padding: 1.75rem;
  color: white;
  width: 100%;
}
.service-h-content .bento-icon { background: rgba(255,255,255,.15); color: var(--lime); margin-bottom: .6rem; }
.service-h-content h3 { color: white; font-size: 1.15rem; margin-bottom: .35rem; }
.service-h-content p { color: rgba(255,255,255,.82); font-size: .88rem; margin-bottom: .65rem; }
.service-h-content a { color: var(--lime); font-weight: 700; font-size: .86rem; }
@media (max-width: 768px) {
  .service-h-grid { grid-template-columns: 1fr; }
  .service-h-card { height: 260px; }
}

/* ============ CONCEPT 3: MAGAZINE HERO ============ */
.hero-mag {
  background: var(--green-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-mag::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,190,34,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mag-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  padding: 130px 0 100px;
  position: relative; z-index: 1;
}
.hero-mag-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-mag-headline .accent { color: var(--lime); }
.hero-mag-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.hero-mag-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero-mag-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mag-photo { aspect-ratio: 16/9; }
  .hero-mag-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* ============ CONCEPT 3: EDITORIAL GRID ============ */
.editorial-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.editorial-card {
  border-radius: 16px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: .3s ease;
}
.editorial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,102,41,.14); }
.editorial-card.ec-feature {
  grid-column: span 1;
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.editorial-card.ec-feature::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,50,16,.92) 0%, rgba(20,50,16,.3) 60%, transparent 100%);
  border-radius: 16px;
}
.editorial-card.ec-feature > * { position: relative; z-index: 1; }
.editorial-card.ec-feature h3 { color: white; font-size: 1.4rem; }
.editorial-card.ec-feature p { color: rgba(255,255,255,.82); }
.editorial-card.ec-feature a { color: var(--lime); font-weight: 700; }
.editorial-right { display: flex; flex-direction: column; gap: 1.25rem; }
.editorial-card-sm {
  border-radius: 16px;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: .3s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.editorial-card-sm:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(44,102,41,.12); }
@media (max-width: 768px) {
  .editorial-grid-wrap { grid-template-columns: 1fr; }
  .editorial-card.ec-feature { grid-row: span 1; min-height: 280px; }
}

/* ============ PRISER: HORIZONTAL CARDS V2 ============ */
.price-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .price-cards-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .price-cards-row { grid-column: span 1; grid-template-columns: 1fr; } }
.price-card-v2 {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: .3s ease;
  display: flex;
  flex-direction: column;
}
.price-card-v2:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(44,102,41,.16); }
.price-card-v2.pcv2-featured { border-color: var(--green); }
.pcv2-header {
  padding: 2rem 2rem 1.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.price-card-v2.pcv2-featured .pcv2-header {
  background: var(--green-dark);
  border-bottom: none;
}
.pcv2-tag {
  font-size: .73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--lime-h); margin-bottom: .35rem;
}
.price-card-v2.pcv2-featured .pcv2-tag { color: var(--lime); }
.pcv2-name { font-size: 1.2rem; font-weight: 800; color: var(--green-dark); margin-bottom: .3rem; }
.price-card-v2.pcv2-featured .pcv2-name { color: white; }
.pcv2-price { font-size: 2.6rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.price-card-v2.pcv2-featured .pcv2-price { color: var(--lime); }
.pcv2-price span { font-size: 1rem; font-weight: 500; }
.pcv2-sub { font-size: .82rem; color: #888; margin-top: .2rem; }
.price-card-v2.pcv2-featured .pcv2-sub { color: rgba(255,255,255,.55); }
.pcv2-body { padding: 1.5rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.pcv2-feat { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.pcv2-feat li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .42rem 0; font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
}
.pcv2-feat li:last-child { border-bottom: none; }
.pcv2-feat i { color: var(--lime-h); margin-top: .15rem; flex-shrink: 0; }

/* ============ SKOLEVOGNEN: SIDE BY SIDE ============ */
.cars-side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.car-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: .3s ease;
}
.car-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(44,102,41,.15); }
.car-card-img { height: 240px; overflow: hidden; }
.car-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.car-card:hover .car-card-img img { transform: scale(1.04); }
.car-card-body { padding: 1.75rem; }
.car-card-tag {
  font-size: .73rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lime-h); margin-bottom: .35rem;
}
.car-card-body h2 { font-size: 1.2rem; margin-bottom: .6rem; }
.car-card-body p { font-size: .9rem; }
.car-card-body .check-list { margin: .75rem 0 0; }
.car-card-body .check-list li { font-size: .88rem; }
@media (max-width: 768px) {
  .cars-side-by-side { grid-template-columns: 1fr; }
}

/* ============ STATS COUNT-UP ============ */
.hero-stat strong[data-count-up],
[data-count-up] { display: block; }


/* ============================================================
   SCROLL STORY – Koncept 2
   ============================================================ */

.scroll-story-page { padding-top: 0; }

/* Header: transparent over hero, solid ved scroll */
.ss-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.ss-header .site-logo { filter: brightness(0) invert(1); transition: filter .35s ease; }
.ss-header nav a { color: rgba(255,255,255,.92); }
.ss-header nav a:hover { color: var(--lime); }
.ss-header .hamburger span { background: #fff; }

.ss-header.ss-header-solid {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.ss-header.ss-header-solid .site-logo { filter: none; }
.ss-header.ss-header-solid nav a { color: var(--gray-700); }
.ss-header.ss-header-solid .hamburger span { background: var(--gray-700); }
.ss-header.ss-header-solid .nav-cta { background: var(--green) !important; color: #fff !important; }

/* Chapter base */
.ss-chapter {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* --- KAP 1: HERO --- */
.ss-hero {
  min-height: 100vh;
  padding: 0;
  flex-direction: column;
  justify-content: center;
}
.ss-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.ss-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(14,35,12,.78) 0%, rgba(30,67,24,.55) 60%, rgba(0,0,0,.35) 100%);
}
.ss-hero-content {
  position: relative; z-index: 2;
  padding: 160px 1.25rem 120px;
  max-width: 760px;
}
.ss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(141,190,34,.18);
  border: 1px solid rgba(141,190,34,.4);
  color: #c8e87a;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .4rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.ss-hero-headline {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.ss-hero-headline span { color: var(--lime); }
.ss-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.ss-hero-btn { font-size: 1rem; padding: 1rem 2rem; }

/* Scroll hint animeret pil */
.ss-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  z-index: 2;
  animation: ss-hint-fade 2.5s ease-in-out infinite;
}
.ss-scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.55);
  border-bottom: 2px solid rgba(255,255,255,.55);
  transform: rotate(45deg);
}
@keyframes ss-hint-fade {
  0%, 100% { opacity: .45; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(5px); }
}

/* --- KAP 2: LIBBER + KUN 6 --- */
.ss-libber {
  background: var(--white);
  padding: 100px 0;
}
.ss-libber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ss-libber-photo-wrap { position: relative; }
.ss-libber-photo {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 560px;
  box-shadow: 0 16px 64px rgba(44,102,41,.18);
}
.ss-six-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--lime);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 32px rgba(141,190,34,.35);
}
.ss-six-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1; letter-spacing: -.04em;
}
.ss-six-label {
  font-size: .85rem; font-weight: 700; line-height: 1.3;
  text-transform: uppercase; letter-spacing: .06em;
}
.ss-six-highlight {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--lime-light);
  border-left: 4px solid var(--lime);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.ss-six-highlight-num {
  font-size: 2.6rem; font-weight: 900; color: var(--green);
  letter-spacing: -.03em; line-height: 1; white-space: nowrap;
}
.ss-six-highlight-text strong {
  display: block; font-size: 1rem; color: var(--green-dark); margin-bottom: .2rem;
}
.ss-six-highlight-text span { font-size: .88rem; color: var(--gray-700); line-height: 1.4; }

/* --- KAP 3: UNDERVISNINGEN / TIDSLINJE --- */
.ss-undervisning {
  background: var(--gray-50);
  padding: 100px 0;
  flex-direction: column;
  align-items: stretch;
}
.ss-timeline {
  display: flex; flex-direction: column; gap: 4rem;
  margin-top: 3.5rem; position: relative;
}
.ss-timeline::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lime) 0%, var(--green-mid) 100%);
  transform: translateX(-50%);
}
.ss-timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.ss-tl-right .ss-tl-content { order: 2; }
.ss-tl-right .ss-tl-photo   { order: 1; }
.ss-tl-left  .ss-tl-content { order: 1; }
.ss-tl-left  .ss-tl-photo   { order: 2; }
.ss-tl-photo img {
  width: 100%; border-radius: 16px;
  object-fit: cover; height: 280px; box-shadow: var(--shadow);
}
.ss-tl-step {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lime-h); margin-bottom: .5rem;
}
.ss-tl-icon {
  width: 48px; height: 48px;
  background: var(--green); color: var(--lime);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: .75rem;
}
.ss-tl-content h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.ss-tl-content p  { font-size: .95rem; color: var(--gray-700); }
.ss-tl-detail { margin-top: .75rem; font-size: .82rem; color: var(--green); font-weight: 600; }

/* --- KAP 4: REVIEWS --- */
.ss-reviews {
  background: var(--white);
  padding: 100px 0;
  flex-direction: column;
  align-items: stretch;
}

/* --- KAP 5: CTA --- */
.ss-cta-chapter {
  min-height: 70vh; padding: 0; justify-content: center;
}
.ss-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ss-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,35,12,.88) 0%, rgba(44,102,41,.72) 100%);
}
.ss-cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  padding: 80px 1.25rem;
}
.ss-cta-card {
  background: var(--white);
  border-radius: 24px; padding: 3rem 3.5rem;
  max-width: 600px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.ss-cta-card .label { margin-bottom: .5rem; }
.ss-cta-card h2 { margin-bottom: .75rem; }
.ss-cta-trust {
  display: flex; justify-content: center;
  gap: 1.5rem; margin-top: 1.75rem;
  font-size: .82rem; font-weight: 600; color: var(--gray-700);
  flex-wrap: wrap;
}
.ss-cta-trust span { display: flex; align-items: center; gap: .35rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .ss-libber-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ss-six-badge { bottom: 1rem; right: 1rem; }
  .ss-timeline::before { display: none; }
  .ss-timeline-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .ss-tl-right .ss-tl-content,
  .ss-tl-right .ss-tl-photo,
  .ss-tl-left  .ss-tl-content,
  .ss-tl-left  .ss-tl-photo  { order: unset; }
  .ss-tl-photo { order: -1; }
  .ss-tl-photo img { height: 220px; }
  .ss-cta-card { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
  .ss-hero-content { padding-top: 120px; }
  .ss-hero-headline { font-size: 2.2rem; }
  .ss-six-highlight { flex-direction: column; gap: .5rem; }
  .ss-cta-trust { gap: 1rem; font-size: .78rem; }
}

/* ---- Hold-tabel (tilmelding) ---- */
.hold-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.hold-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.hold-table thead {
  background: var(--green);
  color: #fff;
}
.hold-table th {
  padding: .85rem 1rem;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: left;
}
.hold-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.hold-table tbody tr:last-child td { border-bottom: none; }
.hold-table tbody tr { background: var(--white); transition: background .15s; }
.hold-table tbody tr:hover { background: var(--gray-50); }
.hold-table tbody tr.hold-row--open { background: #f8fdf2; }
.hold-table tbody tr.hold-row--open:hover { background: #eef8de; }

.hold-period {
  display: block;
  font-size: .78rem;
  color: #888;
  font-weight: 400;
  margin-top: .15rem;
}
.hold-time {
  display: block;
  font-size: .78rem;
  color: #888;
}

/* Badges */
.badge {
  display: inline-block;
  padding: .25rem .65rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.badge-full {
  background: #f0f0f0;
  color: #999;
}
.badge-open {
  background: var(--lime-light);
  color: var(--green);
}

/* Tilmeld-knap */
.btn-tilmeld {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--lime);
  color: var(--white);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-tilmeld:hover {
  background: var(--lime-h);
  transform: translateY(-1px);
}
.btn-tilmeld--disabled {
  background: #e0e0e0;
  color: #aaa;
  pointer-events: none;
  cursor: default;
}

/* Responsiv hold-tabel */
@media (max-width: 700px) {
  .hold-table thead { display: none; }
  .hold-table, .hold-table tbody, .hold-table tr, .hold-table td {
    display: block;
    width: 100%;
  }
  .hold-table tr {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
  }
  .hold-table td {
    padding: .3rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hold-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: .8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-right: .75rem;
    flex-shrink: 0;
  }
  .hold-table td:last-child {
    margin-top: .5rem;
    justify-content: flex-end;
  }
  .hold-table td:last-child::before { display: none; }
}
