/* ====================================================================
   FeederLog - delt design-system for forside + undersider.
   Etableret 2026-06-29 (hybrid-website-structure): forsiden forbliver
   en fokuseret one-page, men menu + undersider (Moduler, Priser,
   Kontakt) deler ÉT stylesheet, så alt ser ens ud.

   Farvesystem (samme som index.html):
   Blå = ro/troværdighed (vandmiljø). Grøn = KUN handling/succes/CTA.
   Bland dem aldrig.
   ==================================================================== */
:root {
  /* Primær / miljø */
  --ocean:        #1E6091;
  --ocean-deep:   #061524;
  --ocean-mid:    #0d3a5c;
  /* Aktiv / succes / CTA / tilvækst / besparelse */
  --green:        #69A752;
  --green-dark:   #538641;
  --green-soft:   #eef6ea;
  /* Neutrale */
  --ink:          #0f2230;
  --ink-soft:     #44586a;
  --paper:        #ffffff;
  --paper-tint:   #f4f8fb;
  --line:         #dce6ee;

  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 18px 50px rgba(6, 21, 36, .12);
  --shadow-soft:  0 8px 24px rgba(6, 21, 36, .08);
  --maxw:         1120px;
  --font:         system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: var(--ocean); }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ocean);
  background: var(--paper-tint);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: #bfe0ad; background: rgba(105,167,82,.14); border-color: rgba(105,167,82,.4); }

/* ---- Buttons: grøn = handling ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 1.05rem;
  padding: 16px 30px; border-radius: 999px;
  border: 0; cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-cta {
  background: var(--green); color: #fff;
  box-shadow: 0 10px 26px rgba(105,167,82,.42);
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #eaf4fb;
  border: 1.5px solid rgba(234,244,251,.45);
}
.btn-ghost:hover { border-color: #fff; }
/* Lys variant til hvid baggrund (undersider) */
.btn-outline {
  background: transparent; color: var(--ocean-deep);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ocean); }

/* ============ HEADER + MENU ============ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,21,36,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 40px; height: 30px; }
/* FeederLog vandret lockup i den mørke header → vist hvidt via filter. */
.brand .brand-logo { width: auto; height: 46px; filter: brightness(0) invert(1); }
.brand .name { color: #fff; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }

/* Hovedmenu - senior-venlig: store, statiske, forudsigelige links.
   Aldrig links begravet i brødtekst; topmenuen er "sikkerhedsnettet". */
.nav-menu { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-menu > a,
.nav-menu .nav-menu-top {
  color: #eaf4fb; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 10px 14px; border-radius: 10px;
  transition: background .12s ease, color .12s ease;
  white-space: nowrap;
}
.nav-menu > a:hover,
.nav-menu .nav-menu-top:hover,
.nav-menu > a:focus-visible,
.nav-menu .nav-menu-top:focus-visible {
  background: rgba(255,255,255,.10); color: #fff; text-decoration: underline; text-underline-offset: 4px;
}

/* Moduler-dropdown - ÉT niveau (ingen dybe undermenuer). "Moduler" er
   selv et rigtigt link til /moduler/, så musen aldrig kan "fare vild". */
.nav-menu .nav-menu-top {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #0b2236; border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  display: none; flex-direction: column; gap: 2px; z-index: 60;
}
/* Usynlig "bro" over 6px-mellemrummet mellem trigger og panel, så musen kan
   føres ned i dropdownen uden at hover mistes (ellers lukkede den ved gap). */
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: flex; }
.dropdown a {
  color: #eaf4fb; text-decoration: none; font-weight: 600; font-size: .98rem;
  padding: 11px 14px; border-radius: 9px; white-space: nowrap;
}
.dropdown a:hover, .dropdown a:focus-visible { background: rgba(105,167,82,.22); color: #fff; }
.dropdown a .soon {
  display: inline-block; margin-left: 8px; font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: #bfe0ad; background: rgba(105,167,82,.18);
  border: 1px solid rgba(105,167,82,.4); border-radius: 999px; padding: 2px 8px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex: 0 0 auto; }
.nav .btn { padding: 11px 22px; font-size: .95rem; }

/* Hamburger - kun mobil */
.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 42px; padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; background: #eaf4fb; border-radius: 2px; margin: 4px 0; }

/* ============ SECTIONS ============ */
section { padding: 84px 0; scroll-margin-top: 88px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--ocean-deep); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.tint { background: var(--paper-tint); }

/* ============ INNER PAGE HERO ============ */
.page-hero {
  background:
    linear-gradient(160deg, rgba(6,21,36,.92), rgba(13,58,92,.86)),
    linear-gradient(160deg, var(--ocean-deep), var(--ocean));
  color: #eaf4fb; padding: 56px 0 64px;
}
.breadcrumb { font-size: .92rem; color: #aecbe2; margin-bottom: 18px; }
.breadcrumb a { color: #aecbe2; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb span { color: #6f93b1; padding: 0 6px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.1rem); max-width: 20ch; }
.page-hero .lede { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: #dbe9f5; max-width: 60ch; margin-bottom: 28px; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
/* Header-layout: tekst til venstre, pris-kort til højre */
.page-hero-row { display: flex; gap: 40px; align-items: flex-start; justify-content: space-between; }
.page-hero-copy { flex: 1 1 auto; min-width: 0; }
.hero-price-card {
  flex: 0 0 auto; margin-top: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px; padding: 22px 28px; text-align: center;
  display: flex; flex-direction: column; gap: 4px; min-width: 190px;
}
.hero-price-card .hpc-amount { color: #fff; font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.hero-price-card .hpc-unit { color: #cfe2f0; font-size: 1rem; font-weight: 600; }

/* ============ FREMHÆVET ADGANGS-SPÆRRING (økonomi kun for ejeren) ============
   Bevidst atypisk: mørkt bånd med guld låse-badge midt på en ellers lys side. */
.access-lock-wrap { background: var(--paper-tint); }
.access-lock {
  position: relative; max-width: 860px; margin: 0 auto;
  background: linear-gradient(160deg, var(--ocean-deep), var(--ocean-mid));
  border: 2px solid #d8bd82; border-radius: 22px;
  padding: 54px 40px 44px; text-align: center;
  box-shadow: 0 20px 50px rgba(6,21,36,.22);
}
.access-lock .al-badge {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: #d8bd82; color: var(--ocean-deep);
  display: grid; place-items: center; box-shadow: 0 12px 26px rgba(216,189,130,.5);
}
.access-lock .al-badge svg { width: 32px; height: 32px; }
.access-lock h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 4px 0 12px; }
.access-lock p { color: #dbe9f5; font-size: 1.14rem; max-width: 60ch; margin: 0 auto; }
.access-lock strong { color: #f0dca8; }

/* ============ MODULE FEATURE ROWS ============ */
.feature-rows { display: grid; gap: 26px; max-width: 920px; margin: 0 auto; }
.feature-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; box-shadow: var(--shadow-soft);
}
.feature-row .ic {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark);
}
.feature-row .ic svg { width: 32px; height: 32px; }
.feature-row h3 { font-size: 1.3rem; color: var(--ocean-deep); margin: 0 0 8px; }
.feature-row p { color: var(--ink-soft); margin: 0; font-size: 1.06rem; }

/* Produkt-screenshot ("show, don't tell") - rigtigt skærmbillede i en ren
   ramme med billedtekst. Bærende visuelt element der BEVISER enkelheden. */
.shot {
  max-width: 940px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.shot img { width: 100%; height: auto; display: block; }
.shot figcaption {
  padding: 15px 22px; text-align: center; color: var(--ink-soft);
  font-size: .96rem; border-top: 1px solid var(--line); background: var(--paper-tint);
}

/* Modul-oversigt + generisk kort-grid */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 920px; margin: 0 auto; }
.link-card {
  position: relative; overflow: hidden; display: block; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.link-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--green); }
.link-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(6,21,36,.12); }
.link-card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark); margin-bottom: 18px;
}
.link-card .ic svg { width: 26px; height: 26px; }
.link-card h3 { font-size: 1.25rem; color: var(--ocean-deep); }
.link-card p { color: var(--ink-soft); margin: 0 0 14px; }
.link-card .more { color: var(--green-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.link-card.soon::before { background: var(--ocean); }
.link-card.soon .ic { background: #e9f1f7; color: var(--ocean); }
.soon-badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ocean); background: #e9f1f7;
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}

/* Punkt-liste med grønt flueben */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 720px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 1.06rem; }
.check-list .ck {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; margin-top: 2px;
}
.check-list .ck svg { width: 14px; height: 14px; }

/* Sektion-CTA (redundant navigation nede på siderne) */
.section-cta { text-align: center; margin-top: 46px; }

/* ============ CTA-BÅND (genbrugt fra forsidens trial-card) ============ */
.cta-band {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, var(--ocean-deep), var(--ocean));
  color: #eaf4fb; border-radius: 22px; padding: 56px 40px; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.cta-band p { color: #cfe2f0; font-size: 1.1rem; max-width: 50ch; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.phone-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.phone-link svg { width: 20px; height: 20px; }

/* ============ PRIS ============ */
.price-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 36px 34px 38px; box-shadow: var(--shadow);
}
.price-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--paper-tint); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 26px;
}
.pt-btn {
  font: inherit; font-weight: 700; font-size: .95rem;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: 9px 24px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.pt-btn.is-active { background: var(--paper); color: var(--ocean-deep); box-shadow: var(--shadow-soft); }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.pa-big { font-size: clamp(3rem, 9vw, 4.4rem); font-weight: 800; color: var(--ocean-deep); line-height: 1; letter-spacing: -.02em; }
.pa-unit { font-size: 1.1rem; font-weight: 700; color: var(--ink-soft); }
.price-meta { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 14px; min-height: 34px; }
.price-badge {
  display: inline-block; background: var(--green-soft); color: var(--green-dark);
  font-weight: 700; font-size: .9rem; padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(105,167,82,.35);
}
.price-total { font-size: .9rem; color: var(--ink-soft); }
.feature-list {
  list-style: none; margin: 26px auto 0; padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 13px; text-align: left; max-width: 370px;
}
.feature-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink); font-weight: 500; }
.fl-check {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; margin-top: 1px;
}
.fl-check svg { width: 13px; height: 13px; }
.fl-star { color: var(--ink-soft); font-weight: 700; }
.price-footnote { margin: 16px auto 0; max-width: 370px; text-align: left; font-size: .8rem; color: var(--ink-soft); }
.price-card .btn { margin-top: 26px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ocean-deep); font-size: 1.08rem;
  padding: 16px 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--ocean); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 16px; }

/* ============ KONTAKT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 980px; margin: 0 auto; align-items: start; }
.contact-methods { display: grid; gap: 18px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-soft); text-decoration: none; color: inherit;
}
.contact-method .ic {
  width: 50px; height: 50px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark);
}
.contact-method .ic svg { width: 26px; height: 26px; }
.contact-method b { display: block; color: var(--ocean-deep); font-size: 1.1rem; }
.contact-method span { color: var(--ink-soft); font-size: .98rem; }
.contact-form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 34px; box-shadow: var(--shadow-soft);
}
.contact-form label { display: block; font-weight: 700; color: var(--ocean-deep); margin: 0 0 6px; font-size: .98rem; }
.contact-form .field { margin-bottom: 18px; }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-tint);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--ocean); background: #fff; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin: 14px 0 0; }

/* ============ FOOTER ============ */
footer.site { background: var(--paper-tint); color: var(--ocean); padding: 30px 0; border-top: 1px solid var(--line); }
.foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.foot .brand .name { color: var(--ocean-deep); font-size: 1.05rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.foot-links a { color: var(--ocean); text-decoration: none; font-weight: 600; font-size: .95rem; }
.foot-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot small { color: var(--ocean); font-weight: 600; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #0b2236; border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 18px 20px; box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > a, .nav-menu .nav-menu-top { padding: 14px 12px; font-size: 1.06rem; border-radius: 10px; }
  .has-dropdown { width: 100%; }
  /* På mobil er dropdown'en altid foldet ud under "Moduler" - ingen hover */
  .dropdown { position: static; display: flex; min-width: 0; margin: 2px 0 6px 12px;
              background: transparent; border: 0; box-shadow: none; padding: 0; }
  .dropdown a { padding: 11px 12px; }
  .nav-actions { margin: 12px 0 0; flex-direction: column; align-items: stretch; }
  .nav .btn, .nav-actions .btn { width: 100%; justify-content: center; }

  section { padding: 60px 0; }
  /* Header-pris-kort under teksten på mobil, i fuld bredde */
  .page-hero-row { flex-direction: column; gap: 22px; }
  .hero-price-card { align-self: stretch; }
  .card-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 16px; }
  .feature-row .ic { width: 52px; height: 52px; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .page-hero .hero-actions .btn, .cta-actions .btn, .price-card .btn { width: 100%; justify-content: center; }
  .page-hero .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
}

/* ===== Flow-diagram (genbrugt fra forsiden, Uffe 2026-07-20) — cirkler +
   buede sammenløbende pile → samlet boks. Bruges på modul-sider. ===== */
.fd { display: flex; flex-direction: column; align-items: stretch; }
.fd-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fd-node { text-align: center; }
.fd-node .fd-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); margin: 0 auto 13px; }
.fd-node .fd-ic svg { width: 25px; height: 25px; }
.fd-node h3 { font-size: 1.14rem; color: var(--ocean-deep); margin: 0 0 8px; line-height: 1.2; }
.fd-node p { color: var(--ink-soft); margin: 0; font-size: .9rem; line-height: 1.45; }
.fd-circle {
  aspect-ratio: 1 / 1; border-radius: 50%;
  border: 1.5px solid rgba(105,167,82,.55); background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 19% 12% 7%; box-shadow: 0 12px 34px rgba(6,21,36,.07);
}
.fd-converge { width: 100%; margin: 2px 0 0; }
.fd-converge svg { width: 100%; height: auto; display: block; overflow: visible; }
.fd-arrow { display: grid; place-items: center; margin: 2px 0; }
.fd-arrow span { color: #98a6b3; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.fd-arrow-mobile { display: none; }
.fd-bottom { display: flex; justify-content: center; }
.fd-card {
  width: 100%; max-width: 480px; text-align: center;
  background: var(--paper); border: 1.5px solid var(--green); border-radius: var(--radius);
  padding: 30px 34px; box-shadow: 0 16px 40px rgba(105,167,82,.18);
}
.fd-card .fd-ic { margin: 0 auto 13px; }
/* Nøgletals-liste i økonomi-flowets bundkort: nummereret, venstrestillet tekst,
   men hele blokken centreret (kortet er text-align:center). */
.fd-card .fd-list {
  display: inline-block; text-align: left; margin: 10px auto 0; padding-left: 22px;
  color: var(--ink-soft); font-size: .9rem; line-height: 1.6;
}
.fd-card .fd-list li { margin: 2px 0; }
@media (max-width: 860px) {
  .fd-top { grid-template-columns: 1fr; gap: 22px; justify-items: center; }
  .fd-circle { width: 100%; max-width: 320px; }
  .fd-converge { display: none; }
  .fd-arrow-mobile { display: grid; }
}
