@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #002E5D;
  --navy-light: #1a4a80;
  --accent: #F37426;
  --accent-light: #f5954a;
  --teal: #57778F;
  --white: #ffffff;
  --off-white: #F5F7F9;
  --gray-light: #e8ecf0;
  --gray: #8a9ab0;
  --text: #1e2a3a;
  --text-light: #4a5a70;
  --font: 'Roboto', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,46,93,0.10);
  --shadow-lg: 0 8px 40px rgba(0,46,93,0.15);
  --transition: 0.25s ease;

  /* Program-farver */
  --color-toc: #4F626F;
  --color-kata: #492F32;
  --color-twi-ji: #57778F;
  --color-twi-jr: #B99F55;
  --color-twi-jm: #486A5E;
  --color-modul: #4F626F;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; font-size: 18px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,46,93,0.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img { height: 52px; width: auto; display: block; image-rendering: -webkit-optimize-contrast; }
.nav-logo .logo-white { display: block; filter: brightness(0) invert(1); }
.nav-logo .logo-color { display: none; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-color { display: block; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: 0.82rem; font-weight: 500;
  padding: 7px 9px; border-radius: 6px; white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active {
  color: var(--navy); background: var(--off-white);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-links .nav-cta {
  background: var(--accent); color: var(--white); font-weight: 600;
  padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: var(--accent-light); }
.nav.scrolled .nav-links .nav-cta { color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); border-radius: 2px; }
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4a7a 100%);
  color: var(--white); padding: 96px 0 80px;
  position: relative;
}
.hero-layout { display: flex; align-items: center; gap: 48px; }
.hero-content { position: relative; flex: 1; min-width: 0; }
.hero-image { flex: 0 0 460px; display: flex; align-items: flex-start; background: #fff; border-radius: 12px; overflow: hidden; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.20)); position: relative; z-index: 1; }
.hero-image img { width: 100%; height: auto; display: block; transform: translateZ(0); }
.hero-badge {
  display: inline-block; background: rgba(232,98,42,0.20); color: var(--accent-light);
  border: 1px solid rgba(232,98,42,0.35); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 40px; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent-light); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.97rem;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,98,42,0.35); }
.btn-outline { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ===== STATS BAND ===== */
.stats-band { background: var(--off-white); border-top: 3px solid var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat-item {
  padding: 32px 20px; text-align: center;
  border-right: 1px solid var(--gray-light);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; font-weight: 500; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 12px; padding: 40px 32px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-light);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(26,127,168,0.25); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.5rem;
}
.service-icon-blue { background: rgba(26,127,168,0.12); color: var(--teal); }
.service-icon-orange { background: rgba(232,98,42,0.12); color: var(--accent); }
.service-icon-navy { background: rgba(13,31,60,0.10); color: var(--navy); }
.service-card h3 { color: var(--navy); margin-bottom: 6px; }
.service-card .tag { font-size: 0.78rem; font-weight: 700; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.service-card p { color: var(--text-light); flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--accent);
  font-weight: 600; font-size: 0.9rem; margin-top: 20px;
  transition: gap var(--transition);
}
.service-card .card-link:hover { gap: 10px; }

/* ===== CHALLENGE CARDS ===== */
.challenge-card { border-top: 3px solid var(--gray-light); }
.challenge-card:hover { border-top-color: var(--accent); }
.challenge-icon {
  width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.5rem;
}
.challenge-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 12px 0 0;
}
.challenge-list li {
  color: var(--text-light); font-size: 0.95rem; padding-left: 18px; position: relative; line-height: 1.5;
}
.challenge-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* ===== RESULTS LIST ===== */
.results-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.result-item { display: flex; align-items: flex-start; gap: 12px; }
.result-check {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(26,127,168,0.12);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
}

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-visual {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); font-size: 6rem;
}

/* ===== PROCESS STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 18px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h4 { color: var(--navy); margin-bottom: 4px; }
.step-content p { color: var(--text-light); font-size: 0.93rem; }

/* ===== INFO BOXES ===== */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.info-box {
  background: var(--off-white); border-radius: var(--radius); padding: 28px 24px;
  border-left: 4px solid var(--color-twi-ji);
}
.info-box.orange { border-left-color: var(--color-twi-jm); }
.info-box.navy   { border-left-color: var(--color-twi-jr); }
.info-box h4 { color: var(--navy); margin-bottom: 10px; }
.info-box ul { display: flex; flex-direction: column; gap: 6px; }
.info-box ul li { color: var(--text-light); font-size: 0.93rem; padding-left: 16px; position: relative; }
.info-box ul li::before { content: '→'; position: absolute; left: 0; color: var(--teal); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); text-align: center; padding: 72px 0;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info h3 { color: var(--navy); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(26,127,168,0.10);
  color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-detail a { color: var(--navy); font-weight: 600; }
.contact-detail a:hover { color: var(--teal); }

.form-card { background: var(--off-white); border-radius: 12px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); padding: 64px 0 56px;
}
.page-hero .eyebrow { color: var(--accent-light); font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; }

/* ===== ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1.5px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; }
.accordion-header {
  width: 100%; text-align: left; padding: 18px 20px; background: var(--white);
  border: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--off-white); }
.accordion-header.open { background: var(--navy); color: var(--white); }
.accordion-icon { font-size: 1.2rem; transition: transform var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.accordion-body.open { max-height: 600px; padding: 16px 20px 20px; }
.accordion-body p, .accordion-body li { color: var(--text-light); font-size: 0.95rem; }
.accordion-body ul { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.accordion-body ul li { padding-left: 16px; position: relative; }
.accordion-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--teal); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* ===== PROFILE ===== */
.profile-card {
  background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow);
  display: flex; gap: 32px; align-items: flex-start;
}
.profile-avatar {
  width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 4px solid var(--gray-light);
  box-shadow: var(--shadow);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.profile-meta h3 { color: var(--navy); margin-bottom: 4px; }
.profile-meta .role { color: var(--teal); font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.profile-meta p { color: var(--text-light); font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag-pill { background: var(--off-white); border: 1px solid var(--gray-light); color: var(--text-light); font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 40px; }

/* ===== HIGHLIGHT BOX ===== */
.highlight { background: rgba(26,127,168,0.07); border: 1.5px solid rgba(26,127,168,0.2); border-radius: var(--radius); padding: 24px 28px; }
.highlight.orange { background: rgba(232,98,42,0.06); border-color: rgba(232,98,42,0.2); }

/* ===== TOC STEPS ===== */
.toc-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); padding: 24px 28px;
}
.toc-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  color: var(--white); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toc-step-body h4 { color: var(--navy); margin-bottom: 6px; }
.toc-step-body p { color: var(--text-light); font-size: 0.93rem; margin: 0; }
.toc-step-arrow { text-align: center; color: var(--teal); font-size: 1.4rem; line-height: 1.2; padding: 4px 0; }

/* ===== FRAMEWORK SECTION ===== */
.framework { background: var(--off-white); color: var(--navy); padding: 96px 0; }
.framework .section-header .eyebrow { color: var(--accent); }
.framework .section-header h2 { color: var(--navy); }
.framework .section-header p { color: var(--text-light); }

.framework-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  margin-top: 56px; background: var(--white);
}
.framework-col {
  padding: 36px 28px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: relative;
}
.framework-col:last-child { border-right: none; }
.framework-col-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  color: rgba(0,46,93,0.30); margin-bottom: 8px;
}
.framework-col-icon { font-size: 1.6rem; margin-bottom: 12px; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 16px; background: rgba(0,46,93,0.07); padding: 12px; }
.framework-col h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.framework-col .role { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.framework-col p { color: var(--text-light); font-size: 0.88rem; flex: 1; }
.framework-col a { color: var(--accent); font-size: 0.82rem; font-weight: 600; margin-top: 16px; transition: color var(--transition); }
.framework-col a:hover { color: var(--navy); }
.framework-col-toc   { border-top: 3px solid var(--color-toc); }
.framework-col-kata  { border-top: 3px solid var(--color-kata); }
.framework-col-modul { border-top: 3px solid var(--color-modul); }
.framework-col-twi   { border-top: 3px solid var(--color-twi-ji); }
/* bagudkompatibilitet */
.framework-col-accent { border-top: 3px solid var(--color-toc); }
.framework-col-teal   { border-top: 3px solid var(--color-kata); }
.framework-col-navy   { border-top: 3px solid var(--color-twi-ji); }
.framework-connector {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem; font-weight: 700;
  padding: 0 8px;
}

.framework-tagline {
  text-align: center; margin-top: 40px;
  color: var(--text-light); font-size: 0.9rem;
}
.framework-tagline strong { color: var(--accent); }

/* ===== 4-COL SERVICES ===== */
.services-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .services-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-4 { grid-template-columns: 1fr; } }
.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .services-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .framework-grid { grid-template-columns: 1fr 1fr; } .framework-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); } .framework-col:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.12); } }
@media (max-width: 600px) { .framework-grid { grid-template-columns: 1fr; } .toc-step { padding: 18px 20px; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid, .info-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-item:nth-child(4), .stats-grid .stat-item:nth-child(5) { border-top: 1px solid var(--gray-light); }
  .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .profile-card { flex-direction: column; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; padding: 16px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav.scrolled .nav-links { background: var(--white); }
  .nav.scrolled .nav-links a { color: var(--text); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 10px 14px; }
  .nav-toggle { display: block; }
  .nav-logo img { height: 40px; }
  .nav-logo .logo-white { display: block; filter: brightness(0) invert(1); }
  .nav-logo .logo-color { display: none; }
  .nav.scrolled .logo-white { display: none; }
  .nav.scrolled .logo-color { display: block; filter: none; }

  /* Base font */
  body { font-size: 17px; }

  /* Sections */
  .section, .section-lg { padding: 40px 0; }
  .section-sm { padding: 20px 0; }
  .hero { padding: 48px 0 40px; }
  .section-header { margin-bottom: 28px; }

  /* Hero */
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-layout { flex-direction: column; }
  .hero-layout > img { width: 100% !important; height: 300px !important; object-fit: cover; object-position: center top; margin-top: 16px; flex: none; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Typography */
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1.05rem; }
  p  { font-size: 1rem; }

  /* Cards – løft de små labels og brødtekster */
  .card-bottom { display: flex; align-items: center; gap: 12px; }
  .card-bottom img { width: 36px !important; margin-bottom: 0 !important; }
  .service-card p, .challenge-card p { font-size: 1rem; }
  .service-card .tag { font-size: 0.85rem; }
  .card-link { font-size: 0.95rem; }
  .eyebrow { font-size: 0.85rem; }
  .framework-col p { font-size: 1rem; }
  .info-box p, .info-box li { font-size: 1rem; }
  .step-content p { font-size: 1rem; }
  .footer-col a, .footer-brand p { font-size: 1rem; }
  .footer-bottom { font-size: 0.9rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Framework */
  .framework-grid { grid-template-columns: 1fr; }
  .framework-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }

  /* Partner cards */
  .partner-grid { grid-template-columns: 1fr !important; }

  /* Two-col: stack profilbillede under tekst */
  .two-col > div:last-child { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .two-col > div { text-align: center; }
  .results-list { align-items: center; }
  .two-col .btn { display: inline-flex; }

  /* Footer */
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }

  /* Kortere padding på kort */
  .service-card { padding: 28px 20px; }
  .framework-col { padding: 28px 20px; }

  /* CTA bånd */
  .cta-band .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; gap: 10px; }
}
