/* ============================================================
   Consulimus – Statisches CSS v3
   Brand: #005f6a (Teal), #afbdb7 (Sage), #e09c5b (Signal-Orange)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Aptos, 'Canva Sans', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
}
/* Logo / brand heading uses Quicksand */
.nav-logo-text, .brand-heading { font-family: 'Quicksand', sans-serif; font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { color: #005f6a; text-decoration: none; }
a:hover { text-decoration: underline; color: #004d57; }
h1, h2, h3, h4, h5, h6 { color: #333; font-family: 'League Spartan', 'Franklin Gothic Medium', 'Tw Cen MT', sans-serif; font-weight: 500; }
h1 { letter-spacing: .02em; }
h2 { letter-spacing: .02em; font-size: 1.5rem; line-height: 1.2; }
h3 { font-size: 1.125rem; }
@media (min-width: 768px) { h2 { font-size: 2.25rem; } h3 { font-size: 1.5rem; } }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; }

/* --- Utilities --- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.lead { font-size: 1.2rem; color: #333; margin-bottom: 1.5rem; line-height: 1.75; }
.small-note { font-size: 0.8rem; color: #888; margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none; }
.text-brand { color: #005f6a; }
.text-muted { color: #6b7280; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.list-none { list-style: none; padding: 0; }
.space-y > * + * { margin-top: 0.75rem; }
.border-t { border-top: 1px solid #e5e7eb; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.check { color: #005f6a; font-weight: 700; }
.cross { color: #9ca3af; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: #005f6a;
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
}
.btn-primary:hover { background: #004d57; text-decoration: none !important; }
.btn-secondary {
  display: inline-block;
  background: #005f6a;
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #005f6a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none !important;
}
.btn-secondary:hover { background: #004d57; color: #fff !important; text-decoration: none !important; }
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); text-decoration: none !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* nav-container is inside .container – flex row */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #005f6a !important;
  text-decoration: none !important;
  flex-shrink: 0;
}
.nav-logo img { max-width: 110px; max-height: 21px; width: auto; height: auto; }
.nav-logo:hover { text-decoration: none !important; }

/* Hamburger button – visible on mobile, hidden on desktop */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* nav-menu: hidden on mobile by default, shown as flex on desktop */
.nav-menu {
  display: none;
}
@media (min-width: 900px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }
}

/* Mobile: when .open is toggled by JS */
.nav-menu.open {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  z-index: 999;
}
@media (min-width: 900px) {
  .nav-menu.open {
    display: flex;
    position: static;
    overflow: visible;
    padding: 0;
    border: none;
    background: transparent;
  }
}

/* nav-list: the <ul> inside nav-menu */
.nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }
}

/* nav-item */
.nav-item {
  position: relative;
  list-style: none;
  width: 100%;
}
@media (min-width: 900px) { .nav-item { width: auto; } }

/* nav-link */
.nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
@media (min-width: 900px) {
  .nav-link {
    padding: 0.5rem 0.75rem;
    border-bottom: none;
    border-radius: 0.375rem;
  }
}
.nav-link:hover { background: #f0f4f4; color: #005f6a !important; text-decoration: none !important; }

/* CTA button in nav */
.nav-cta { margin-top: 0.5rem; }
@media (min-width: 900px) { .nav-cta { margin-top: 0; margin-left: 0.5rem; } }
.nav-cta .btn-primary { display: inline-block; }

/* Dropdown – always visible on mobile, hover on desktop */
.nav-dropdown {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0;
  background: #f9fafb;
  border-left: 3px solid #e5e7eb;
}
@media (min-width: 900px) {
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    min-width: 230px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    z-index: 200;
    border-left: none;
    background: #fff;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #333 !important;
  text-decoration: none !important;
  transition: background 0.1s;
}
.nav-dropdown a:hover { background: #f0f4f4; color: #005f6a !important; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  background: rgba(0,95,106,0.08);
  overflow: hidden;
}
/* Home hero: no dark background visible behind image */
.hero-home { background: transparent; }
/* Image-only hero: tint background instead of black */
.hero-image-only { background: rgba(0,95,106,0.08); }
/* Tint-only hero: no image, just brand tint background with dark text */
.hero-tint-only {
  background: rgba(0,95,106,0.08);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.hero-tint-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: #1a2e35;
  margin-bottom: 0.5rem;
  letter-spacing: .02em;
}
.hero-tint-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #444;
  margin-bottom: 0;
  line-height: 1.6;
}
/* Default hero: fixed aspect ratio container */
/* hero-aspect: always show full 16/9 image, no cropping */
.hero-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-aspect picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-aspect .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #1a2e35;
}
/* Legacy: hero-img without aspect wrapper (fallback only) */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}
/* Dark overlay only on home hero (which has hero-text over the image) */
.hero-home .hero-aspect::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* No overlay on theme pages, offer pages, methodik, etc. */
.hero-aspect::after { display: none; }
.hero::after { display: none; }
/* Hero text overlay */
.hero-text {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  z-index: 2;
  text-align: center;
}
@media (min-width: 1024px) { .hero-text { padding: 0 3rem; } }
.hero-text-bottom { bottom: 2.5rem; }
.hero-text-top { top: 2.5rem; }
/* Split: title top, subtitle bottom – two separate elements */
.hero-title-top {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  z-index: 2;
  text-align: center;
}
.hero-subtitle-bottom {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  z-index: 2;
  text-align: center;
}
@media (min-width: 1024px) { .hero-title-top, .hero-subtitle-bottom { padding: 0 3rem; } }
.hero-text-center {
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.hero-text h1 {
  color: #f7f9fa;
  font-family: 'League Spartan', sans-serif;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.1;
  text-shadow: 0 4px 4px rgba(0,0,0,0.26);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) { .hero-text h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); } }
.hero-subtitle {
  color: rgba(255,255,255,0.95);
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: .01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 0;
}
.hero-text .btn-primary,
.hero-text .btn-secondary { margin-top: 0.25rem; }

/* Image-only hero: dark text (no overlay, light tint background) */
.hero-image-only .hero-text h1 {
  color: #1a2e35;
  text-shadow: none;
}
.hero-image-only .hero-text .hero-subtitle {
  color: #333;
  text-shadow: none;
}

/* text-bg variant */
.hero-text-text-bg h1,
.hero-text-text-bg .hero-subtitle {
  background: rgba(0,0,0,0.5);
  display: inline;
  padding: 0.15em 0.4em;
  border-radius: 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* AI generated badge */
.ai-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  padding: 0.2em 0.5em;
  border-radius: 0.25rem;
  z-index: 3;
  pointer-events: none;
}
/* Legacy alias */
.hero-ai-badge { position: absolute; bottom: 0.75rem; left: 0.75rem; font-size: 0.7rem; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.4); padding: 0.2em 0.5em; border-radius: 0.25em; z-index: 3; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2rem 0; }
.section-lg { padding: 5rem 0; }
.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 0.5rem;
  color: #333;
  font-family: 'League Spartan', 'Franklin Gothic Medium', 'Tw Cen MT', sans-serif;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-cta {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 3.5rem 0;
}
.section-cta h2 { color: #1a2e35; margin-bottom: 1rem; }
.section-cta p { color: #555; margin-bottom: 1.5rem; }

/* Blog article navigation (prev / overview / next) */
.blog-article-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.blog-article-nav a {
  display: inline-block;
  background: #005f6a;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: background 0.2s;
  min-width: 180px;
  text-align: center;
}
.blog-article-nav a:hover { background: #004d57; text-decoration: none !important; }
.blog-article-nav a.disabled {
  background: #9ca3af;
  pointer-events: none;
  cursor: default;
}

.bg-white { background: #fff; }
/* 10% tint of brand color – used for alternating sections */
.bg-light { background: rgba(0,95,106,0.07) !important; }
.bg-tint { background: rgba(0,95,106,0.07) !important; }
.bg-brand { background: #005f6a !important; color: #fff; }
.bg-brand h1, .bg-brand h2, .bg-brand h3, .bg-brand p { color: #fff; }
/* Bauchbinde / banner strip: less vertical padding */
.section.bg-brand { padding: 2rem 0; }
.bg-dark { background: #1a2e35 !important; color: #e8eeed; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark .section-title { color: #e8eeed; }
.bg-dark p { color: #c5d0ce; }
.bg-sage { background: #afbdb7; }

/* ============================================================
   THEME CARDS (Themen-Übersicht)
   ============================================================ */
.theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-grid { grid-template-columns: repeat(3, 1fr); } }
.theme-grid-large { grid-template-columns: 1fr; }
@media (min-width: 768px) { .theme-grid-large { grid-template-columns: repeat(2, 1fr); } }

.theme-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}
.theme-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); text-decoration: none !important; }
.theme-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.theme-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.theme-card__body h2,
.theme-card__body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: #1a2e35; }
.theme-card__body p { font-size: 0.9rem; color: #555; flex: 1; margin-bottom: 0.75rem; }
.theme-card__body .card-link { font-size: 0.875rem; font-weight: 600; color: #005f6a; }

/* ============================================================
   OFFER TILES
   ============================================================ */
.offer-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .offer-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-tiles { grid-template-columns: repeat(3, 1fr); } }

.offer-tile {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}
.offer-tile:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); text-decoration: none !important; }
.offer-tile__img { position: relative; }
.offer-tile img { width: 100%; aspect-ratio: 16/9; height: auto; object-fit: cover; display: block; }
.offer-tile__body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
/* Thema-tag pill – inline, only as wide as text */
.thema-tag {
  display: inline-block;
  font-size: 0.72rem;
  color: #005f6a;
  border: 1px solid #005f6a;
  border-radius: 99px;
  padding: 0.08rem 0.45rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  white-space: nowrap;
  /* ensure it does NOT stretch full width */
  width: auto;
  max-width: fit-content;
}
/* Offer tile name */
.offer-tile__name {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1a2e35 !important;
  margin-bottom: 0.2rem !important;
  line-height: 1.35;
}
/* Offer tile subtitle – italic */
.offer-tile__subtitle {
  font-size: 0.875rem;
  color: #555;
  font-style: italic;
  margin-bottom: 0.5rem !important;
}
/* Short value description */
.offer-tile__desc {
  font-size: 0.875rem;
  color: #444;
  flex: 1;
  margin-bottom: 0.75rem !important;
  line-height: 1.55;
}
/* Footer row: duration left, type right */
.offer-tile__footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #555;
  margin-top: auto;
  border-top: 1px solid #e8eeed;
  padding-top: 0.5rem;
}
.offer-tile__duration { display: flex; align-items: center; gap: 0.3rem; }
.clock-icon { font-size: 0.85rem; }
.offer-tile__type-badge { font-weight: 500; color: #555; }
.offer-tile__body .card-link { font-size: 0.85rem; font-weight: 600; color: #005f6a; }
/* New tile structure classes */
.btn-theme {
  display: inline-block;
  font-size: 0.72rem;
  color: #005f6a;
  border: 1px solid #005f6a;
  border-radius: 99px;
  padding: 0.08rem 0.45rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: fit-content;
  text-decoration: none !important;
}
.btn-theme:hover { background: rgba(0,95,106,0.08); text-decoration: none !important; }
.offer-tile__theme-badge { margin-bottom: 0.4rem; }
.offer-tile__short-value {
  font-size: 0.875rem;
  color: #444;
  flex: 1;
  margin-bottom: 0.6rem !important;
  line-height: 1.55;
}
.offer-tile__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.offer-tile__format { font-size: 0.8rem; color: #555; font-weight: 500; }
.offer-tile__link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #005f6a;
  text-decoration: none !important;
  white-space: nowrap;
}
.offer-tile__clock { width: 0.9rem; height: 0.9rem; flex-shrink: 0; color: #555; }
.offer-tile__chevron { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.offer-tile__ai-badge {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
/* Legacy alias */
.offer-tile-body { padding: 1.1rem; }
.offer-tile-title { font-size: 1rem; font-weight: 600; color: #1a2e35; margin-bottom: 0.35rem; }
.offer-tile-subtitle { font-size: 0.875rem; color: #555; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); text-decoration: none !important; }
.blog-card img { width: 100%; aspect-ratio: 16/9; height: auto; object-fit: cover; display: block; }
.blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.8rem; color: #888; margin-bottom: 0.4rem; }
.blog-card__body h2,
.blog-card__body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: #1a2e35; font-weight: 700; }
.blog-card__title { font-size: 1rem; font-weight: 700; color: #1a2e35; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card__teaser { font-size: 0.875rem; color: #555; flex: 1; margin-bottom: 0.75rem; line-height: 1.55; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; font-size: 0.8rem; }
.blog-card__footer .blog-date { color: #888; }
.blog-card__footer .card-link { font-weight: 600; color: #005f6a; }
.blog-excerpt { font-size: 0.875rem; color: #555; flex: 1; }
.blog-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: #005f6a; font-weight: 700; margin-bottom: 0.4rem; }
/* Blog category pills */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #005f6a;
  background: rgba(0,95,106,0.08);
  border: 1px solid rgba(0,95,106,0.4);
  border-radius: 99px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
}
.blog-title { font-size: 1rem; font-weight: 700; color: #1a2e35; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-meta { font-size: 0.75rem; color: #9ca3af; margin-top: 0.75rem; }
/* Blog card image wrapper */
.blog-card__img { overflow: hidden; }
.blog-card__img img { width: 100%; aspect-ratio: 16/9; height: auto; object-fit: cover; display: block; transition: transform 0.3s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
/* Blog filter row */
.blog-filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; justify-content: center; }
.blog-filter-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #005f6a;
  color: #005f6a;
  border-radius: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.blog-filter-btn:hover { background: rgba(0,95,106,0.08); }
.blog-filter-btn.active { background: #005f6a; color: #fff; border-color: #005f6a; }

/* Blog article */
.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 0.5rem; margin-bottom: 2rem; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-hr { border: none; border-top: 1px solid #e5e7eb; margin: 2rem 0; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; color: #1a2e35; }
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: #1a2e35; }
.article-body p { margin-bottom: 1rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 0.75rem 0 1rem 1.5rem; }
.article-body li { margin-bottom: 0.4rem; line-height: 1.65; }
.article-body blockquote { border-left: 4px solid #005f6a; padding: 0.75rem 1.25rem; background: #f0f7f8; border-radius: 0 0.5rem 0.5rem 0; margin: 1.5rem 0; font-style: italic; color: #374151; }
.article-body strong { color: #1a2e35; }
.article-cta { background: #f0f7f7; border-radius: 0.75rem; padding: 2rem; text-align: center; margin-top: 3rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,95,106,0.5);
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Logo area at top */
.testimonial-logo {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.testimonial-logo--empty { min-height: 3rem; }
.testimonial-logo-img {
  max-height: 2.5rem;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo centred */
  margin: 0 auto;
}
/* Quote */
.testimonial-quote {
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
}
/* Author row at bottom */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #e8eeed;
  padding-top: 1rem;
  margin-top: auto;
}
.testimonial-person-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e8eeed;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: #1a2e35; }
.testimonial-position { font-size: 0.8rem; color: #555; }
.testimonial-company { font-size: 0.8rem; color: #005f6a; }

/* ============================================================
   FORMAT BOX (Offer pages) – matches React OfferPageTemplate glass-effect card
   ============================================================ */
.format-box {
  background: rgba(175,189,183,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(175,189,183,0.5);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.format-box__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e35;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.format-details-rows { display: flex; flex-direction: column; gap: 0.2rem; }
.format-detail-row { font-size: 0.95rem; line-height: 1.45; color: #1a2e35; }
.format-detail-row strong { font-weight: 600; }
.format-box__note { margin-top: 0.75rem; font-size: 0.95rem; line-height: 1.6; color: #555; font-style: italic; }
.format-box__cta { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 1rem; }
/* Offer page prose sections – matches React mdComponents */
.offer-prose h2 { font-size: 1.875rem; font-weight: 500; margin-top: 2.5rem; margin-bottom: 1rem; color: #1a2e35; line-height: 1.3; }
/* First H2 in intro (subtitle) – no top margin */
.offer-prose:first-of-type h2:first-child { margin-top: 0; }
.offer-prose h3 { font-size: 1.5rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; color: #1a2e35; line-height: 1.3; }
.offer-prose p { font-size: 1.125rem; line-height: 1.75; margin-bottom: 1rem; }
.offer-prose ul { font-size: 1.125rem; list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.offer-prose ol { font-size: 1.125rem; list-style: decimal; margin-left: 1.5rem; margin-bottom: 1rem; }
.offer-prose li { font-size: 1.125rem; line-height: 1.75; margin-bottom: 0.25rem; }
.offer-prose strong { font-weight: 700; }
/* Legacy table styles kept for backward compat */
.format-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; border-radius: 0.5rem; overflow: hidden; }
.format-table tr { border-bottom: 1px solid #d1e8eb; }
.format-table tr:last-child { border-bottom: none; }
.format-table td { padding: 0.75rem 1rem; vertical-align: middle; }
.format-table td:first-child, .format-table th { font-weight: 700; background: #005f6a; color: #fff; width: 35%; white-space: nowrap; text-align: left; padding: 0.75rem 1rem; vertical-align: middle; }
.format-table td:last-child { color: #333; background: #fff; }
/* Legacy aliases */
.offer-format-box { background: #f0f7f8; border: 1px solid #b2d4d8; border-radius: 0.75rem; padding: 1.5rem; }
.offer-format-box h3 { color: #005f6a; margin-bottom: 1rem; }
.offer-format-row { display: flex; gap: 0.5rem; align-items: flex-start; padding: 0.4rem 0; border-bottom: 1px solid #d1e8eb; font-size: 0.9rem; }
.offer-format-row:last-child { border-bottom: none; }
.offer-format-icon { font-size: 1rem; flex-shrink: 0; width: 1.5rem; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li {
  padding: 0.35rem 0 0.35rem 1.75rem;
  position: relative;
  font-size: 1.125rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #005f6a;
  font-weight: 700;
}
/* Arrow list (used on homepage) */
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.arrow-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 1rem;
}
.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #005f6a;
  font-weight: 700;
}

/* ============================================================
   FEATURE / CARD GRIDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 3px solid #005f6a;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: #1a2e35; }
.feature-card p { font-size: 0.875rem; color: #555; margin: 0; }
.feature-card-highlight {
  background: #005f6a;
  color: #fff;
  border-top: none;
}
.feature-card-highlight h3 { color: #fff; }
.feature-card-highlight p { color: rgba(255,255,255,0.85); }

/* Generic card */
.card {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.card-hover { transition: box-shadow 0.2s, transform 0.2s; }
.card-hover:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }

/* ============================================================
   STAGES / PHASES
   ============================================================ */
.stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .stages-grid { grid-template-columns: repeat(3, 1fr); } }

.stage-card {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.stage-card-header {
  background: #005f6a;
  color: #fff;
  padding: 1rem 1.25rem;
}
.stage-card-header h3 { color: #fff; font-size: 1rem; margin: 0; }
.stage-card-header .stage-sub { font-size: 0.8rem; opacity: 0.8; }
.stage-card-body { padding: 1.25rem; }
.stage-card-body ul { list-style: none; padding: 0; }
.stage-card-body li { padding: 0.35rem 0; border-bottom: 1px solid #f3f4f6; font-size: 1rem; }
.stage-card-body li:last-child { border-bottom: none; }
.stage-card-body li::before { content: "✓ "; color: #005f6a; font-weight: 700; }
.stage-number {
  display: inline-block;
  background: #005f6a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .phases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .phases-grid { grid-template-columns: repeat(4, 1fr); } }

.phase-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
}
.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #005f6a;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.phase-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.phase-card p { font-size: 0.85rem; color: #555; margin: 0; }

/* ============================================================
   FAQ CARDS
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }

.faq-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
}
.faq-card h3 { font-size: 0.95rem; font-weight: 700; color: #005f6a; margin-bottom: 0.5rem; }
.faq-card p { font-size: 0.875rem; color: #444; margin: 0; line-height: 1.6; }

/* ============================================================
   ICON CARDS (2-per-row with symbol)
   ============================================================ */
.icon-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .icon-card-grid { grid-template-columns: repeat(2, 1fr); } }
.icon-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.icon-card--wide {
  grid-column: 1 / -1;
}
.icon-card__symbol {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
  color: #005f6a;
}
.icon-card__body h3 { font-size: 1rem; margin-bottom: 0.35rem; color: #1a2e35; }
.icon-card__body p { font-size: 1rem; color: #555; margin: 0; }

/* Problem cards (3-col) */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 3px solid #005f6a;
  text-align: center;
}
.problem-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: #1a2e35; }
.problem-card p { font-size: 1rem; color: #555; margin: 0; }

/* Tech highlight box */
.tech-highlight {
  background: rgba(0,95,106,0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 1.5rem;
}
.tech-highlight h3 { color: #005f6a; margin-bottom: 0.75rem; }
.tech-highlight p { color: #333; margin-bottom: 0; }

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-left: 4px solid #e09c5b;
}
.industry-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: #1a2e35; }
.industry-card p { font-size: 0.875rem; color: #555; margin: 0; }

/* ============================================================
   VIDEO PLAYER
   ============================================================ */
.video-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.offer-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.fullscreen-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: #005f6a;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
  line-height: 0;
  z-index: 10;
}
.fullscreen-btn:hover { opacity: 1; }

/* Video wrap (legacy) */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }

/* Video thumbnail with play button */
.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
}
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -45%);
  width: 64px;
  height: 64px;
  background: rgba(0,95,106,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

/* Two-column video section – see full rules at bottom of file */

/* Generic two-col */
.two-col { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col-60-40 { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .two-col-60-40 { grid-template-columns: 3fr 2fr; } }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrapper { overflow-x: auto; margin-top: 1.5rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;
}
.comparison-table th {
  background: #005f6a;
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f7f9fa; }
.comparison-table td:first-child { font-weight: 500; color: #1a2e35; }

/* Generic table */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { background: #005f6a; color: #fff; padding: 0.75rem 1rem; text-align: left; }
td { padding: 0.65rem 1rem; border-bottom: 1px solid #e5e7eb; }
tr:nth-child(even) td { background: #f7f9fa; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-teal { background: #e0f0f2; color: #005f6a; }
.badge-brand { background: #005f6a; color: #fff; }
.badge-light { background: #e8f0ef; color: #005f6a; }
.badge-signal { background: #e09c5b; color: #fff; }
.badge-sage { background: #afbdb7; color: #1a2e35; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}
@media (min-width: 640px) { .about-feature-row { grid-template-columns: 200px 1fr; } }
.about-feature-row--reverse { direction: rtl; }
.about-feature-row--reverse > * { direction: ltr; }
.about-feature-img img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 180px;
}
.about-feature-img--portrait img {
  object-fit: contain;
  max-height: 260px;
  background: transparent;
}
.about-person {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .about-person { grid-template-columns: 200px 1fr; } }
.person-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.person-bio h2 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.person-bio h3 { font-size: 1rem; color: #005f6a; font-weight: 500; margin-bottom: 0.75rem; }
.person-bio p { font-size: 0.95rem; color: #555; }

/* ============================================================
   PORTFOLIO / STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
.story-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.story-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.story-card img { width: 100%; height: 200px; object-fit: cover; }
.story-card > div { padding: 1.25rem; flex: 1; }
.story-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.story-card p { font-size: 0.875rem; color: #555; }
.story-client { font-size: 0.8rem; color: #888; margin-bottom: 0.5rem; }
.story-quote { font-size: 1.25rem; font-style: italic; color: #374151; border-left: 4px solid #005f6a; padding-left: 1.25rem; margin: 1.5rem 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.8rem; color: #6b7280; padding: 0.75rem 0; }
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: #005f6a; }
.breadcrumb span { margin: 0 0.35rem; }

/* ============================================================
   FOOTER
   ============================================================ */
/* Single-line footer bar */
.site-footer {
  background: #005f6a;
  color: rgba(255,255,255,0.9);
  padding: 0.55rem 0;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bar__brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  line-height: 1;
}
.footer-bar__brand img {
  display: block;
}
.footer-bar__right {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.footer-bar__right a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-bar__right a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 639px) {
  .section { padding: 2.5rem 0; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .format-box { padding: 1.25rem; }
}

/* Testimonial Carousel */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.testimonial-track .testimonial-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .testimonial-track .testimonial-card { flex: 0 0 100%; }
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-prev,
.testimonial-next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #005f6a;
  background: transparent;
  color: #005f6a;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.testimonial-prev:hover,
.testimonial-next:hover { background: #005f6a; color: #fff; }

/* Logo grid responsive */
@media (max-width: 900px) {
  .logo-grid-responsive { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 600px) {
  .logo-grid-responsive { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Btn group */
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Lead large (intro text below hero) – centered, constrained, bold */
.lead-large {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #1a2e35;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* link-teal */
.link-teal { color: #005f6a; }
.link-teal:hover { color: #004d57; }

/* ============================================================
   SITUATION LIST (Typische Situationen)
   ============================================================ */
.situation-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.situation-item {
  padding: 1.1rem 1.4rem;
  background: #fff;
  border-radius: 0.75rem;
  border-left: 4px solid #005f6a;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
/* All paragraphs inside situation-item: no default margin */
.situation-item p {
  margin: 0 !important;
  padding: 0 !important;
}
.situation-bold {
  font-weight: 700 !important;
  color: #1a2e35;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}
.situation-desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.55;
  display: block;
  margin-top: 0.2rem !important;
}

/* ============================================================
   APPROACH CARDS (Unser Ansatz – three-col-grid)
   ============================================================ */
.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .three-col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .three-col-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
/* Two-column grid for 2x2 infoboxes */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .two-col-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.approach-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: none;
  border: 1px solid rgba(0,95,106,0.5);
}
.approach-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e35;
  margin-bottom: 0.4rem;
}
.approach-card p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}

/* ============================================================
   KI WIRKT SECTION (themen-list / thema-item)
   ============================================================ */
.themen-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.thema-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.thema-item:last-child { border-bottom: none; }
/* Override h3 inside thema-item to look like body text */
.thema-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #005f6a;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
}
.thema-item h3 a {
  color: #005f6a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}
.thema-item h3 a:hover { text-decoration: underline; color: #004d57; }
.thema-item p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   TWO-COL VIDEO FIXES
   ============================================================ */
.two-col-video {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .two-col-video {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
/* Right column: always top-aligned, no vertical centering */
.two-col-video__right {
  align-self: start;
  padding-top: 0;
}
.two-col-video__right h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.two-col-video__right p { color: #555; margin-bottom: 1rem; }

/* Success Story meta table */
.story-meta-table { border-collapse: collapse; width: 100%; max-width: 580px; margin: 0 0 0.5rem; border: 1px solid #d1dbd9; border-radius: 0.5rem; overflow: hidden; font-size: 0.95rem; }
.story-meta-table th, .story-meta-table td { padding: 0.6rem 1rem; text-align: left; vertical-align: top; }
.story-meta-table th { font-weight: 600; color: #1a2e35; background: #f0f7f7; width: 38%; border-right: 1px solid #d1dbd9; }
.story-meta-table td { color: #444; }
.story-meta-table tr + tr th, .story-meta-table tr + tr td { border-top: 1px solid #d1dbd9; }

/* Print */
@media print { .site-header, .site-footer, .nav-hamburger { display: none; } }
