:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEBE5;
  --fg: #1C1C1C;
  --fg-muted: #6B6B6B;
  --accent: #1B4D3E;
  --accent-light: #2A6B55;
  --gold: #B8923A;
  --white: #FFFFFF;
  --border: rgba(27,77,62,0.12);
  --border-light: rgba(27,77,62,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }

/* ===== SHARED SECTION TYPOGRAPHY ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  max-width: 680px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-primary.btn-full { width: 100%; text-align: center; display: block; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-style: italic;
}
.hero-lede {
  font-size: 22px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 36px;
  line-height: 1.4;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  background: var(--accent);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
}
.trust-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SUBHERO ===== */
.subhero {
  background: var(--bg-alt);
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.subhero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subhero-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== OFFER / PRICING ===== */
.offer {
  background: var(--white);
  padding: 96px 48px;
}
.offer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.offer-intro {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  border-radius: 16px;
  padding: 40px 36px;
  border: 2px solid var(--border);
}
.pricing-card--main { background: var(--bg); }
.pricing-card--provision { background: var(--accent); border-color: var(--accent); }

.pricing-card-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-card--main .pricing-card-label { color: var(--gold); }
.pricing-card--provision .pricing-card-label { color: rgba(255,255,255,0.6); }

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.pricing-card--main .pricing-amount { color: var(--fg); }
.pricing-card--provision .pricing-amount { color: var(--white); }
.pricing-currency {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.pricing-card--main .pricing-desc { color: var(--fg-muted); }
.pricing-card--provision .pricing-desc { color: rgba(255,255,255,0.75); }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-list li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }
.pricing-card--main .pricing-list li { color: var(--fg-muted); }
.pricing-card--main .pricing-list li::before { color: var(--accent); }
.pricing-card--provision .pricing-list li { color: rgba(255,255,255,0.8); }
.pricing-card--provision .pricing-list li::before { color: rgba(255,255,255,0.6); }

.guarantee-box {
  background: #FEF9EE;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.guarantee-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.guarantee-text strong { display: block; font-size: 17px; color: var(--fg); margin-bottom: 8px; }
.guarantee-text p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.howitworks { background: var(--bg); padding: 96px 48px; }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { position: relative; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step-title { font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 12px; line-height: 1.35; }
.step-body { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ===== CREDIBILITY ===== */
.credibility { background: var(--white); padding: 96px 48px; }
.credibility-inner { max-width: 1100px; margin: 0 auto; }
.credibility-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.credibility-text p { font-size: 16px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 20px; }
.credibility-points {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 32px; border-top: 1px solid var(--border); padding-top: 28px;
}
.cred-point { display: flex; gap: 16px; align-items: flex-start; }
.cred-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cred-point strong { display: block; font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.cred-point span { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.aside-box { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; }
.aside-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 16px;
}
.aside-box p { font-size: 14px; color: var(--fg-muted); margin-bottom: 14px; line-height: 1.6; }
.aside-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.aside-box ul li { font-size: 14px; color: var(--fg); padding-left: 20px; position: relative; line-height: 1.5; }
.aside-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.aside-note {
  font-size: 13px; color: var(--fg-muted); font-style: italic;
  border-top: 1px solid var(--border); padding-top: 14px; margin-bottom: 0 \!important;
}

/* ===== CASE STUDIES ===== */
.casestudies { background: var(--bg-alt); padding: 96px 48px; }
.casestudies-inner { max-width: 1100px; margin: 0 auto; }
.casestudies-intro { font-size: 16px; color: var(--fg-muted); margin-bottom: 48px; max-width: 600px; line-height: 1.65; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.case-card { background: var(--white); border-radius: 14px; padding: 36px 28px; border: 1px solid var(--border); position: relative; }
.case-card--placeholder { opacity: 0.75; }
.case-placeholder-badge {
  display: inline-block; background: #FEF9EE; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 100px; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 20px;
}
.case-niche { font-size: 14px; font-weight: 600; color: var(--fg-muted); margin-bottom: 24px; letter-spacing: 0.3px; }
.case-metric-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.case-metric-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--fg); letter-spacing: -0.5px; }
.case-metric-label { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.case-quote-placeholder { font-size: 14px; color: var(--fg-muted); line-height: 1.6; font-style: italic; }
.cases-disclaimer { font-size: 14px; color: var(--fg-muted); text-align: center; max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 96px 48px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { padding: 28px 36px; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 15px; color: var(--fg-muted); line-height: 1.75; }

/* ===== CTA / BOOKING ===== */
.cta { background: var(--bg); padding: 96px 48px; }
.cta-inner { max-width: 860px; margin: 0 auto; }
.cta-headline-block { text-align: center; margin-bottom: 56px; }
.cta-subtext { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 560px; margin: 0 auto; }
.cta-form-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 44px; margin-bottom: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--fg); letter-spacing: 0.3px; }
.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--fg);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 16px; outline: none; transition: border-color 0.2s; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,107,107,0.5); }
.form-gdpr { font-size: 12px; color: var(--fg-muted); text-align: center; line-height: 1.5; }
.form-gdpr a { color: var(--accent); text-decoration: underline; }

.cta-divider {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; color: var(--fg-muted); font-size: 14px;
}
.cta-divider::before,
.cta-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.cta-start-now {
  text-align: center; padding: 36px;
  background: var(--bg-alt); border-radius: 14px; border: 1px solid var(--border);
}
.cta-start-now h3 { font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.cta-start-now p { font-size: 15px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.cta-start-note { font-size: 13px; color: var(--fg-muted); margin-top: 14px; margin-bottom: 0 \!important; }

.form-success-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); padding: 16px 32px;
  border-radius: 10px; font-size: 15px; font-weight: 600; z-index: 200;
  box-shadow: 0 8px 32px rgba(27,77,62,0.25);
}

/* ===== FOOTER ===== */
.footer { background: var(--fg); padding: 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 40px 48px 32px;
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: start;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); font-weight: 700; display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-legal { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-legal span { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-gdpr-note { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-gdpr-inner {
  max-width: 1100px; margin: 0 auto; padding: 20px 48px 24px;
  font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.65;
}
.footer-gdpr-inner strong { color: rgba(255,255,255,0.45); }

/* ===== OFFER CTA BLOCK ===== */
.offer-cta-block { text-align: center; margin-top: 40px; }
.offer-cta-note { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ===== TAK (THANK YOU) PAGE ===== */
.tak-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; background: var(--off-white, #f8f8f6); }
.tak-inner { max-width: 620px; width: 100%; background: var(--white); border: 1px solid var(--border, #e5e5e0); border-radius: 12px; padding: 56px 48px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.tak-icon { width: 64px; height: 64px; background: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 24px; }
.tak-headline { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; margin-bottom: 16px; color: var(--ink, #1a1a18); }
.tak-subtext { font-size: 17px; color: var(--muted, #666); line-height: 1.6; margin-bottom: 40px; }
.tak-next-steps { text-align: left; background: var(--off-white, #f8f8f6); border-radius: 8px; padding: 28px 32px; margin-bottom: 32px; }
.tak-next-steps h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: var(--ink, #1a1a18); }
.tak-steps-list { padding-left: 20px; margin: 0; }
.tak-steps-list li { font-size: 15px; color: var(--muted, #555); line-height: 1.65; margin-bottom: 12px; }
.tak-steps-list li strong { color: var(--ink, #1a1a18); }
.tak-contact { margin-bottom: 28px; font-size: 14px; color: var(--muted, #666); }
.tak-contact a { color: var(--ink, #1a1a18); text-decoration: underline; }
.tak-back-btn { display: inline-block; }

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

/* ===== SÅDAN VIRKER DET — PAGE SECTIONS ===== */
.svd-hero {
  background: var(--accent);
  padding: 80px 48px 72px;
}
.svd-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.svd-hero .section-label { color: rgba(255,255,255,0.55); }
.svd-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-style: italic;
}
.svd-hero-lede {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 620px;
}

.svd-section { padding: 96px 48px; }
.svd-bg-white { background: var(--white); }
.svd-bg-alt { background: var(--bg-alt); }

.svd-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svd-inner--narrow {
  max-width: 860px;
  margin: 0 auto;
}
.svd-intro-text {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 48px;
}

/* Criteria grid */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.criteria-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.criteria-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1;
}
.criteria-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.35;
}
.criteria-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Weekly report grid */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.report-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.report-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.report-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.report-content span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Guarantee detail layout */
.guarantee-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.gdm-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.gdm-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.gdm-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.gdm-block p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.gdm-block p:last-child { margin-bottom: 0; }
.svd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svd-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.svd-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #C0392B;
  font-weight: 700;
}

.gda-card {
  background: var(--accent);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 90px;
}
.gda-icon { font-size: 36px; margin-bottom: 12px; }
.gda-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.gda-terms { display: flex; flex-direction: column; gap: 14px; margin-bottom: 4px; }
.gda-term {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.gda-term:last-child { border-bottom: none; padding-bottom: 0; }
.gda-term-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.gda-term-val { font-size: 14px; font-weight: 600; color: var(--white); }

/* Example calc */
.example-calc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}
.ec-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.ec-headline {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
}
.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}
.ec-col-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.ec-rows { display: flex; flex-direction: column; gap: 0; }
.ec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--fg-muted);
}
.ec-row-total {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  border-bottom: none;
  padding-top: 14px;
  margin-top: 2px;
  border-top: 2px solid var(--border);
}
.ec-val { font-weight: 600; color: var(--fg); }
.ec-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0;
}

/* Process timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pt-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
}
.pt-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pt-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.pt-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 8px 0;
  min-height: 32px;
}
.pt-line-none { flex: 1; }
.pt-content {
  padding-bottom: 40px;
}
.pt-day {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.pt-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.pt-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== PROCESS CTA STRIP (landing page soft-conversion) ===== */
.process-cta-strip {
  background: var(--accent);
  padding: 72px 48px;
}
.process-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: center;
}
.pcs-divider {
  background: rgba(255,255,255,0.15);
  width: 1px;
  height: 100%;
  min-height: 100px;
  align-self: stretch;
}
.pcs-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 12px;
}
.pcs-headline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pcs-body {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.process-cta-strip .btn-primary {
  background: var(--white);
  color: var(--accent);
}
.process-cta-strip .btn-primary:hover { background: rgba(255,255,255,0.9); }
.process-cta-strip .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.process-cta-strip .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* SVD form banners */
.svd-success-banner {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}
.svd-error-banner {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 24px;
}

/* ===== EKSEMPEL RAPPORT PAGE ===== */
.er-example-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.er-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
}
.er-badge-note {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.er-section { padding: 80px 48px; }
.er-bg-white { background: var(--white); }
.er-bg-alt { background: var(--bg-alt); }
.er-inner { max-width: 1100px; margin: 0 auto; }
.er-intro-text { font-size: 17px; color: var(--fg-muted); line-height: 1.75; max-width: 680px; margin-bottom: 40px; }

/* Report header card */
.er-report-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.er-report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  gap: 20px;
}
.er-client-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.er-report-week { font-size: 13px; color: var(--fg-muted); }
.er-report-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.er-status-dot {
  width: 8px; height: 8px;
  background: #16a34a;
  border-radius: 50%;
}
.er-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 36px 32px;
  gap: 0;
}
.er-kpi { text-align: center; }
.er-kpi--divider { border-left: 1px solid var(--border); }
.er-kpi-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.er-kpi-num--gold { color: var(--gold); }
.er-kpi-label { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.er-kpi-sub { font-size: 12px; color: var(--fg-muted); }

/* Meeting cards */
.er-meetings-list { display: flex; flex-direction: column; gap: 24px; }
.er-meeting-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.er-meeting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.er-meeting-num { font-size: 13px; font-weight: 600; color: var(--fg-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.er-meeting-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.er-meeting-status--confirmed {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.er-meeting-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
}
.er-meeting-main { padding: 28px; border-right: 1px solid var(--border); }
.er-company-name { font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.er-contact-row { font-size: 14px; color: var(--fg-muted); margin-bottom: 12px; }
.er-meeting-datetime { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.er-qual-notes { background: var(--bg); border-radius: 10px; padding: 16px 20px; }
.er-qual-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.er-qual-notes p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin: 0; }
.er-meeting-aside { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.er-pipeline-val { background: var(--bg-alt); border-radius: 12px; padding: 20px; }
.er-pv-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--fg-muted); margin-bottom: 8px; }
.er-pv-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
.er-pv-note { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.er-recording-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.er-recording-link:hover { background: var(--bg-alt); }
.er-recording-note { font-size: 12px; color: var(--fg-muted); font-weight: 400; }

/* Funnel */
.er-funnel-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.er-funnel { display: flex; flex-direction: column; align-items: center; gap: 0; }
.er-funnel-step {
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  border-radius: 12px;
  position: relative;
}
.er-funnel-step--1 { background: var(--accent); }
.er-funnel-step--2 { background: var(--accent-light); width: 88%; }
.er-funnel-step--3 { background: #2e8b6b; width: 72%; }
.er-funnel-step--4 { background: #3da882; width: 56%; }
.er-funnel-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.er-funnel-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.er-funnel-pct { font-size: 11px; color: rgba(255,255,255,0.65); }
.er-funnel-arrow { font-size: 20px; color: var(--fg-muted); padding: 6px 0; }
.er-funnel-notes { display: flex; flex-direction: column; gap: 28px; }
.er-fnote-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}
.er-fnote-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.er-fnote-text { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 14px; }
.er-fnote-rows { display: flex; flex-direction: column; gap: 0; }
.er-fnote-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.er-fnote-row:last-child { border-bottom: none; }
.er-fnote-row--total { font-weight: 600; color: var(--fg); border-top: 2px solid var(--border); margin-top: 4px; padding-top: 12px; border-bottom: none; }
.er-fnote-val { font-weight: 600; color: var(--fg); }

/* Objections */
.er-objections-list { display: flex; flex-direction: column; gap: 20px; }
.er-objection-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.er-obj-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  min-width: 44px;
}
.er-obj-heading { font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 8px; line-height: 1.35; }
.er-obj-heard { font-size: 14px; color: var(--fg-muted); margin-bottom: 14px; line-height: 1.6; }
.er-obj-response { background: var(--bg); border-radius: 10px; padding: 16px 20px; }
.er-obj-response-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.er-obj-response p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin: 0; font-style: italic; }

/* Next week */
.er-nextweek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.er-nw-block {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.er-nw-icon { font-size: 28px; margin-bottom: 16px; }
.er-nw-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 14px; }
.er-nw-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.er-nw-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.er-nw-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Friday strip */
.er-friday-strip {
  background: var(--accent);
  padding: 36px 48px;
}
.er-friday-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.er-friday-icon { font-size: 28px; flex-shrink: 0; }
.er-friday-text {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.er-friday-text strong { color: var(--white); }

/* CTA section */
.er-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.er-cta-actions { display: flex; flex-direction: column; gap: 14px; }
.er-cta-note { font-size: 13px; color: var(--fg-muted); line-height: 1.5; text-align: center; }

/* ===== LEAD CAPTURE SECTION ===== */
.lead-capture {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.lead-capture-inner {
  max-width: 860px;
  margin: 0 auto;
}
.lead-capture-header {
  text-align: center;
  margin-bottom: 48px;
}
.lead-capture-headline {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.lead-capture-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.lead-capture-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
}
.lc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Honeypot — must be visually hidden but not display:none (some bots skip those) */
.lc-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}
.lc-optional {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}
.lc-char-hint {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
  display: block;
  margin-top: 4px;
}
.lc-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
}
.lc-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
}
.lc-success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.lc-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}
.lc-success p {
  font-size: 15px;
  color: var(--fg-muted);
}
.lc-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .credibility-grid { grid-template-columns: 1fr; gap: 40px; }
  .credibility-aside { max-width: 500px; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 36px; }
  .hero-headline { font-size: 36px; }
  .hero-lede { font-size: 18px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { display: block; text-align: center; }
  .subhero { padding: 48px 20px; }
  .subhero-text { font-size: 16px; }
  .offer { padding: 64px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; gap: 12px; }
  .howitworks { padding: 64px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .credibility { padding: 64px 20px; }
  .credibility-grid { grid-template-columns: 1fr; }
  .casestudies { padding: 64px 20px; }
  .cases-grid { grid-template-columns: 1fr; }
  .faq { padding: 64px 20px; }
  .faq-item { padding: 22px 20px; }
  .cta { padding: 64px 20px; }
  .cta-form-block { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .section-headline { font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; padding: 32px 20px 24px; gap: 24px; }
  .footer-legal { text-align: left; }
  .footer-gdpr-inner { padding: 16px 20px 20px; }
  /* Nav links mobile */
  .nav-links { gap: 14px; }
  .nav-link { display: none; }
  /* Process CTA strip mobile */
  .process-cta-strip { padding: 56px 20px; }
  .process-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pcs-divider { display: none; }
  .pcs-headline { font-size: 22px; }
  /* SVD page mobile */
  .svd-hero { padding: 56px 20px 48px; }
  .svd-hero-headline { font-size: 36px; }
  .svd-hero-lede { font-size: 16px; }
  .svd-section { padding: 64px 20px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .guarantee-detail-grid { grid-template-columns: 1fr; }
  .gda-card { position: static; }
  .ec-grid { grid-template-columns: 1fr; }
  .pt-step { grid-template-columns: 44px 1fr; gap: 16px; }
  /* Eksempel rapport mobile */
  .er-section { padding: 56px 20px; }
  .er-kpi-row { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; gap: 20px; }
  .er-kpi--divider:nth-child(2) { border-left: 1px solid var(--border); }
  .er-kpi--divider:nth-child(3) { border-left: none; border-top: 1px solid var(--border); padding-top: 20px; }
  .er-kpi--divider:nth-child(4) { border-top: 1px solid var(--border); padding-top: 20px; }
  .er-kpi-num { font-size: 36px; }
  .er-report-header { flex-direction: column; gap: 14px; padding: 20px; }
  .er-meeting-grid { grid-template-columns: 1fr; }
  .er-meeting-main { border-right: none; border-bottom: 1px solid var(--border); }
  .er-funnel-layout { grid-template-columns: 1fr; }
  .er-funnel-step--1, .er-funnel-step--2, .er-funnel-step--3, .er-funnel-step--4 { width: 100%; }
  .er-nextweek-grid { grid-template-columns: 1fr; }
  .er-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .er-friday-strip { padding: 28px 20px; }
  .er-friday-inner { flex-direction: column; gap: 12px; }
  .er-objection-card { flex-direction: column; gap: 16px; }
  /* Lead capture mobile */
  .lead-capture { padding: 64px 20px; }
  .lead-capture-headline { font-size: 28px; }
  .lead-capture-form-wrap { padding: 28px 20px; }
  .lc-row { grid-template-columns: 1fr; }
}
