:root {
  --green: #1D9E75;
  --green-light: #E8F7F1;
  --green-dark: #0F6E52;
  --navy: #0F1923;
  --navy-mid: #1E2D3D;
  --text: #1a2332;
  --text2: #4a5568;
  --text3: #8492a6;
  --bg: #fafaf8;
  --white: #ffffff;
  --border: rgba(15,25,35,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.nav-link {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: 0.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); border-color: var(--border); }
.nav-link.is-active {
  color: var(--green-dark);
  background: var(--green-light);
  border-color: transparent;
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); }

/* BUTTONS */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(29,158,117,0.25); }
.btn-secondary {
  color: var(--text2);
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover { color: var(--navy); }

/* SECTION */
section { padding: 5rem 2rem; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text2);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.8;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  padding: 2rem;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--white);
}
.step:hover { border-color: var(--green); transform: translateY(-3px); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1.5px var(--green);
  color: transparent;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

/* BENEFITS / CARD GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s;
}
.benefit:hover { border-color: var(--green); box-shadow: 0 4px 24px rgba(29,158,117,0.08); }
.benefit-icon {
  width: 26px; height: 26px;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 100%; height: 100%; display: block; }
.benefit-icon--navy { color: var(--navy-mid); }
.benefit h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.benefit p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

/* ASYMMETRIC FEATURE LAYOUT (featured panel + plain list) */
.feature-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 760px) {
  .feature-layout { grid-template-columns: 1fr; }
}
.feature-featured {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.feature-featured .benefit-icon { width: 30px; height: 30px; margin-bottom: 1.5rem; }
.feature-featured h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-featured p {
  font-size: 0.9rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.75;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.feature-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list-item .benefit-icon { margin-bottom: 0; margin-top: 2px; flex-shrink: 0; }
.feature-list-item div h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.feature-list-item div p {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.65;
}

/* EXAMPLE / PROOF PANEL */
.example-panel {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.75rem;
}
.example-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.9rem;
}
.example-table { width: 100%; border-collapse: collapse; }
.example-table th, .example-table td {
  text-align: left;
  font-size: 0.8rem;
  padding: 0.5rem 0.6rem 0.5rem 0;
  font-weight: 400;
  color: var(--text2);
}
.example-table th {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 0.5px solid var(--border);
}
.example-table td { border-bottom: 0.5px solid var(--border); }
.example-table tr:last-child td { border-bottom: none; }

.ad-mock {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 340px;
}
.ad-mock-media {
  height: 130px;
  background: linear-gradient(135deg, var(--green-light), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ad-mock-body { padding: 1rem 1.1rem 1.25rem; }
.ad-mock-brand { font-size: 0.7rem; color: var(--text3); margin-bottom: 0.4rem; }
.ad-mock-headline { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.4; }
.ad-mock-body p { font-size: 0.8rem; color: var(--text2); font-weight: 300; margin-bottom: 0.9rem; }
.ad-mock-cta {
  display: inline-block;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
}

/* TIMELINE (alternate step layout) */
.timeline { margin-top: 3rem; position: relative; }
.timeline-step { position: relative; padding-left: 2.75rem; padding-bottom: 2.5rem; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: 11px; top: 26px; bottom: -2px;
  width: 1px;
  background: var(--border);
}
.timeline-step:last-child::before { display: none; }
.timeline-marker {
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-dark);
}
.timeline-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.timeline-step p {
  font-size: 0.875rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

/* FOUNDER NOTE */
.founder-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.75rem;
  max-width: 480px;
}
.founder-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.founder-note p {
  font-size: 0.825rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.55;
}
.founder-note strong { color: var(--navy); font-weight: 600; }

/* PRICING */
.pricing { background: var(--navy); color: white; }
.pricing .section-tag { color: rgba(29,158,117,0.9); }
.pricing .section-title { color: white; }
.pricing .section-body { color: rgba(255,255,255,0.6); }
.pricing-card {
  background: var(--navy-mid);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.price-val {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-val span { color: var(--green); font-size: 1.5rem; vertical-align: super; }
.price-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.price-features { list-style: none; }
.price-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  font-weight: 300;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: "✓"; color: var(--green); font-weight: 600; flex-shrink: 0; }
@media (max-width: 600px) {
  .pricing-card { grid-template-columns: 1fr; gap: 2rem; }
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
  max-width: 560px;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--green); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ARTICLE (guide-sider) */
.article { padding: 8rem 1.5rem 4rem; }
.article-inner { max-width: 700px; margin: 0 auto; }
.article h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.article h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 3rem 0 1.1rem;
}
.article p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text2);
  font-weight: 300;
  margin-bottom: 1.3rem;
}
.article strong { color: var(--navy); font-weight: 600; }
.article a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--green); }
.article h2 a { text-decoration-thickness: 1px; }
.article ol {
  margin: 0 0 1.3rem 0;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.article ol li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text2);
  font-weight: 300;
  padding-left: 0.3rem;
}
.article ol li::marker { color: var(--green-dark); font-weight: 600; }
.article-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
}
.article-cta .btn-primary {
  /* Slår .article a igennem (højere specificitet), så knapteksten forbliver hvid
     og uden understregning i stedet for at arve link-farven. */
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.55;
  padding: 1.1rem 2rem;
  max-width: 460px;
  text-align: left;
}
.article-cta .btn-primary:hover { color: #fff; }
@media (max-width: 640px) {
  .article { padding: 8rem 1.25rem 3rem; }
  .article p, .article ol li { font-size: 1rem; }
  .article-cta .btn-primary { display: block; text-align: center; }
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
  font-size: 0.825rem;
}
footer a { color: var(--green); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  /* Hele nav'en holdes på ÉN række på mobil, og kun link-gruppen scroller vandret.
     Ellers wrapper links og CTA til flere rækker, og den fixed nav lægger sig
     hen over sidernes indhold. */
  nav { padding: 0.85rem 1.25rem; gap: 0.6rem; flex-wrap: nowrap; }
  .nav-logo { font-size: 1.2rem; }
  .nav-links {
    gap: 0.35rem;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { padding: 0.5rem 0.75rem; font-size: 0.8rem; flex-shrink: 0; }
  .nav-cta { flex-shrink: 0; padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}
