/* landing-token: 9b9a */
/* ============================================
   Kornblüte Bäckerei – Theme CSS
   Palette: primary=#D4A843, secondary=#6B4226
            bg=#FAF7F0, text=#3D2B1F
   ============================================ */

/* === Root Variables === */
:root {
  --kb-primary: #D4A843;
  --kb-primary-dark: #b8922e;
  --kb-secondary: #6B4226;
  --kb-secondary-light: #8a5a38;
  --kb-bg: #FAF7F0;
  --kb-bg-alt: #F2EDE0;
  --kb-text: #3D2B1F;
  --kb-text-light: #6B5444;
  --kb-white: #ffffff;
  --kb-border: #E8DEC8;
  --kb-cornflower: #6495ED;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 43, 31, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.16);
  --transition: all 0.25s ease;
}

/* === Base Reset & Typography === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--kb-bg);
  color: var(--kb-text);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--kb-text);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--kb-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--kb-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Navigation === */
.navbar-kornbluete {
  background-color: var(--kb-white);
  border-bottom: 2px solid var(--kb-primary);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand-kb {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kb-secondary) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand-kb:hover {
  color: var(--kb-primary) !important;
}

.brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-link-kb {
  color: var(--kb-text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-link-kb:hover,
.nav-link-kb.active {
  color: var(--kb-primary) !important;
  background-color: rgba(212, 168, 67, 0.08);
}

.navbar-toggler-kb {
  border-color: var(--kb-primary);
  padding: 0.35rem 0.65rem;
}

.navbar-toggler-kb:focus {
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.3);
}

/* === Hero Section (Split Layout) === */
.hero-split {
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  background-color: var(--kb-bg);
  overflow: hidden;
}

.hero-image-col {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 66, 38, 0.15) 0%, transparent 60%);
}

.hero-text-col {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  padding: 3rem 3.5rem;
  background-color: var(--kb-bg);
}

.hero-text-inner {
  max-width: 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(212, 168, 67, 0.15);
  color: var(--kb-secondary);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--kb-text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--kb-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--kb-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--kb-text-light);
  font-weight: 600;
}

.trust-item svg {
  color: var(--kb-primary);
  flex-shrink: 0;
}

/* === Buttons === */
.btn-kb-primary {
  background-color: var(--kb-primary);
  color: var(--kb-text);
  border: 2px solid var(--kb-primary);
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-kb-primary:hover {
  background-color: var(--kb-primary-dark);
  border-color: var(--kb-primary-dark);
  color: var(--kb-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-kb-secondary {
  background-color: transparent;
  color: var(--kb-secondary);
  border: 2px solid var(--kb-secondary);
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-kb-secondary:hover {
  background-color: var(--kb-secondary);
  color: var(--kb-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-kb-outline {
  background-color: transparent;
  color: var(--kb-primary);
  border: 2px solid var(--kb-primary);
  padding: 0.65rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-kb-outline:hover {
  background-color: var(--kb-primary);
  color: var(--kb-text);
}

/* === Sections === */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-bg-alt {
  background-color: var(--kb-bg-alt);
}

.section-bg-dark {
  background-color: var(--kb-secondary);
  color: var(--kb-white);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--kb-white);
}

.section-bg-dark p {
  color: rgba(250, 247, 240, 0.85);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kb-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--kb-text);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--kb-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* === Divider === */
.kb-divider {
  width: 60px;
  height: 3px;
  background: var(--kb-primary);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.kb-divider-center {
  margin: 0 auto 1.5rem;
}

/* === Cards === */
.kb-card {
  background: var(--kb-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--kb-border);
}

.kb-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.kb-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.kb-card-body {
  padding: 1.5rem;
}

.kb-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kb-primary);
  margin-bottom: 0.5rem;
}

.kb-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--kb-text);
  margin-bottom: 0.5rem;
}

.kb-card-text {
  color: var(--kb-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.kb-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--kb-primary);
  font-weight: 700;
}

/* === Feature Icons === */
.feature-icon-box {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.feature-icon-box:hover .feature-icon-wrap {
  background: rgba(212, 168, 67, 0.25);
  transform: scale(1.05);
}

.feature-icon-wrap svg {
  color: var(--kb-primary);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--kb-text);
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--kb-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--kb-secondary) 0%, #4a2d18 100%);
  color: var(--kb-white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A843' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  color: var(--kb-white);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-header p {
  color: rgba(250, 247, 240, 0.8);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
}

.breadcrumb-kb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  position: relative;
}

.breadcrumb-kb a {
  color: rgba(212, 168, 67, 0.9);
}

.breadcrumb-kb a:hover {
  color: var(--kb-primary);
}

.breadcrumb-kb span {
  color: rgba(250, 247, 240, 0.6);
}

/* === Product Grid === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--kb-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--kb-border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  color: var(--kb-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--kb-text);
  margin-bottom: 0.4rem;
}

.product-card-desc {
  color: var(--kb-text-light);
  font-size: 0.85rem;
  flex: 1;
  margin-bottom: 0.75rem;
}

.product-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--kb-primary);
}

/* === Forms === */
.kb-form-section {
  background: var(--kb-white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--kb-border);
}

.form-label-kb {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--kb-text);
  margin-bottom: 0.4rem;
  display: block;
}

.form-control-kb {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--kb-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--kb-text);
  background-color: var(--kb-bg);
  transition: var(--transition);
  outline: none;
}

.form-control-kb:focus {
  border-color: var(--kb-primary);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
  background-color: var(--kb-white);
}

.form-control-kb::placeholder {
  color: #b5a594;
}

.form-select-kb {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 2px solid var(--kb-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--kb-text);
  background-color: var(--kb-bg);
  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='%236B4226' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.form-select-kb:focus {
  border-color: var(--kb-primary);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.form-group-kb {
  margin-bottom: 1.25rem;
}

/* === Thank You Page === */
.confirmation-card {
  background: var(--kb-white);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--kb-primary);
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirmation-icon svg {
  color: var(--kb-primary);
}

/* === Footer === */
.footer-kb {
  background: linear-gradient(180deg, #2e2018 0%, #1e1510 100%);
  color: #c8bfb0;
  padding: 4rem 0 0;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--kb-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #a09285;
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--kb-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: #c8bfb0;
  font-size: 0.875rem;
  padding: 0.2rem 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--kb-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: #c8bfb0;
}

.footer-contact-item svg {
  color: var(--kb-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding: 1.25rem 0;
  margin-top: 3rem;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: #7a7068;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #7a7068;
}

.footer-legal-links a:hover {
  color: var(--kb-primary);
}

/* === Bio Banner === */
.bio-banner {
  background: linear-gradient(90deg, var(--kb-secondary) 0%, var(--kb-secondary-light) 100%);
  color: var(--kb-white);
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

.bio-banner strong {
  color: var(--kb-primary);
}

/* === Testimonials / Quote === */
.kb-quote {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--kb-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--kb-primary);
}

.kb-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.2);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}

.kb-quote-text {
  font-style: italic;
  color: var(--kb-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  position: relative;
}

.kb-quote-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--kb-text);
}

/* === Legal Pages === */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--kb-secondary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--kb-border);
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--kb-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--kb-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.legal-content th {
  background: var(--kb-bg-alt);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--kb-text);
  border: 1px solid var(--kb-border);
}

.legal-content td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--kb-border);
  color: var(--kb-text-light);
  vertical-align: top;
}

/* === Team Section === */
.team-card {
  background: var(--kb-white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--kb-border);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-avatar svg {
  color: var(--kb-secondary);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--kb-text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--kb-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--kb-text-light);
  line-height: 1.6;
}

/* === Values Section === */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--kb-border);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.values-icon svg {
  color: var(--kb-primary);
}

.values-content h4 {
  font-size: 1rem;
  color: var(--kb-text);
  margin-bottom: 0.25rem;
}

.values-content p {
  font-size: 0.875rem;
  color: var(--kb-text-light);
  margin: 0;
  line-height: 1.6;
}

/* === CTA Band === */
.cta-band {
  background: linear-gradient(135deg, var(--kb-primary) 0%, #b8922e 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--kb-text);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(61, 43, 31, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-cta-dark {
  background-color: var(--kb-text);
  color: var(--kb-white);
  border: 2px solid var(--kb-text);
  padding: 0.85rem 2.25rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-cta-dark:hover {
  background-color: transparent;
  color: var(--kb-text);
}

/* === Opening Hours === */
.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--kb-border);
  font-size: 0.9rem;
}

.opening-hours li:last-child {
  border-bottom: none;
}

.opening-hours .day {
  font-weight: 700;
  color: var(--kb-text);
}

.opening-hours .hours {
  color: var(--kb-text-light);
}

.opening-hours .closed {
  color: #c0a898;
  font-style: italic;
}

/* === Alert / Notice === */
.kb-notice {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--kb-text-light);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.kb-notice svg {
  color: var(--kb-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* === Responsive === */
@media (max-width: 991.98px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .hero-image-col,
  .hero-text-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-image-col {
    min-height: 320px;
  }

  .hero-text-col {
    padding: 2.5rem 1.5rem;
  }

  .hero-text-inner {
    max-width: 100%;
  }

  .section-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .kb-form-section {
    padding: 1.5rem;
  }
}

/* === Utility Classes === */
.text-kb-primary { color: var(--kb-primary) !important; }
.text-kb-secondary { color: var(--kb-secondary) !important; }
.text-kb-light { color: var(--kb-text-light) !important; }
.bg-kb-primary { background-color: var(--kb-primary) !important; }
.bg-kb-secondary { background-color: var(--kb-secondary) !important; }
.bg-kb-alt { background-color: var(--kb-bg-alt) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.fw-semibold { font-weight: 600 !important; }

/* === Scroll & Animation === */
@media (prefers-reduced-motion: no-preference) {
  .kb-card,
  .product-card,
  .team-card,
  .feature-icon-box {
    animation-duration: 0.3s;
    animation-fill-mode: both;
  }
}

/* === Print === */
@media print {
  .navbar-kornbluete,
  .bio-banner,
  #cookie-banner,
  .footer-kb {
    display: none !important;
  }
}
