@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Merriweather', serif; line-height: 1.2; color: #1a1a1a; }

:root {
  --green: #7ab32e;
  --green-dark: #6aa024;
  --gold: #c8b97a;
  --text: #333;
  --text-light: #555;
  --bg-light: #f5f5f3;
  --border: #e2e2de;
}

/* ── BUTTONS ── */
.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-green:hover { background: var(--green-dark); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* ── NAVBAR ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 65px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo { display: flex; align-items: center; }
.site-logo img { height: 44px; width: auto; }

#primary-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}
#primary-menu > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  transition: color 0.2s;
}
#primary-menu > li > a:hover,
#primary-menu > li.active > a { color: var(--green); }

#primary-menu .has-dropdown { position: relative; }
#primary-menu .has-dropdown > a::after { content: ' ▾'; font-size: 11px; }

#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  min-width: 200px;
  list-style: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 100;
}
#primary-menu .has-dropdown:hover .sub-menu { display: block; }
#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
#primary-menu .sub-menu li:last-child a { border-bottom: none; }
#primary-menu .sub-menu li a:hover { background: #f8f8f6; color: var(--green); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #333; transition: all 0.3s; }

/* ── HERO SLIDER ── */
#hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.50);
}

.hero-slide .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
  max-width: 720px;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 34px;
  font-family: 'Open Sans', sans-serif;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}
.hero-dot.active, .hero-dot:hover { background: #fff; border-color: #fff; }

/* ── FEATURE BOXES ── */
#features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: -65px auto 0;
  position: relative;
  z-index: 10;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.feature-box {
  padding: 42px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.feature-box:last-child { border-right: none; }

.feature-icon {
  width: 38px; height: 38px;
  border: 2px solid var(--gold);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box h3 { font-size: 15px; font-weight: 700; color: #222; margin-bottom: 12px; }
.feature-box p { font-size: 13px; color: #666; line-height: 1.75; }

/* ── ABOUT SECTION ── */
#about { padding: 110px 40px 70px; }
#about .about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#about .about-text h2 { font-size: 34px; font-weight: 700; margin-bottom: 18px; }
#about .about-text .sub { font-size: 16px; font-weight: 600; color: #444; margin-bottom: 14px; }
#about .about-text p { font-size: 14px; color: var(--text-light); line-height: 1.85; margin-bottom: 10px; }
#about .about-text .cta { margin-top: 30px; }
#about .about-img { display: flex; justify-content: center; }
#about .about-img img { max-width: 280px; object-fit: contain; }

/* ── INTRO (Om os / undersider) ── */
.page-intro { padding: 90px 40px 70px; }
.page-intro-inner { max-width: 760px; }
.page-intro h2 { font-size: 36px; font-weight: 700; margin-bottom: 22px; }
.page-intro p { font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }

/* ── CARDBOARD / HIGHLIGHT ── */
#highlight, .highlight-section {
  position: relative;
  padding: 90px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#highlight::before, .highlight-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 165, 128, 0.84);
}
.highlight-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.highlight-item { text-align: center; color: #fff; }
.highlight-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.highlight-item h3 { font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.highlight-item p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.94); }
.highlight-item .btn-green { margin-top: 28px; }

/* ── SOLUTIONS ── */
#solutions { padding: 90px 40px; text-align: center; }
#solutions h2 { font-size: 38px; font-weight: 700; margin-bottom: 18px; }
#solutions .solutions-intro { max-width: 680px; margin: 0 auto 50px; font-size: 14px; color: var(--text-light); line-height: 1.85; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.solution-card { position: relative; overflow: hidden; height: 220px; cursor: pointer; }
.solution-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.solution-card:hover img { transform: scale(1.06); }
.solution-card .card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.solution-card:hover .card-overlay { background: rgba(0,0,0,0.3); }
.solution-card .card-label { color: #fff; font-size: 14px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
.solution-card:hover .card-label { opacity: 1; transform: translateY(0); }

/* ── EXPERIENCE / STATS ── */
#experience {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#experience::before { content: ''; position: absolute; inset: 0; background: rgba(175,162,125,0.80); }
.experience-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.experience-title { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.stat-circle {
  position: relative;
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(160, 148, 110, 0.7);
}
.stat-c95 { background: conic-gradient(rgba(255,255,255,0.85) 0% 95%, rgba(255,255,255,0.2) 95% 100%); }
.stat-c85 { background: conic-gradient(rgba(255,255,255,0.85) 0% 85%, rgba(255,255,255,0.2) 85% 100%); }
.stat-c45 { background: conic-gradient(rgba(255,255,255,0.85) 0% 45%, rgba(255,255,255,0.2) 45% 100%); }
.stat-c98 { background: conic-gradient(#7ab32e 0% 98%, rgba(255,255,255,0.2) 98% 100%); }
.stat-number { position: relative; z-index: 1; font-family: 'Merriweather', serif; font-size: 30px; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.92); line-height: 1.6; text-align: center; max-width: 130px; }

/* ── TWO COLUMNS ── */
.two-col-section { padding: 90px 40px; background: #fff; }
.two-col-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-item { text-align: center; }
.two-col-icon { width: 60px; height: 60px; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.two-col-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.two-col-item p { font-size: 14px; color: var(--text-light); line-height: 1.85; }
.two-col-item .btn-green { margin-top: 24px; }

/* ── PROCESS STEPS ── */
#process { padding: 80px 40px 90px; text-align: center; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-title { font-size: 36px; font-weight: 700; margin-bottom: 14px; }
.process-sub { font-size: 14px; color: #666; margin-bottom: 60px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.process-icon {
  width: 68px; height: 68px;
  border: 2px solid var(--gold);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: #666; line-height: 1.7; max-width: 180px; margin: 0 auto; }

/* ── CONTACT FORM ── */
#contact {
  position: relative;
  padding: 90px 40px;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#contact::before { content: ''; position: absolute; inset: 0; background: rgba(175,162,125,0.86); }
.contact-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
#contact h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 40px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.97);
  color: #333;
  transition: background 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { background: #fff; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .form-submit { text-align: right; margin-top: 14px; }
.form-message { margin-top: 12px; color: #fff; font-size: 14px; min-height: 20px; }

/* ── FOOTER ── */
#site-footer { background: #fff; border-top: 1px solid #e8e8e8; padding: 55px 40px 30px; }
.footer-grid {
  max-width: 1100px; margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: start;
}
.footer-divider { width: 1px; background: #ddd; align-self: stretch; margin: 0 28px; }
.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-wrap img { height: 50px; width: auto; }
.footer-about p { font-size: 13px; color: #666; line-height: 1.75; }
.footer-contact-col { text-align: center; padding: 0 10px; }
.footer-contact-icon { width: 42px; height: 42px; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.footer-contact-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #333; margin-bottom: 8px; font-family: 'Open Sans', sans-serif; }
.footer-contact-col a { font-size: 13px; color: var(--green); }
.footer-contact-col p { font-size: 13px; color: #555; line-height: 1.65; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid #eee; text-align: center; font-size: 12px; color: #aaa; letter-spacing: 1px; text-transform: uppercase; }

/* ── HERO (undersider uden slider) ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; filter: brightness(0.50); }
.page-hero .hero-content { position: relative; z-index: 1; color: #fff; padding: 0 20px; max-width: 720px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #features { grid-template-columns: 1fr; margin-top: 0; }
  .feature-box { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-box:last-child { border-bottom: none; }
  #about .about-inner { grid-template-columns: 1fr; gap: 40px; }
  #about .about-img { display: none; }
  .highlight-inner { grid-template-columns: 1fr; gap: 50px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .two-col-inner { grid-template-columns: 1fr; gap: 50px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-divider { display: none; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .header-inner { padding: 0 20px; }
  #primary-menu {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 65px; left: 0; right: 0;
    background: #fff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
    padding: 16px 20px; gap: 0;
  }
  #primary-menu.open { display: flex; }
  #primary-menu > li { width: 100%; }
  #primary-menu > li > a { display: block; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
  #primary-menu .sub-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .menu-toggle { display: flex; }
  #hero, .page-hero { height: 320px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 12px; }
  #about, #solutions, #process, .page-intro, .two-col-section { padding: 60px 20px; }
  #site-footer { padding: 40px 20px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
