

/* ==========================================================================
   MISSING COMPONENT STYLES — added 2026-08-23
   ========================================================================== */

/* ==========================================================================
   FLYER-INSPIRED COMPONENTS — Navy Strip, Amber Band, Brush Highlight
   ========================================================================== */

/* ── NAVY USP STRIP (white on #1B2A4A) ──────────────────────────────────── */
.section-navy {
  background: var(--color-primary);
  padding: 56px 0;
}

.usps-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.usp-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.usp-icon-ring {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon-ring i {
  color: var(--color-accent);
  font-size: 1.15rem;
}

.usp-item h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.usp-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .usps-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .usps-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── AMBER CALLOUT BAND (navy text on #F5A623) ───────────────────────────── */
.callout-amber {
  background: var(--color-accent);
  padding: 36px 0;
}

.callout-amber-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.callout-amber-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-amber-icon i {
  color: var(--color-accent);
  font-size: 1.4rem;
}

.callout-amber p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 640px) {
  .callout-amber p {
    font-size: 1rem;
  }
}

/* ── BRUSHSTROKE HIGHLIGHT (organic painted-edge background) ─────────────── */
/*
  Usage: wrap words in <span class="brush-mark">text</span>
  Works on both dark and light backgrounds.
  Default: amber highlight (use on light/white backgrounds)
  Modifier .brush-mark--navy: dark highlight (use on amber/light backgrounds)
*/
.brush-mark {
  position: relative;
  display: inline;
  z-index: 1;
  white-space: nowrap;
}

.brush-mark::before {
  content: '';
  position: absolute;
  left: -5px;
  right: -5px;
  top: -3px;
  bottom: -3px;
  background: var(--color-accent);
  /* Irregular border-radius = organic brushstroke feel */
  border-radius: 4px 2px 6px 1px / 6px 3px 4px 2px;
  transform: rotate(-1.2deg) skewX(-2deg);
  z-index: -1;
  opacity: 0.92;
}

.brush-mark--navy::before {
  background: var(--color-primary);
}

/* Brushstroke banner (full-width heading bar, like "SCHNELL, ZUVERLÄSSIG & STRESSFREI!") */
.brush-banner {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border-radius: 4px 2px 6px 1px / 6px 3px 4px 2px;
  transform: rotate(-0.6deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
}



/* Background surface utility */
.bg-surface {
  background: var(--bg-secondary);
}

/* Hero media (image side of split hero) */
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  align-self: center;
}

.hero-media img,
.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.active,
.faq-item:focus-within {
  box-shadow: var(--shadow-soft);
  border-color: rgba(245, 163, 35, 0.4);
}

.brand-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: inherit;
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--color-accent-hover);
}

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 163, 35, 0.15);
}

.form-control::placeholder {
  color: #94a3b8;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SEO BLOCK (pre-footer)
   ========================================================================== */

.seo-block {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.seo-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.seo-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 900px;
}

.seo-block a {
  color: var(--color-accent-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: #f8fafc;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
