/* A Solution – offentlig hjemmeside + rekrutterings-wizard */

/* Brand-font: Manrope (self-hostet, OFL-licens – ingen ekstern CDN/GDPR-tracking) */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/manrope-latin-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/manrope-latin-ext-variable.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --font-brand: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --navy: #213a4b;
  --navy-dark: #16252f;
  --purple: #4b2e83;
  --coral: #e35d52;
  --orange: #ed7d1f;
  --amber: #f2a922;
  --blue: #4db8d6;
  --teal: #719898;

  --bg: #faf7f0;
  --surface: #ffffff;
  --surface-2: #f4f1e9;
  --border: #e7e2d6;
  --text: #2b3a44;
  --muted: #7c8893;

  --radius: 14px;
  --shadow: 0 14px 40px rgba(33, 58, 75, 0.10);
  --shadow-sm: 0 4px 14px rgba(33, 58, 75, 0.08);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-brand);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--navy); }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.01em; }
img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: var(--navy); }
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--navy); }
.brand .logo-badge { width: 42px; height: 42px; border-radius: 11px; overflow: hidden; flex: none;
  background: #fbf7ee; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.brand .logo-badge img { width: 100%; height: 100%; object-fit: cover; object-position: center 33%;
  transform: scale(2.55); transform-origin: center 33%; }
.brand b { font-size: 18px; letter-spacing: 1.5px; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 3px; }
.nav a { text-decoration: none; color: var(--text); padding: 9px 12px; border-radius: 9px; font-weight: 600; font-size: 14.5px; white-space: nowrap;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease; }
.nav a:hover { background: var(--surface-2); }
.nav a.nav-active { color: var(--navy); background: var(--surface-2); box-shadow: inset 0 -3px 0 var(--navy); }
.nav a.nav-active:hover { background: #ece8df; }
.nav a.cta { position: relative; background: var(--navy); color: #fff; padding: 9px 18px 9px 22px; margin-left: 14px; white-space: nowrap;
  border: 2px solid var(--navy); animation: cta-glow 2.8s ease-in-out infinite; }
.nav a.cta::before { content: ''; position: absolute; left: -9px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 24px; background: var(--border); }
.nav a.cta::after { content: '→'; display: inline-block; margin-left: 7px; animation: cta-arrow 1.5s ease-in-out infinite; }
.nav a.cta:hover { background: var(--navy-dark); color: #fff; border-color: var(--navy-dark); }
.nav a.cta.cta-here { animation: none; border-color: rgba(255, 255, 255, .35); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
.nav a.cta.cta-here::after { content: none; }
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33, 58, 75, 0); }
  50% { box-shadow: 0 0 0 5px rgba(33, 58, 75, .14); }
}
@keyframes cta-arrow {
  0%, 100% { transform: translateX(0); opacity: .8; }
  50% { transform: translateX(4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nav a.cta { animation: none; }
  .nav a.cta::after { animation: none; }
}
.burger { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--navy); }

/* ---- Sprogvælger (placeret yderst til højre, adskilt fra nav) ---- */
.lang-switch { position: relative; margin-left: 12px; padding-left: 12px; border-left: 1px solid var(--border); }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--text); font-weight: 700; font-size: 13px;
  padding: 7px 11px; border-radius: 9px; cursor: pointer; line-height: 1; }
.lang-btn:hover { background: var(--surface); border-color: var(--navy); }
.lang-btn svg { width: 18px; height: 18px; flex: none; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; margin: 0; padding: 6px;
  list-style: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-sm); z-index: 60; display: none; }
.lang-switch.open .lang-menu { display: block; }
.lang-menu li { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  cursor: pointer; font-size: 14px; color: var(--text); }
.lang-menu li:hover { background: var(--surface-2); }
.lang-menu li.active { background: var(--navy); color: #fff; }
.lang-menu .lang-code { font-weight: 800; font-size: 12px; width: 24px; color: var(--muted); }
.lang-menu li.active .lang-code { color: #cfe0e8; }
.lang-menu .lang-name { font-weight: 600; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  padding: 12px 20px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: transform .05s, box-shadow .15s; }
.btn:hover { box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-primary:hover { background: #d96f12; box-shadow: 0 8px 22px rgba(237,125,31,.28); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* ---- Hero ---- */
/* Fuld-bredde hero: forside.png (blueprint + logo) som baggrund i hele skærmbredden,
   teksten lagt ovenpå til venstre – som på den gamle hjemmeside. */
.hero { position: relative; overflow: hidden;
  background: #fcf8ec url('/img/forside.png') no-repeat right center; background-size: contain; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #fcf8ec 0%, rgba(252,248,236,.85) 34%, rgba(252,248,236,0) 60%); }
.hero .wrap { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center;
  min-height: min(560px, 66vh); padding: 64px 22px; }
.hero .wrap > div { max-width: 600px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.1; margin: 0 0 18px; color: var(--navy); letter-spacing: -.5px; }
.hero p.lead { font-size: 19px; color: var(--muted); margin: 0 0 28px; max-width: 32em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
/* Taleboble-badge: "Dansk firma · dansk kontrakt · danske vilkår" */
.speech-badge { position: relative; display: inline-flex; align-items: center; gap: 9px;
  margin: 14px 0 32px; background: linear-gradient(135deg, var(--navy), #2d4c61); color: #fff;
  font-weight: 700; font-size: 14px; letter-spacing: .2px;
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(33,58,75,.20); }
.speech-badge .speech-badge-ic { width: 19px; height: 19px; color: var(--amber); flex: none; }
.speech-badge::after { content: ""; position: absolute; left: 22px; bottom: -6px;
  width: 14px; height: 14px; background: #2d4c61; clip-path: polygon(0 0, 100% 0, 50% 100%); }
/* CV-autoudfyld (upload/scan på trin 2) */
.cv-autofill { border: 1px dashed var(--blue); background: linear-gradient(180deg, rgba(77,184,214,.10), rgba(77,184,214,.04));
  border-radius: 14px; padding: 16px 16px 14px; margin: 4px 0 22px; transition: border-color .15s, background .15s, box-shadow .15s; }
.cv-autofill.drag-over, .cv-autofill.drop-prompt { border-color: var(--orange); background: rgba(255,152,56,.12);
  box-shadow: 0 0 0 3px rgba(255,152,56,.18); }
.cv-autofill.drop-prompt #cvDropBtn { border-color: var(--orange); background: rgba(255,152,56,.14); }
.cv-autofill-head { display: flex; gap: 11px; align-items: flex-start; }
.cv-autofill-head .svg-inline { width: 24px; height: 24px; color: var(--navy); flex: none; margin-top: 2px; }
.cv-autofill-head strong,
.cv-autofill-head .cv-autofill-title { display: block; color: var(--navy); font-size: 15px; font-weight: 500; }
.cv-autofill-head span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.cv-autofill-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.cv-autofill-actions .btn { gap: 8px; }
.cv-autofill-actions .btn .svg-inline { width: 17px; height: 17px; }
.cv-autofill-msg:not(:empty) { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.cv-autofill-msg.ok { color: #1c7a4a; font-weight: 600; }
.cv-autofill-msg.loading { color: var(--navy); }
input.autofilled, select.autofilled { background: #fffaf0; border-color: var(--amber); }
/* Logoet kommer fra hero-baggrunden på desktop – kortet vises kun på mobil. */
.hero-art { display: none; justify-content: center; align-items: center; }
.hero-art img { max-height: 320px; filter: drop-shadow(0 18px 30px rgba(33,58,75,.18)); }
/* Fuld-bredde foto-banner med overlay-tekst + CTA */
.photo-banner {
  position: relative;
  background-image: linear-gradient(90deg, rgba(20,32,43,.72) 0%, rgba(20,32,43,.45) 55%, rgba(20,32,43,.25) 100%), var(--banner-img);
  background-size: cover;
  background-position: center;
  margin: 56px 0;
}
.photo-banner-inner { padding: 96px 0; max-width: 620px; }
.photo-banner h2 {
  color: #fff; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1;
  margin: 0 0 28px; text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.btn.btn-on-photo {
  background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(3px);
}
.btn.btn-on-photo:hover { background: #fff; color: var(--navy, #213a4b); border-color: #fff; }
@media (max-width: 860px) {
  .photo-banner { margin: 36px 0; }
  .photo-banner-inner { padding: 64px 0; }
}

/* Hero-banner: brand-banner i et rundet kort (3:2 = ingen beskæring) */
.hero-art .hero-logo {
  width: 100%; max-height: none; aspect-ratio: 3 / 2; object-fit: cover; object-position: center;
  background: #fbf7ee; border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 18px 40px rgba(33,58,75,.12); padding: 0; filter: none;
}

.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700;
  color: var(--orange); margin: 0 0 10px; }

/* ---- Sections ---- */
section.block { padding: 72px 0; }
section.block.alt { background: var(--surface-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); margin: 6px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8d2c4; }
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 20px; }
.card p { margin: 0 0 10px; color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px; color: var(--navy);
  background: linear-gradient(135deg, #fff4e8, var(--surface-2));
  border: 1px solid rgba(33, 58, 75, 0.06); }
.card .ic svg { width: 26px; height: 26px; display: block; }

/* Proces-trin 1-2-3: nummer-cirkler der lyser op i rækkefølge + pile imellem */
.process .step { position: relative; }
.process .step-num { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-size: 22px; font-weight: 800; margin-bottom: 16px; background: var(--surface-2); color: var(--muted);
  border: 2px solid var(--border); transition: all .2s;
  animation: stepGlow 4.32s ease-in-out infinite; animation-delay: calc(var(--i) * 0.96s); }
@keyframes stepGlow {
  0%, 55%, 100% { background: var(--surface-2); color: var(--muted); border-color: var(--border);
    box-shadow: none; transform: translateY(0) scale(1); }
  18%, 33% { background: var(--blue); color: #fff; border-color: var(--blue);
    box-shadow: 0 10px 22px rgba(77,184,214,.45); transform: translateY(-4px) scale(1.06); }
}
.process .step-arrow { position: absolute; top: 36px; right: -22px; width: 30px; height: 30px; z-index: 2;
  display: grid; place-items: center; color: var(--border);
  animation: arrowGlow 4.32s ease-in-out infinite; animation-delay: calc(var(--i) * 0.96s + 0.48s); }
.process .step-arrow svg { width: 28px; height: 28px; }
@keyframes arrowGlow {
  0%, 55%, 100% { color: var(--border); transform: translateX(0); }
  18%, 33% { color: var(--blue); transform: translateX(5px); }
}
@media (max-width: 860px) { .process .step-arrow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .process .step-num, .process .step-arrow { animation: none; }
  .process .step-num { background: var(--blue); color: #fff; border-color: var(--blue); }
  .process .step-arrow { color: var(--blue); }
}
.svg-inline { width: 1.05em; height: 1.05em; vertical-align: -0.14em; margin-right: 7px; flex: none; }
.btn .svg-inline { margin: 0; }
.contact-card .ic svg { width: 22px; height: 22px; color: var(--navy); }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #cdd8df; padding: 50px 0 30px; margin-top: 40px; }
.site-footer a { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,.14); margin-top: 30px; padding-top: 18px;
  font-size: 13px; color: #9fb0ba; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-footer .social-link .svg-inline { width: 16px; height: 16px; margin-right: 6px; }

/* ---- Fra pladsen: historier + galleri ---- */
.story-grid { display: grid; gap: 28px; margin-bottom: 48px; }
.story-card { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr); gap: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.story-card:nth-child(even) .story-media { order: 2; }
.story-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.story-body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
.story-date { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.story-body h2 { margin: 0 0 14px; color: var(--navy); font-size: 1.35rem; line-height: 1.3; }
.story-body p { color: var(--text); margin: 0 0 12px; line-height: 1.65; }
.story-body p:last-child { margin-bottom: 0; }
.gal-section-title { margin: 0 0 18px; color: var(--navy); font-size: 1.5rem; }
.gal-section-sub { color: var(--muted); margin: -10px 0 22px; }

/* ---- Wizard (job.html) ---- */
.wizard { max-width: 760px; margin: 0 auto; padding: 40px 22px 70px; }
.wizard-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px; }
.steps { display: flex; gap: 6px; margin-bottom: 26px; flex-wrap: wrap; }
.steps .dot { flex: 1; min-width: 40px; height: 6px; border-radius: 4px; background: var(--border); }
.steps .dot.active { background: var(--orange); }
.steps .dot.done { background: var(--teal); }
.step h1, .step h2 { color: var(--navy); margin: 0 0 6px; font-size: 24px; }
.step .sub { color: var(--muted); margin: 0 0 22px; }

.field { margin-bottom: 16px; }
.field-narrow input { max-width: 7.5rem; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req { color: var(--coral); }

.choice { display: flex; gap: 12px; flex-wrap: wrap; }
.choice label { flex: 1; min-width: 130px; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; background: var(--bg); }
.choice input { width: auto; }
.choice label:hover { border-color: var(--blue); }

.upload-zone { border: 2px dashed var(--border); border-radius: 12px; padding: 26px; text-align: center; transition: border-color .15s, background .15s, box-shadow .15s;
  cursor: pointer; background: var(--bg); }
.upload-zone:hover { border-color: var(--orange); }
.upload-zone.drag-over { border-color: var(--orange); background: rgba(255,152,56,.08); box-shadow: 0 0 0 3px rgba(255,152,56,.16); }
.upload-zone .big { font-size: 30px; }
.file-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  background: var(--surface-2); padding: 8px 12px; border-radius: 20px; font-size: 13px; }

.consent-box { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.consent-box input { width: 20px; height: 20px; margin-top: 2px; }

.wizard-actions { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }

/* ---- CV-trin (valgfrit) – bløde, venlige farver ---- */
.cv-step-optional .cv-step-intro { line-height: 1.55; max-width: 52ch; }
.cv-step-optional .cv-optional-panel {
  background: linear-gradient(180deg, #f6faf8 0%, #f0f5f2 100%);
  border: 1px solid #d4e4dc;
  border-radius: 14px;
  padding: 18px 20px 16px;
  margin-bottom: 14px;
}
.cv-step-optional .cv-optional-lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #5f7168;
  font-weight: 400;
}
.cv-step-optional .cv-optional-field { margin-bottom: 14px; }
.cv-step-optional .cv-optional-field:last-child { margin-bottom: 0; }
.cv-step-optional .cv-soft-label {
  font-weight: 400;
  color: #5f7168;
  font-size: 14px;
}
.cv-step-optional .cv-step-skip { color: #8a9a92; margin: 0; }
.cv-step-optional .smart-upload {
  border-color: #c8d9d0;
  background: #fafcfb;
}
.cv-step-optional .smart-upload.drag-over,
.cv-step-optional .smart-upload.drop-prompt {
  border-color: #8fb8a8;
  background: #f0f7f3;
}
.cv-step-optional .smart-upload-actions .btn {
  background: #fff;
  border-color: #c8d9d0;
  color: #4a5c54;
}
.cv-step-optional .smart-upload-actions .btn:hover {
  border-color: #8fb8a8;
  background: #f6faf8;
}
.cv-step-optional textarea {
  background: #fafcfb;
  border-color: #d4e4dc;
}
/* ---- Nedtælling før spørgsmål (3-2-1) ---- */
.prep-countdown-screen {
  text-align: center;
  padding: 48px 24px 36px;
  max-width: 440px;
  margin: 0 auto;
}
.prep-countdown-screen .prep-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid #b8dfc8;
  background: linear-gradient(180deg, #f4fbf6 0%, #e8f5ec 100%);
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #5a9a72;
}
.prep-countdown-screen .prep-msg {
  margin: 0 0 20px;
  line-height: 1.55;
  color: #5f7168;
  font-size: 16px;
  font-weight: 400;
}
.prep-countdown-screen .prep-count-label {
  margin: 0 0 8px;
  color: #5f7168;
  font-size: 15px;
  font-weight: 400;
}
.prep-countdown-screen .prep-count-num {
  font-size: 56px;
  font-weight: 600;
  color: #5a9a72;
  line-height: 1;
  min-height: 64px;
}

/* Blød infopanel (erstatter gul kasse i job-wizard m.fl.) */
.info-soft, .notice, .consent-info, .quiz-next-hint {
  background: linear-gradient(180deg, #f6faf8 0%, #f0f5f2 100%);
  border: 1px solid #d4e4dc;
  border-radius: 12px;
  color: #5f7168;
  font-weight: 400;
  line-height: 1.55;
}
.notice, .consent-info {
  margin-bottom: 22px;
  padding: 16px 18px;
  font-size: 15px;
}
.info-soft--compact { margin: 0 0 10px; padding: 12px 14px; font-size: 14px; }
.notice-line { margin: 0 0 12px; }
.notice-line:last-child { margin-bottom: 0; }
.notice-label, .info-soft strong { color: #4a5c54; font-weight: 500; }
.notice strong { color: #4a5c54; font-weight: 500; }

.done-screen { text-align: center; padding: 20px 0; }
.done-screen .check { width: 74px; height: 74px; border-radius: 50%; background: var(--teal); color: #fff;
  font-size: 40px; display: grid; place-items: center; margin: 0 auto 20px; }

.pause-screen { text-align: center; padding: 48px 24px 36px; max-width: 420px; margin: 0 auto; }
.pause-screen .pause-ring { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 28px;
  border: 3px solid #c5dde6; background: linear-gradient(180deg, #f4fafc 0%, #e8f3f7 100%);
  display: grid; place-items: center; box-shadow: 0 8px 28px rgba(33, 58, 75, .06); }
.pause-screen .pause-ring span { font-size: 36px; color: var(--teal, #2a8fa8); line-height: 1; opacity: .85; }
.pause-screen h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(22px, 3vw, 28px); }
.pause-screen .sub { margin: 0 auto 32px; max-width: 34ch; line-height: 1.55; color: var(--muted); }
.pause-screen .btn-lg { min-width: 240px; }
.pause-screen--almost .pause-ring {
  border-color: #b8dfc8;
  background: linear-gradient(180deg, #f4fbf6 0%, #e8f5ec 100%);
  box-shadow: 0 8px 28px rgba(46, 158, 91, .08);
}
.pause-screen--almost .pause-ring span { color: #3a9d62; opacity: .9; }
.pause-screen--almost h2 { color: #1f5c3a; }
.pause-screen--almost .sub { color: #5a6b62; }
.pause-screen--calm .pause-ring--breathe {
  animation: pause-breathe 3s ease-in-out infinite;
  border-color: #b8d9e8;
  background: linear-gradient(180deg, #f4fafc 0%, #e8f4f8 100%);
}
@keyframes pause-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}
.pause-screen--calm .sub { margin-bottom: 20px; }
.pause-count-label {
  margin: 0 0 6px;
  font-size: 15px;
  color: #5f7168;
  font-weight: 400;
}
.pause-count-num {
  font-size: 48px;
  font-weight: 500;
  color: #5a9a72;
  line-height: 1;
  min-height: 56px;
  margin-bottom: 24px;
}
.btn-soft {
  background: #fff;
  border: 1px solid #c8d9d0;
  color: #4a5c54;
  font-weight: 400;
}
.btn-soft:hover { border-color: #8fb8a8; background: #f6faf8; }

.sched-screen { max-width: 520px; margin: 0 auto; }
.sched-hero { text-align: center; padding: 8px 12px 20px; }
.sched-ring { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  border: 3px solid #b8dfc8; background: linear-gradient(180deg, #f4fbf6 0%, #e8f5ec 100%);
  display: grid; place-items: center; box-shadow: 0 8px 28px rgba(46, 158, 91, .08); }
.sched-ring span { font-size: 30px; color: #3a9d62; line-height: 1; opacity: .9; }
.sched-hero h2 { margin: 0 0 10px; color: #1f5c3a; font-size: clamp(22px, 3vw, 28px); }
.sched-hero .sub { margin: 0 auto; max-width: 42ch; line-height: 1.55; color: #5a6b62; }
.sched-form { background: #fafcf9; border: 1px solid #d8e8dc; border-radius: 14px; padding: 18px 18px 22px; }
.sched-hint { margin: 0 0 16px; font-size: 14px; line-height: 1.5; color: #4a5c52; }
.sched-actions { text-align: center; margin-top: 18px; }
.slot-period-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

.sched-cal { margin-bottom: 16px; }
.sched-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.sched-cal-day {
  appearance: none;
  border: 1px solid #d0e4d8;
  border-radius: 12px;
  background: #fff;
  padding: 8px 4px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  transition: border-color .12s, background .12s, transform .08s;
  font: inherit;
  color: #2a4a38;
}
.sched-cal-day:hover:not(:disabled) { border-color: #6db88a; background: #f4fbf6; }
.sched-cal-day.today { outline: 2px solid #ed7d1f; outline-offset: 1px; }
.sched-cal-day.selected { border-color: #2e9e5b; background: #e8f5ec; }
.sched-cal-day.disabled,
.sched-cal-day:disabled {
  opacity: .38;
  cursor: not-allowed;
  background: #f3f5f4;
  border-color: #e2ebe6;
}
.sched-cal-dow { font-size: 11px; text-transform: capitalize; color: #6a7f72; font-weight: 600; }
.sched-cal-num { font-size: 18px; font-weight: 700; line-height: 1.1; }
.sched-cal-pick {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2e9e5b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.sched-cal-legend { font-size: 12px; color: #6a7f72; margin-top: 8px; text-align: center; }

.sched-choice { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.sched-choice-btn {
  appearance: none;
  border: 1px solid #d0e4d8;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #2a4a38;
  transition: border-color .12s, background .12s, box-shadow .12s;
}
.sched-choice-btn:hover { border-color: #6db88a; background: #f8fcf9; }
.sched-choice-btn.selected { border-color: #2e9e5b; background: #eef8f1; box-shadow: 0 0 0 1px #2e9e5b; }
.sched-choice-btn strong { display: block; font-size: 15px; margin-bottom: 4px; color: #1f5c3a; }
.sched-choice-btn span { display: block; font-size: 13px; line-height: 1.45; color: #5a6b62; }
.sched-mode-panel { margin-top: 4px; }
.sched-flex-text { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: #4a5c52; text-align: center; }
.sched-change { text-align: center; margin-top: 14px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
@media (max-width: 480px) {
  .sched-cal-days { gap: 4px; }
  .sched-cal-day { padding: 6px 2px 8px; border-radius: 10px; }
  .sched-cal-num { font-size: 16px; }
}

.iv-tabs { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.iv-tab {
  border: 1px solid #dde3ec;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  cursor: pointer;
  color: #1f3a5f;
}
.iv-tab.active { background: #1f3a5f; color: #fff; border-color: #1f3a5f; }
.iv-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.iv-cal-cell {
  min-height: 52px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  font-size: 13px;
}
.iv-cal-cell.off { background: #f5f7fa; opacity: .55; }
.iv-cal-cell.ferie { background: color-mix(in srgb, #4db8d6 14%, #fff); border-color: #b8dce8; }
.iv-cal-cell.today { outline: 2px solid #ed7d1f; }
.iv-cal-cell .iv-cal-day { font-weight: 700; color: #1f3a5f; }
.iv-cal-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.iv-cal-events { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.iv-cal-event {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  background: #fafbfc;
  font-size: 14px;
}

.lang-bar { display: flex; align-items: center; gap: 8px; justify-content: flex-end; margin-bottom: 18px; }
.lang-bar select { padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%);
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 10px; box-shadow: var(--shadow);
  z-index: 100; max-width: 90vw; }
.toast.error { background: var(--coral); }
.hidden { display: none !important; }

/* ---- Hero photo ---- */
.hero-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--surface-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: #eaf6ef; color: #1f7a45;
  border: 1px solid #bfe3cd; padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }

/* ---- Trust badges ---- */
.trust { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; padding: 28px 0; }
.trust img { height: 38px; width: auto; opacity: .85; filter: grayscale(.2); }
.trust .t-label { color: var(--muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* ---- Stat band ---- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-band .num { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--orange); line-height: 1; }
.stat-band .lbl { color: var(--muted); margin-top: 8px; font-size: 14px; }

/* ---- Checklist ---- */
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--purple)); color: #fff; border-radius: 18px;
  padding: 44px; text-align: center; }
.cta-band h2 { color: #fff; margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); }
.cta-band p { color: #d7e0e6; margin: 0 0 22px; font-size: 17px; }
.cta-band .btn { margin: 0 6px 8px; }

/* ---- Page hero (sub pages) ---- */
.page-hero { background: radial-gradient(700px 300px at 80% -40%, #fff, var(--bg)); padding: 56px 0 10px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); color: var(--navy); margin: 8px 0 10px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 44em; margin: 0; }
.crumb { font-size: 13px; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }

/* ---- Prose ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { color: var(--navy); margin: 32px 0 10px; }
.prose p { color: var(--text); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); }
.contact-card .line { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.contact-card .line:last-child { border-bottom: 0; }
.contact-card .ic { font-size: 20px; width: 30px; }

@media (max-width: 860px) {
  /* På mobil droppes fuld-bredde-baggrunden, og banneret vises som et kort over teksten,
     så logoet ikke beskæres. */
  .hero { background-image: none; }
  .hero::before { display: none; }
  .hero .wrap { min-height: auto; padding: 28px 22px 48px; }
  .hero .wrap > div { max-width: none; }
  .hero-art { display: flex; order: -1; margin-bottom: 22px; }
  .hero-art img { max-height: 200px; }
  .hero-art .hero-logo { max-height: none; }
  .grid-3, .grid-2, .site-footer .cols, .stat-band, .contact-grid, .story-card { grid-template-columns: 1fr; }
  .story-card:nth-child(even) .story-media { order: 0; }
  .story-media img { min-height: 220px; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 22px; }
  .nav a.cta { margin-left: 0; margin-top: 6px; padding-left: 18px; align-self: stretch; text-align: center; }
  .nav a.cta::before { display: none; }
  .burger { display: block; }
  .row2 { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 20px; }
  .lang-switch { align-self: flex-start; }
  .lang-menu { position: static; box-shadow: none; margin-top: 6px; min-width: 0; width: 100%; }
}

/* ---- Sprogniveauer ---- */
.lang-levels { display: flex; flex-direction: column; gap: 10px; }
.lang-row {
  display: grid; grid-template-columns: minmax(72px, 1fr) 1fr 1fr; gap: 8px 10px; align-items: center;
  background: var(--surface-2, #faf7f0); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px;
}
.lang-row .lang-name { font-weight: 700; color: var(--navy); }
.lang-pick { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); flex: 1; min-width: 0; }
.lang-pick select { padding: 6px 10px; border: 1px solid var(--border); border-radius: 8px; background: #fff; min-width: 0; width: 100%; max-width: 220px; font-size: 13px; }
@media (max-width: 520px) {
  .lang-row { grid-template-columns: 1fr 1fr; }
  .lang-row .lang-name { grid-column: 1 / -1; }
}
.lang-hint { font-size: 13px; line-height: 1.45; }

/* ---- Kørekort-vælger (grafiske kategori-chips) ---- */
.lic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 10px; }
.lic-chip { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 6px;
  transition: border-color .12s, background .12s, transform .06s; font: inherit; }
.lic-chip:hover { border-color: var(--orange); }
.lic-chip:hover .lic-icon { color: var(--orange); }
.lic-chip:active { transform: scale(.97); }
.lic-chip .lic-icon { display: flex; align-items: center; justify-content: center; gap: 1px; height: 36px; color: var(--navy); }
.lic-chip .lic-svg { width: 36px; height: 36px; }
.lic-chip .lic-icon.combo .lic-svg { width: 28px; height: 28px; }
.lic-chip .lic-icon .lic-svg.tr { width: 22px; height: 22px; margin-left: -2px; }
.lic-chip .lic-cat { font-weight: 700; font-size: 13px; color: var(--navy); }
.lic-chip.selected .lic-icon { color: var(--orange); }
.lic-chip.selected { border-color: var(--orange); background: #fff4e8;
  box-shadow: 0 0 0 2px rgba(237,125,31,.18) inset; }

/* ---- Faglige kompetencer (projektleder/konsulent) ---- */
.pm-panel { margin-top: 18px; padding-top: 14px; border-top: 2px solid var(--border); }
.pm-section-title { color: var(--navy); font-size: 17px; margin: 20px 0 8px; }
.pm-section-title:first-child { margin-top: 0; }
.pm-lang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 8px; }
.pm-lang-grid label { display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--navy); }
.pm-lang-grid select { padding: 10px; border: 1px solid var(--border); border-radius: 10px; }
.choice-wrap { flex-wrap: wrap; gap: 8px 14px; }
.industry-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.industry-row { display: grid; grid-template-columns: 1fr 90px 1fr; gap: 10px; align-items: center; }
.industry-row .ind-check { font-size: 14px; }
.industry-row .ind-years, .industry-row .ind-other { padding: 10px; border: 1px solid var(--border); border-radius: 10px; }
.industry-row .ind-other.hidden { display: none; }
.geo-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-chip { padding: 8px 14px; border: 1px solid var(--border); border-radius: 20px; background: #fff; cursor: pointer; font-size: 14px; }
.geo-chip.selected { border-color: var(--orange); background: #fff4e8; color: var(--navy); font-weight: 600; }
.cert-list { display: flex; flex-direction: column; gap: 8px; }
.cert-row input { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; }
.pm-doc-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.comp-list { display: flex; flex-direction: column; gap: 8px; }
.comp-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.comp-row .comp-name { flex: 1; min-width: 160px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit; }
.comp-row .comp-level, .comp-row .comp-years { width: 72px; padding: 11px 8px; border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text); font-size: 15px; font-family: inherit; }
.comp-row .comp-name:focus, .comp-row .comp-level:focus, .comp-row .comp-years:focus { outline: 2px solid var(--blue); border-color: var(--blue); }

/* ---- Quiz-timer (nedtælling pr. spørgsmål) ---- */
.quiz-timer { position: relative; height: 8px; background: #eee; border-radius: 6px; margin: 4px 0 26px; }
.quiz-timer-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 100%; background: var(--orange, #ed7d1f);
  border-radius: 6px; transition: width 1s linear; }
.quiz-timer-bar.low { background: #d9534f; }
.quiz-timer-num { position: absolute; right: 2px; top: 12px; font-size: 12px; font-weight: 700; color: var(--muted); }
.quiz-next-hint { margin: 0 0 12px; padding: 10px 14px; font-size: 14px; }
.quiz-next-hint .quiz-tip { display: block; margin-top: 8px; font-size: 13px; color: #6a7f76; }

/* ---- Validering: blink på manglende felt ---- */
@keyframes field-miss-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0); }
  50% { box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.45); }
}
.field.field-miss, .consent-box.field-miss {
  animation: field-miss-pulse 0.55s ease 3;
  border-radius: 12px;
}
.field.field-miss input, .field.field-miss select, .field.field-miss textarea,
.field.field-miss .choice label:first-of-type {
  outline: 2px solid #d9534f;
  outline-offset: 2px;
}

/* ---- Layout + consent ---- */
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-grid-2 { grid-template-columns: 1fr; } }
.check-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); cursor: pointer; }
.avail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; margin-bottom: 16px; }
.avail-grid .field { margin: 0; }
.avail-now-field { display: flex; align-items: flex-end; min-height: 100%; padding-bottom: 2px; }
.discipline-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.self-emp-field .choice { margin-bottom: 0; }
.self-emp-years { margin-top: 12px; max-width: 200px; }
.self-emp-years label { display: block; margin-bottom: 6px; }
.pm-cert-hint { margin: 4px 0 10px; }
@media (max-width: 560px) { .avail-grid { grid-template-columns: 1fr; } }
.consent-info { margin-bottom: 16px; }
.consent-info p { margin: 0; font-weight: 400; }
.consent-info-lead { margin-bottom: 8px !important; color: #4a5c54; font-weight: 500; }
.consent-hint { color: #c0392b; font-size: 14px; margin: 10px 0 0; font-weight: 600; }
.consent-hint.hidden { display: none; }
#stepConsent.consent-pending .consent-box { border-color: #e8b4b4; background: #fff9f9; }
.consent-box.consent-ok { border-color: #8fd19e; background: #f4fff6; }
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; background: rgba(33, 58, 75, .45);
}
.modal.hidden { display: none !important; }
.modal-card {
  background: var(--surface); border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow); width: 100%; max-width: 420px;
}
.modal-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.comp-head { display: flex; gap: 10px; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; padding: 0 2px; }
.comp-head-name { flex: 1; min-width: 160px; }
.comp-head-level, .comp-head-years { width: 72px; text-align: center; }
.comp-add-btn { margin: 8px 0 16px; }

/* ---------- Kandidat-kort polish (mkt1) ----------
   Tilføjende lag oven på de kort-styles der bor inline i kandidater.html.
   site.css indlæses FØR sidens inline <style>, så vi rører kun egenskaber
   (transition/hover/focus) som de inline-regler ikke sætter – ingen konflikt. */
.cand-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.cand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8d2c2; }
.cand-card.is-expanded { box-shadow: var(--shadow); }
.cand-more-btn:focus-visible,
.cand-card .btn:focus-visible,
.cand-card a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 6px; }
@media (hover: none) { .cand-card:hover { transform: none; } }
@media (prefers-reduced-motion: reduce) { .cand-card { transition: none; } .cand-card:hover { transform: none; } }

/* ---------- Timeregistrering kundedemo (timepres1) ---------- */
.time-demo-page .site-header { position: sticky; }
.time-demo-locked .site-header,
.time-demo-locked main,
.time-demo-locked .site-footer { display: none; }
.time-pin-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 78% 12%, rgba(77,184,214,.22), transparent 28%),
    linear-gradient(135deg, #fcf8ec 0%, #f5efe2 60%, #eef6f7 100%);
}
.time-pin-gate[hidden] { display: none; }
.time-pin-card {
  width: min(460px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(33,58,75,.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.time-pin-card h1 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 7vw, 44px);
}
.time-pin-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.time-pin-card label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}
.time-pin-card input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  font-size: 18px;
  background: #fff;
}
.time-pin-card .btn { width: 100%; }
.time-pin-error {
  min-height: 20px;
  margin: 10px 0 0 !important;
  color: #c0392b !important;
  font-weight: 800;
}
.time-demo-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(77,184,214,.20), transparent 28%),
    linear-gradient(135deg, #fcf8ec 0%, #f5efe2 62%, #eef6f7 100%);
  border-bottom: 1px solid var(--border);
}
.time-demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 34px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.time-demo-hero h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}
.time-demo-hero .lead {
  margin: 0 0 28px;
  max-width: 680px;
  color: #62727f;
  font-size: 19px;
}
.time-demo-snapshot {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(33,58,75,.12);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 22px;
}
.snapshot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.snapshot-top strong { color: var(--navy); font-size: 28px; }
.snapshot-label { color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.snapshot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
}
.snapshot-row strong { color: var(--navy); }
.snapshot-row strong.ok { color: #1c7a4a; }
.time-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.time-flow-card,
.time-person-card,
.time-approval-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.time-flow-card { position: relative; overflow: hidden; }
.time-flow-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: .85;
}
.time-flow-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(237,125,31,.14), rgba(77,184,214,.12));
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
}
.time-flow-icon .svg-inline { width: 25px; height: 25px; }
.time-flow-card h3,
.time-person-card h3,
.time-approval-card h3 { margin: 0 0 8px; color: var(--navy); }
.time-flow-card p,
.time-person-card p,
.time-approval-card p { margin: 0; color: var(--muted); }
.time-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.screen-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.screen-demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.screen-demo-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.screen-demo-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.screen-demo-head strong {
  color: var(--navy);
  text-align: right;
}
.screen-demo-card p {
  margin: 16px 0 0;
  color: var(--muted);
}
.mock-phone,
.mock-desktop {
  background: #f7f3ea;
  border: 1px solid #ded7c8;
  border-radius: 20px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.mock-phone {
  max-width: 390px;
  margin: 0 auto;
}
.mock-desktop {
  min-height: 100%;
}
.mock-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.mock-app-top strong { font-size: 15px; }
.mock-app-top span {
  color: #cfe0e8;
  font-size: 13px;
  font-weight: 700;
}
.mock-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 0 0 12px;
}
.mock-tab-input { position: absolute; opacity: 0; pointer-events: none; }
.mock-tabs label,
.mock-tabs span {
  flex: 1 1 auto;
  min-width: max-content;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 11.5px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.mock-tabs label:hover { border-color: var(--navy); color: var(--navy); }
.mock-tabs span.on {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.mock-panel { display: none; }
#emp-tab-week:checked ~ .mock-tabs label[for="emp-tab-week"],
#emp-tab-supply:checked ~ .mock-tabs label[for="emp-tab-supply"],
#emp-tab-docs:checked ~ .mock-tabs label[for="emp-tab-docs"],
#emp-tab-msg:checked ~ .mock-tabs label[for="emp-tab-msg"],
#emp-tab-tasks:checked ~ .mock-tabs label[for="emp-tab-tasks"],
#fm-tab-approve:checked ~ .mock-tabs label[for="fm-tab-approve"],
#fm-tab-emps:checked ~ .mock-tabs label[for="fm-tab-emps"],
#fm-tab-cal:checked ~ .mock-tabs label[for="fm-tab-cal"],
#fm-tab-msg:checked ~ .mock-tabs label[for="fm-tab-msg"],
#fm-tab-tasks:checked ~ .mock-tabs label[for="fm-tab-tasks"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
#emp-tab-week:checked ~ .mock-panels [data-panel="emp-week"],
#emp-tab-supply:checked ~ .mock-panels [data-panel="emp-supply"],
#emp-tab-docs:checked ~ .mock-panels [data-panel="emp-docs"],
#emp-tab-msg:checked ~ .mock-panels [data-panel="emp-msg"],
#emp-tab-tasks:checked ~ .mock-panels [data-panel="emp-tasks"],
#fm-tab-approve:checked ~ .mock-panels [data-panel="fm-approve"],
#fm-tab-emps:checked ~ .mock-panels [data-panel="fm-emps"],
#fm-tab-cal:checked ~ .mock-panels [data-panel="fm-cal"],
#fm-tab-msg:checked ~ .mock-panels [data-panel="fm-msg"],
#fm-tab-tasks:checked ~ .mock-panels [data-panel="fm-tasks"] {
  display: block;
}
.mock-status {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}
.mock-status.ok {
  background: rgba(28,122,74,.10);
  color: #1c7a4a;
  border: 1px solid rgba(28,122,74,.18);
}
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.mock-kpis div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}
.mock-kpis span {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
}
.mock-kpis strong {
  color: var(--navy);
  font-size: 16px;
}
.mock-day-list,
.mock-case-box,
.mock-approval-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.mock-day-list div,
.mock-approval-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(231,226,214,.85);
}
.mock-day-list div {
  display: grid;
  grid-template-columns: 68px 1fr auto;
}
.mock-day-list div:last-child,
.mock-approval-row:last-of-type { border-bottom: 0; }
.mock-day-list span,
.mock-approval-row span,
.mock-case-box span { color: var(--muted); }
.mock-day-list strong,
.mock-approval-row strong,
.mock-case-box strong { color: var(--navy); font-size: 14px; text-align: right; }
.mock-day-list em {
  color: var(--orange);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.mock-case-box {
  display: grid;
  gap: 4px;
  margin: 10px 0;
}
.mock-side-panels {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}
.mock-side-panels.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mock-side-panels div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}
.mock-side-panels strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 2px;
}
.mock-side-panels span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.mock-list-card,
.mock-roster div,
.mock-info-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
}
.mock-list-card strong,
.mock-roster strong {
  display: block;
  color: var(--navy);
  font-size: 13.5px;
  margin-bottom: 2px;
}
.mock-list-card span,
.mock-roster span,
.mock-info-note {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.mock-list-card.done {
  background: rgba(28,122,74,.08);
  border-color: rgba(28,122,74,.18);
}
.mock-chat {
  max-width: 84%;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.mock-chat strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 2px;
}
.mock-chat span {
  color: var(--text);
  font-size: 13px;
}
.mock-chat.theirs { background: #fff; }
.mock-chat.mine {
  margin-left: auto;
  background: rgba(77,184,214,.12);
  border-color: rgba(77,184,214,.24);
}
.mock-phone .btn {
  width: 100%;
  pointer-events: none;
}
.mock-approval-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(231,226,214,.85);
  margin-bottom: 4px;
}
.mock-approval-title strong { color: var(--navy); }
.mock-approval-title span { color: var(--muted); font-size: 13px; }
.mock-approval-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 10px 0;
}
.mock-approval-table > div {
  display: grid;
  grid-template-columns: minmax(105px, 1.4fr) repeat(5, minmax(34px, .45fr)) minmax(44px, .55fr);
  gap: 0;
  align-items: center;
  border-bottom: 1px solid rgba(231,226,214,.85);
}
.mock-approval-table > div:last-child { border-bottom: 0; }
.mock-approval-table span,
.mock-approval-table strong {
  padding: 8px 6px;
  font-size: 12px;
  text-align: center;
  color: var(--text);
}
.mock-approval-table span:first-child {
  text-align: left;
  font-weight: 800;
  color: var(--navy);
}
.mock-approval-table .head {
  background: #f7f3ea;
  color: var(--muted);
  font-weight: 800;
}
.mock-approval-table .head span,
.mock-approval-table .head strong {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.mock-calendar {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 8px;
}
.mock-calendar > div {
  display: grid;
  grid-template-columns: minmax(110px, 1.2fr) repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(231,226,214,.85);
}
.mock-calendar > div:last-child { border-bottom: 0; }
.mock-calendar span,
.mock-calendar strong,
.mock-calendar em {
  padding: 9px 7px;
  font-size: 12px;
  text-align: center;
}
.mock-calendar span:first-child {
  text-align: left;
  font-weight: 800;
  color: var(--navy);
}
.mock-calendar .head {
  background: #f7f3ea;
  color: var(--muted);
  font-weight: 800;
}
.mock-calendar strong {
  color: #1c7a4a;
  background: rgba(28,122,74,.08);
  margin: 4px;
  border-radius: 999px;
}
.mock-calendar em {
  color: var(--orange);
  background: rgba(237,125,31,.10);
  margin: 4px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
}
.mock-comment {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  font-weight: 700;
}
.mock-comment textarea {
  width: 100%;
  min-height: 70px;
  resize: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: #fbf8f0;
  color: var(--text);
  font-family: var(--font-brand);
}
.mock-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.mock-actions .btn {
  flex: 1 1 170px;
  pointer-events: none;
}
.person-role {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.mini-timesheet,
.approval-preview {
  margin-top: 16px;
  background: #fbf8f0;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.mini-timesheet div,
.approval-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(231,226,214,.85);
}
.mini-timesheet div:last-child,
.approval-line:last-of-type { border-bottom: 0; }
.mini-timesheet span,
.approval-line span { color: var(--muted); }
.mini-timesheet strong,
.approval-line strong { color: var(--navy); }
.time-approval-card {
  background: linear-gradient(180deg, #fff, #fff7e9);
  border-color: rgba(237,125,31,.28);
}
.approval-preview-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.approval-preview-head strong { color: var(--navy); }
.approval-preview-head span { color: var(--muted); font-size: 14px; }
.approval-preview .btn { width: 100%; margin-top: 12px; pointer-events: none; }
.time-benefit-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}
.time-benefit-grid h2 { margin: 8px 0 12px; color: var(--navy); }
.time-benefit-grid p { margin: 0; color: var(--muted); font-size: 18px; }
.benefit-list {
  display: grid;
  gap: 12px;
}
.benefit-list div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.benefit-list strong { display: block; color: var(--navy); margin-bottom: 4px; }
.benefit-list span { color: var(--muted); }
@media (max-width: 980px) {
  .time-demo-hero-grid,
  .time-benefit-grid { grid-template-columns: 1fr; }
  .time-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .time-example-grid,
  .screen-demo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .time-demo-hero-grid { padding-top: 48px; padding-bottom: 48px; }
  .time-flow { grid-template-columns: 1fr; }
  .time-demo-snapshot,
  .time-flow-card,
  .screen-demo-card,
  .time-person-card,
  .time-approval-card { border-radius: 16px; padding: 18px; }
  .screen-demo-head { display: block; }
  .screen-demo-head strong { display: block; text-align: left; margin-top: 4px; }
  .mock-tabs { overflow-x: auto; padding-bottom: 2px; }
  .mock-kpis,
  .mock-side-panels.two { grid-template-columns: 1fr; }
  .mock-day-list div { grid-template-columns: 1fr; gap: 2px; }
  .mock-day-list strong { text-align: left; }
  .mock-approval-table { overflow-x: auto; }
  .mock-approval-table > div { min-width: 520px; }
}

/* ---------- Make:net kundeoplæg (makenet1) ---------- */
.makenet-page .site-header { position: sticky; }
.mk-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(237,125,31,.20), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(77,184,214,.18), transparent 34%),
    linear-gradient(135deg, #fcf8ec 0%, #f5efe2 58%, #edf5f6 100%);
  border-bottom: 1px solid var(--border);
}
.mk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 34px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.mk-hero h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
}
.mk-hero .lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: #62727f;
  font-size: 19px;
}
.mk-offer-card,
.mk-model-card,
.mk-stack-card,
.mk-chart-card,
.mk-scenario-card,
.mk-table-card,
.mk-rotation-card,
.mk-rotation-plan,
.mk-next-card {
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(33,58,75,.12);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.mk-offer-card {
  padding: 24px;
  box-shadow: var(--shadow);
}
.mk-logo-word {
  color: var(--orange);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}
.mk-logo-word span { color: #8b9297; }
.mk-offer-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 700;
}
.mk-kpi-row,
.mk-mini-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}
.mk-kpi-row span,
.mk-mini-line span { color: var(--muted); }
.mk-kpi-row strong,
.mk-mini-line b { color: var(--navy); text-align: right; }
.mk-model-grid,
.mk-scenario-grid,
.mk-rotation-grid,
.mk-shirt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mk-model-card,
.mk-stack-card,
.mk-scenario-card,
.mk-rotation-card,
.mk-next-card { padding: 22px; }
.mk-model-card.featured,
.mk-scenario-card.featured,
.mk-rotation-card.featured {
  border-color: rgba(237,125,31,.38);
  background: linear-gradient(180deg, #fff, #fff7ea);
}
.mk-model-card h3,
.mk-stack-card h3,
.mk-scenario-card h3,
.mk-rotation-card h3,
.mk-next-card h3 {
  margin: 10px 0 8px;
  color: var(--navy);
}
.mk-model-card p,
.mk-stack-card p,
.mk-scenario-card p,
.mk-rotation-card p,
.mk-next-card li {
  color: var(--muted);
}
.mk-price {
  display: block;
  color: var(--orange);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  margin: 16px 0 12px;
}
.mk-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.mk-stack div {
  min-height: 44px;
  width: var(--w);
  min-width: 42%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}
.mk-stack div:last-child {
  background: linear-gradient(90deg, var(--orange), var(--amber));
}
.mk-chart-card,
.mk-table-card,
.mk-rotation-plan {
  padding: 22px;
  margin-top: 22px;
}
.mk-bars {
  display: grid;
  gap: 14px;
}
.mk-bar-row {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) 110px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}
.mk-bar-track {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe5d7;
}
.mk-bar {
  height: 100%;
  width: var(--w);
  border-radius: inherit;
}
.mk-bar.fill-a { background: linear-gradient(90deg, var(--orange), var(--amber)); }
.mk-bar.fill-b { background: linear-gradient(90deg, var(--navy), var(--teal)); }
.mk-scenario-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe5d7;
  margin: 16px 0 8px;
}
.mk-scenario-meter i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}
.mk-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.mk-table th,
.mk-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--border);
  text-align: right;
}
.mk-table th:first-child,
.mk-table td:first-child,
.mk-table th:nth-child(2),
.mk-table td:nth-child(2) { text-align: left; }
.mk-table th {
  color: var(--navy);
  background: #fbf8f0;
}
.mk-table td { color: #5d6b75; font-weight: 750; }
.mk-week-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 150px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 16px;
  background: #f7f3ea;
}
.mk-week-bars span {
  height: var(--h);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  color: #fff;
  font-weight: 900;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, var(--navy), var(--teal));
}
.mk-rotation-card.featured .mk-week-bars span {
  background: linear-gradient(180deg, var(--orange), var(--amber));
}
.mk-rotation-card > strong {
  display: block;
  color: var(--navy);
}
.mk-plan-grid {
  display: grid;
  grid-template-columns: 80px repeat(8, minmax(84px, 1fr));
  gap: 8px;
  overflow-x: auto;
}
.mk-plan-grid > * {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  padding: 8px;
  color: var(--navy);
  background: #fbf8f0;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}
.mk-plan-grid span {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.mk-plan-grid span.off {
  color: #6c5d4b;
  background: #efe4d3;
}
.mk-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: start;
}
.mk-close-grid h2 {
  margin: 8px 0 12px;
  color: var(--navy);
}
.mk-close-grid p {
  color: var(--muted);
  font-size: 18px;
}
.mk-next-card ol {
  margin: 12px 0 0;
  padding-left: 20px;
}
.mk-next-card li { margin: 9px 0; }
.mk-shirt-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.mk-shirt-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f3f3;
}
.mk-shirt-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--navy);
  font-weight: 900;
}
@media (max-width: 980px) {
  .mk-hero-grid,
  .mk-close-grid { grid-template-columns: 1fr; }
  .mk-model-grid,
  .mk-scenario-grid,
  .mk-rotation-grid,
  .mk-shirt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mk-hero-grid { padding-top: 48px; padding-bottom: 48px; }
  .mk-offer-card,
  .mk-model-card,
  .mk-stack-card,
  .mk-chart-card,
  .mk-scenario-card,
  .mk-table-card,
  .mk-rotation-card,
  .mk-rotation-plan,
  .mk-next-card { border-radius: 16px; padding: 18px; }
  .mk-bar-row { grid-template-columns: 1fr; gap: 6px; }
  .mk-bar-row strong { text-align: left; }
}
