/* ============================================================
   KKH Kaufmännische Krankenkasse – Demo Styles
   Brand colours: #009fe3 (primary), #003865 (dark), #e30613 (accent)
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --kkh-blue:       #009fe3;
    --kkh-dark-blue:  #003865;
    --kkh-red:        #e30613;
    --kkh-white:      #ffffff;
    --kkh-light-grey: #f5f5f5;
    --kkh-mid-grey:   #e0e0e0;
    --kkh-text:       #333333;
    --kkh-font:       Metropolis, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --container-max:  100%;
    --radius:         4px;
    --transition:     0.2s ease;
}

html { font-size: 16px; }

body {
    font-family: var(--kkh-font);
    color: var(--kkh-text);
    background: var(--kkh-white);
    line-height: 1.6;
}

a { color: var(--kkh-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--kkh-dark-blue); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    color: var(--kkh-dark-blue);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--kkh-blue);
    color: var(--kkh-white);
    border-color: var(--kkh-blue);
}
.btn-primary:hover {
    background: var(--kkh-dark-blue);
    border-color: var(--kkh-dark-blue);
    color: var(--kkh-white);
    text-decoration: none;
}

.btn-accent {
    background: var(--kkh-red);
    color: var(--kkh-white);
    border-color: var(--kkh-red);
}
.btn-accent:hover {
    background: #b50510;
    border-color: #b50510;
    color: var(--kkh-white);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--kkh-blue);
    border-color: var(--kkh-blue);
}
.btn-outline:hover {
    background: var(--kkh-blue);
    color: var(--kkh-white);
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    color: var(--kkh-white);
    border-color: var(--kkh-white);
}
.btn-outline-white:hover {
    background: var(--kkh-white);
    color: var(--kkh-dark-blue);
    text-decoration: none;
}

/* ── Top bar ──────────────────────────────────────────────── */
.kkh-topbar {
    background: rgb(231, 233, 237);
    font-size: 18px;
    padding: 0.35rem 48px;
    width: 100%;
    box-sizing: border-box;
}
.kkh-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.kkh-topbar-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.kkh-topbar-links a {
    color: var(--kkh-dark-blue);
    padding: 0 0.75rem;
    text-decoration: none;
    white-space: nowrap;
}
.kkh-topbar-links a:first-child { padding-left: 0; font-weight: 700; }
.kkh-topbar-links a + a {
    border-left: 1px solid #c0c8d0;
}
.kkh-topbar-links a:hover { color: var(--kkh-blue); text-decoration: none; }

/* Topbar right controls */
.kkh-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--kkh-dark-blue);
}
.kkh-lang-select {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    white-space: nowrap;
}
.kkh-lang-select strong { font-weight: 700; }
.kkh-contrast-toggle {
    display: flex;
    align-items: center;
    width: 38px;
    height: 20px;
    background: var(--kkh-dark-blue);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
}
.kkh-contrast-thumb {
    width: 16px;
    height: 16px;
    background: var(--kkh-white);
    border-radius: 50%;
    display: block;
}
.kkh-topbar-account {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--kkh-dark-blue);
    display: flex;
    align-items: center;
    padding: 0;
}
.kkh-topbar-account:hover { color: var(--kkh-blue); }

/* ── Header / navigation ──────────────────────────────────── */
.kkh-header {
    background: var(--kkh-white);
    border-bottom: 1px solid #e0e4e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.kkh-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1716px;
    padding: 1rem 48px;
    margin-left: auto;
    margin-right: auto;
    transition: padding var(--transition);
}

/* Sticky state – toggled via JS when page is scrolled */
.kkh-header.is-sticky .container {
    height: 88px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Logo – plain bold wordmark */
.kkh-logo {
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}
.kkh-logo-wordmark {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--kkh-dark-blue);
    letter-spacing: -1px;
    display: block;
}

.kkh-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.kkh-nav a {
    color: var(--kkh-dark-blue);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}
.kkh-nav a:hover,
.kkh-nav a.active {
    color: var(--kkh-blue);
    background: var(--kkh-light-grey);
    text-decoration: none;
}

.kkh-nav a.kkh-nav-search {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.kkh-header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.375rem;
    flex-shrink: 0;
    transition: gap var(--transition);
}

.kkh-header.is-sticky .kkh-header-actions {
    flex-direction: row;
    align-items: center;
}

/* Pill CTA buttons in header */
.btn-mitglied {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kkh-dark-blue);
    color: var(--kkh-white);
    border: none;
    border-radius: 999px;
    min-height: 60px;
    min-width: 7.5em;
    padding: 0.5rem 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}
.btn-mitglied:hover {
    background: #002548;
    color: var(--kkh-white);
    text-decoration: none;
}
.btn-meine-kkh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: #f07c60;
    color: var(--kkh-dark-blue);
    border: none;
    border-radius: 999px;
    min-height: 60px;
    min-width: 7.5em;
    padding: 0.5rem 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}
.btn-meine-kkh:hover {
    background: #e06a4e;
    color: var(--kkh-dark-blue);
    text-decoration: none;
}

/* ── Hero carousel ────────────────────────────────────────── */
.kkh-hero {
    position: relative;
    overflow: hidden;
}
.kkh-hero-slides { position: relative; }
.kkh-hero-slide {
    position: relative;
    display: block;
    overflow: hidden;
}
.kkh-hero-slide picture {
    display: block;
    line-height: 0;
}
.kkh-hero-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 746px;
    object-fit: cover;
    object-position: center;
}

/* Card wrapper – absolutely positioned over the image, bottom-left */
.kkh-hero-slide .card-wrapper {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 2;
    width: min(520px, 42%);
}

/* Base bubble card */
.card-bubble {
    padding: 1.75rem 2rem;
}

/* Top card – salmon (bg-secondary in KKH) */
.card-bubble.bg-secondary {
    background: #f07c60;
    position: relative;
    z-index: 2;
    margin-bottom: -0.875rem;
    border-top-left-radius: 0;
    border-top-right-radius: 71px;
    border-bottom-right-radius: 71px;
    border-bottom-left-radius: 71px;
}
.card-bubble.bg-secondary .card-title {
    color: var(--kkh-dark-blue);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Bottom card – dark navy (bg-primary in KKH) */
.card-bubble.bg-primary {
    background: var(--kkh-dark-blue);
    position: relative;
    z-index: 1;
    border-top-left-radius: 71px;
    border-top-right-radius: 71px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 71px;
}
.card-bubble.bg-primary .card-title {
    color: #fff;
    font-size: 1.625rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.25;
}

/* Internal link */
.link-internal {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.link-internal::after {
    content: '\2192';
    text-decoration: none;
    display: inline-block;
}
.link-internal:hover { color: var(--kkh-blue); }

/* Carousel dots – top center */
.kkh-hero-dots {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.kkh-hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    border: 2px solid rgba(0,56,101,0.3);
    transition: background var(--transition);
}
.kkh-hero-dot.active { background: var(--kkh-dark-blue); border-color: var(--kkh-dark-blue); }

/* ── Notice banner ────────────────────────────────────────── */
.kkh-notice {
    background: #d6eaf8;
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    text-align: center;
}
.kkh-notice.warning {
    background: #fff3cd;
}
.kkh-notice h4 { color: #0a1e49; margin-bottom: 1rem; font-size: 1.875rem; font-weight: 700; }
.kkh-notice p { color: #0a1e49; font-size: 1.125rem; line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* ── Sections (shared) ───────────────────────────────────── */
.kkh-section {
    padding: 4rem 0;
}
.kkh-section-light { background: var(--kkh-light-grey); }
.kkh-section-blue  { background: var(--kkh-dark-blue); color: var(--kkh-white); }
.kkh-section-blue h2, .kkh-section-blue h3 { color: var(--kkh-white); }

.kkh-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.kkh-section-header h2 { margin-bottom: 0.5rem; }
.kkh-section-header p { color: #555; max-width: 640px; margin: 0 auto; }

/* ── Values block ─────────────────────────────────────────── */
.kkh-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.kkh-value-item {
    text-align: center;
    padding: 2.5rem 2rem;
}
.kkh-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--kkh-dark-blue);
    width: 64px; 
    height: 64px;
}
.kkh-value-item h3 { color: #0a1e49; margin-bottom: 1rem; font-size: 1.25rem; font-weight: 700; }
.kkh-value-item p  { color: #333; font-size: 1.25rem; line-height: 1.6; }

/* ── Card grid ────────────────────────────────────────────── */
.kkh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.kkh-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
}
.kkh-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}
.kkh-card-body {
    padding: 1.25rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.kkh-card-body h3 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.kkh-card-body h3 a { color: var(--kkh-blue); text-decoration: underline; text-underline-offset: 3px; }
.kkh-card-body h3 a:hover { color: var(--kkh-dark-blue); }
.kkh-card-body p { color: #333; font-size: 1rem; line-height: 1.6; margin: 0; }

.kkh-card-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--kkh-blue) 0%, var(--kkh-dark-blue) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* ── Text + image section ─────────────────────────────────── */
.kkh-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.kkh-text-image.image-right .kkh-text-image-img { order: 2; }
.kkh-text-image.image-right .kkh-text-image-text { order: 1; }
.kkh-text-image-img { border-radius: 8px; overflow: hidden; }
.kkh-text-image-img img { width: 100%; height: 320px; object-fit: cover; }
.kkh-text-image-img .placeholder-img {
    width: 100%; height: 320px;
    background: linear-gradient(135deg, var(--kkh-blue) 0%, var(--kkh-dark-blue) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: rgba(255,255,255,0.4);
}
.kkh-text-image-text h2 { margin-bottom: 1rem; }
.kkh-text-image-text p  { color: #555; margin-bottom: 1.5rem; }

/* ── Target groups ────────────────────────────────────────── */
.kkh-target-groups-header {
    margin-bottom: 2rem;
}
.kkh-target-groups-header h2 { margin-bottom: 0.5rem; }
.kkh-target-groups-header p  { color: #555; }
.kkh-target-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.kkh-target-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--kkh-dark-blue);
    transition: transform var(--transition);
}
.kkh-target-card:hover { transform: scale(1.02); }
.kkh-target-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity var(--transition);
}
.kkh-target-card:hover img { opacity: 0.9; }
.kkh-target-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1rem 1.25rem;
    background: linear-gradient(0deg, rgba(0,56,101,0.85) 0%, transparent 100%);
    color: var(--kkh-white);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
}
.kkh-target-card-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--kkh-blue) 0%, var(--kkh-dark-blue) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.4);
}

/* ── Testimonials ─────────────────────────────────────────── */
.kkh-testimonials {
    padding: 4rem 0;
    background: var(--kkh-light-grey);
}
.kkh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.kkh-testimonial {
    background: var(--kkh-white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--kkh-mid-grey);
    position: relative;
}
.kkh-testimonial::before {
    content: '\201C';
    font-size: 4rem;
    line-height: 1;
    color: var(--kkh-blue);
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-family: Georgia, serif;
    opacity: 0.4;
}
.kkh-testimonial-quote {
    color: #444;
    font-style: italic;
    margin-bottom: 1.25rem;
    padding-top: 1.25rem;
}
.kkh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.kkh-testimonial-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.kkh-testimonial-author-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--kkh-blue);
    display: flex; align-items: center; justify-content: center;
    color: var(--kkh-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.kkh-testimonial-author strong { color: var(--kkh-dark-blue); font-size: 0.9375rem; }

/* ── Newsletter / CTA banner ──────────────────────────────── */
.kkh-cta-banner {
    background: var(--kkh-blue);
    color: var(--kkh-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.kkh-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,56,101,0.3) 0%, transparent 60%);
    pointer-events: none;
}
.kkh-cta-banner .container { position: relative; }
.kkh-cta-banner h2 { color: var(--kkh-white); margin-bottom: 0.75rem; }
.kkh-cta-banner p  { opacity: 0.9; max-width: 560px; margin: 0 auto 1.75rem; font-size: 1.0625rem; }
.kkh-cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.kkh-breadcrumb {
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #666;
    border-bottom: 1px solid var(--kkh-mid-grey);
    background: var(--kkh-white);
}
.kkh-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; list-style: none; }
.kkh-breadcrumb li + li::before { content: '/'; color: #aaa; }
.kkh-breadcrumb a  { color: var(--kkh-blue); }

/* ── Page hero (interior pages) ───────────────────────────── */
.kkh-page-hero {
    position: relative;
    background: var(--kkh-dark-blue);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.kkh-page-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.kkh-page-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2rem;
}
.kkh-page-hero-content h1 { color: var(--kkh-white); }

/* ── Content area ─────────────────────────────────────────── */
.kkh-content {
    padding: 3rem 0;
}
.kkh-content-body {
    max-width: 800px;
}
.kkh-content-body h2 { margin: 2rem 0 0.75rem; }
.kkh-content-body h3 { margin: 1.5rem 0 0.5rem; color: var(--kkh-blue); }
.kkh-content-body ul,
.kkh-content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.kkh-content-body li { margin-bottom: 0.375rem; }

/* ── A-Z list (Leistungen) ────────────────────────────────── */
.kkh-az-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 2rem;
}
.kkh-az-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--kkh-light-grey);
    color: var(--kkh-dark-blue);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.kkh-az-filter a:hover,
.kkh-az-filter a.active {
    background: var(--kkh-blue);
    color: var(--kkh-white);
    text-decoration: none;
}

.kkh-leistungen-list { list-style: none; }
.kkh-leistungen-list h3 {
    font-size: 1rem;
    color: var(--kkh-dark-blue);
    border-bottom: 1px solid var(--kkh-mid-grey);
    padding-bottom: 0.75rem;
    margin: 0 0 1rem;
}
.kkh-leistungen-group { margin-bottom: 2.5rem; }
.kkh-leistungen-items { display: flex; flex-direction: column; gap: 0.75rem; }
.kkh-leistung-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: var(--kkh-white);
    border: 1px solid var(--kkh-mid-grey);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.kkh-leistung-item:hover {
    border-color: var(--kkh-blue);
    box-shadow: 0 2px 8px rgba(0,159,227,0.1);
}
.kkh-leistung-item a { font-weight: 600; color: var(--kkh-dark-blue); font-size: 0.9375rem; }
.kkh-leistung-item a:hover { color: var(--kkh-blue); text-decoration: none; }
.kkh-leistung-item p { color: #666; font-size: 0.875rem; margin: 0.25rem 0 0; }

/* ── Versicherung page ────────────────────────────────────── */
.kkh-versicherung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.kkh-versicherung-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--kkh-white);
    border: 1px solid var(--kkh-mid-grey);
    border-radius: 8px;
    transition: box-shadow var(--transition);
}
.kkh-versicherung-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.kkh-versicherung-card img {
    width: 100px; height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.kkh-versicherung-card-text h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.kkh-versicherung-card-text p  { color: #555; font-size: 0.875rem; margin-bottom: 0.5rem; }

/* ── Stats row ────────────────────────────────────────────── */
.kkh-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
    padding: 3rem 0;
}
.kkh-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--kkh-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.kkh-stat-label { color: var(--kkh-dark-blue); font-weight: 600; font-size: 0.9375rem; }

/* ── Footer ───────────────────────────────────────────────── */
.kkh-footer {
    background: var(--kkh-dark-blue);
    color: var(--kkh-white);
    padding-top: 3rem;
}
.kkh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.kkh-footer-brand .kkh-logo-text strong { color: var(--kkh-white); }
.kkh-footer-brand .kkh-logo-text span   { color: var(--kkh-blue); }
.kkh-footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.kkh-footer-col h4 {
    color: var(--kkh-white);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.kkh-footer-col ul { list-style: none; }
.kkh-footer-col li { margin-bottom: 0.5rem; }
.kkh-footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color var(--transition);
}
.kkh-footer-col a:hover { color: var(--kkh-white); text-decoration: none; }

.kkh-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.kkh-footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--kkh-white);
    font-size: 0.875rem;
    font-weight: 700;
    transition: background var(--transition);
    text-decoration: none;
}
.kkh-footer-social a:hover { background: var(--kkh-blue); text-decoration: none; }

.kkh-footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}
.kkh-footer-bottom a { color: rgba(255,255,255,0.6); }
.kkh-footer-bottom a:hover { color: var(--kkh-white); text-decoration: none; }
.kkh-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Contact Form Block ───────────────────────────────────── */
.kkh-contact-form-section {
    background: transparent;
}

/* Form fieldsets / groups rendered as cards */
.kkh-contact-form-section .umbraco-forms-form fieldset,
.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-fieldset {
    background: #e9eaed;
    border: none;
    border-radius: 16px;
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 1.25rem;
}

.kkh-contact-form-section .umbraco-forms-form legend {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--kkh-dark-blue);
    margin-bottom: 1.5rem;
    float: none;
    width: auto;
    padding: 0;
}

/* Labels */
.kkh-contact-form-section .umbraco-forms-form label,
.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--kkh-dark-blue);
    margin-bottom: 0.5rem;
}

/* Text inputs & textarea */
.kkh-contact-form-section .umbraco-forms-form input[type="text"],
.kkh-contact-form-section .umbraco-forms-form input[type="email"],
.kkh-contact-form-section .umbraco-forms-form input[type="tel"],
.kkh-contact-form-section .umbraco-forms-form input[type="number"],
.kkh-contact-form-section .umbraco-forms-form input[type="date"],
.kkh-contact-form-section .umbraco-forms-form textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--kkh-dark-blue);
    border-radius: 0;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--kkh-dark-blue);
    font-family: var(--kkh-font);
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 1.5rem;
}

.kkh-contact-form-section .umbraco-forms-form input[type="text"]:focus,
.kkh-contact-form-section .umbraco-forms-form input[type="email"]:focus,
.kkh-contact-form-section .umbraco-forms-form input[type="tel"]:focus,
.kkh-contact-form-section .umbraco-forms-form input[type="number"]:focus,
.kkh-contact-form-section .umbraco-forms-form input[type="date"]:focus,
.kkh-contact-form-section .umbraco-forms-form textarea:focus {
    border-bottom-color: var(--kkh-blue);
}

/* Select / dropdown */
.kkh-contact-form-section .umbraco-forms-form select {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--kkh-dark-blue);
    border-radius: 0;
    padding: 0.5rem 2rem 0.5rem 0;
    font-size: 0.9375rem;
    color: #a0a8b4;
    font-family: var(--kkh-font);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23003865' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: border-color var(--transition);
}

.kkh-contact-form-section .umbraco-forms-form select:focus {
    border-bottom-color: var(--kkh-blue);
}

/* Radio buttons */
.kkh-contact-form-section .umbraco-forms-form .radiobuttonlist,
.kkh-contact-form-section .umbraco-forms-form .checkboxlist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    margin-bottom: 1.5rem;
}

.kkh-contact-form-section .umbraco-forms-form .radiobuttonlist label,
.kkh-contact-form-section .umbraco-forms-form .checkboxlist label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--kkh-dark-blue);
    cursor: pointer;
    margin-bottom: 0;
}

.kkh-contact-form-section .umbraco-forms-form input[type="radio"],
.kkh-contact-form-section .umbraco-forms-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid var(--kkh-dark-blue);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition), background var(--transition);
    margin: 0;
}

.kkh-contact-form-section .umbraco-forms-form input[type="checkbox"] {
    border-radius: var(--radius);
}

.kkh-contact-form-section .umbraco-forms-form input[type="radio"]:checked {
    background: var(--kkh-dark-blue);
    box-shadow: inset 0 0 0 5px #e9eaed;
}

.kkh-contact-form-section .umbraco-forms-form input[type="checkbox"]:checked {
    background: var(--kkh-dark-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Field containers / rows */
.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-field {
    margin-bottom: 1.25rem;
}

.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-field:last-child {
    margin-bottom: 0;
}

/* Validation messages */
.kkh-contact-form-section .umbraco-forms-form .field-validation-error,
.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-validation-message {
    color: var(--kkh-red);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    display: block;
}

/* Submit button */
.kkh-contact-form-section .umbraco-forms-form input[type="submit"],
.kkh-contact-form-section .umbraco-forms-form button[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid var(--kkh-blue);
    background: var(--kkh-blue);
    color: var(--kkh-white);
    font-family: var(--kkh-font);
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
    margin-top: 0.5rem;
}

.kkh-contact-form-section .umbraco-forms-form input[type="submit"]:hover,
.kkh-contact-form-section .umbraco-forms-form button[type="submit"]:hover {
    background: var(--kkh-dark-blue);
    border-color: var(--kkh-dark-blue);
}

/* Navigation buttons row */
.kkh-contact-form-section .umbraco-forms-form .umbraco-forms-navigation {
    margin-top: 1.5rem;
}

/* Placeholder colour */
.kkh-contact-form-section .umbraco-forms-form ::placeholder {
    color: #a0a8b4;
    opacity: 1;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.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;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .kkh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .kkh-nav { display: none; }
    .kkh-hero-slide .card-wrapper { left: 1.25rem; width: min(360px, 80%); }
    .kkh-text-image { grid-template-columns: 1fr; gap: 2rem; }
    .kkh-text-image.image-right .kkh-text-image-img { order: -1; }
    .kkh-footer-grid { grid-template-columns: 1fr; }
    .kkh-footer-bottom { flex-direction: column; text-align: center; }
    .kkh-section { padding: 2.5rem 0; }
    .kkh-target-groups-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .kkh-header.is-sticky .container { height: 60px; }
    .kkh-hero-slide .card-wrapper { left: 0.75rem; bottom: 1rem; width: min(280px, 85%); }
    .card-bubble { padding: 1.125rem 1.25rem; }
    .card-bubble.bg-secondary .card-title { font-size: 1.125rem; }
    .card-bubble.bg-primary .card-title { font-size: 1.25rem; }
    .kkh-stats { grid-template-columns: repeat(2, 1fr); }
    .kkh-target-groups-grid { grid-template-columns: repeat(2, 1fr); }
}
