/* vertrauensvideo.ch – Ergänzungen zur statischen Version */

/* Marquee: über einen Inhaltsblock laufen lassen (nahtlose Schleife) */
@keyframes vv-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(var(--marquee-block) * -1)); } }
.con-kit-component-marquee__content.vv-marquee-running { animation: vv-marquee var(--marquee-speed, 20s) linear infinite; }

/* Slider: geklonte/inaktive Items nicht anklickbar überlagern */
.con-kit-component-slider-arrow { cursor: pointer; }
.con-kit-component-slider-item--inactive .con-kit-molecule-grid-item { pointer-events: none; }

/* Accordion: geschlossen wirklich zu */
.con-kit-component-list-item-accordion__body { height: 0; }

/* Cookie-Hinweis */
.vv-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100000; display: flex; justify-content: center; padding: 16px; pointer-events: none; }
.vv-cookie__inner { pointer-events: auto; max-width: 720px; width: 100%; background: #fff; color: #091F43; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,.25); padding: 20px 24px; display: flex; gap: 20px; align-items: center; font-family: 'Instrument Sans', system-ui, sans-serif; font-size: 14px; line-height: 1.45; }
.vv-cookie__text a { color: #18607B; text-decoration: underline; }
.vv-cookie__actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.vv-cookie__btn { border: 0; border-radius: 8px; padding: 10px 18px; font: inherit; font-weight: 600; cursor: pointer; background: #FFA500; color: #091F43; }
.vv-cookie__btn--ghost { background: transparent; color: #18607B; text-decoration: underline; font-weight: 500; }
@media (max-width: 640px) { .vv-cookie__inner { flex-direction: column; align-items: stretch; } .vv-cookie__actions { flex-direction: row; justify-content: flex-end; } }

/* Kontaktformular */
.vv-form { width: 100%; max-width: 640px; margin: 0 auto; display: grid; gap: 16px; font-family: 'Instrument Sans', system-ui, sans-serif; color: #091F43; }
.vv-form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .vv-form__row { grid-template-columns: 1fr; } }
.vv-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.vv-form input, .vv-form textarea { width: 100%; box-sizing: border-box; font: inherit; font-weight: 400; font-size: 16px; padding: 14px 16px; border: 1px solid rgba(9,31,67,.2); border-radius: 8px; background: #fff; color: #091F43; outline: none; transition: border-color .2s, box-shadow .2s; }
.vv-form input:focus, .vv-form textarea:focus { border-color: #18607B; box-shadow: 0 0 0 3px rgba(24,96,123,.15); }
.vv-form textarea { min-height: 140px; resize: vertical; }
.vv-form__consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 13px !important; line-height: 1.45; }
.vv-form__consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.vv-form__consent a { color: #18607B; text-decoration: underline; }
.vv-form button[type=submit] { border: 0; border-radius: 8px; background: #FFA500; color: #fff; font: inherit; font-weight: 600; font-size: 16px; padding: 16px 28px; cursor: pointer; transition: transform .15s, filter .15s; }
.vv-form button[type=submit]:hover { filter: brightness(1.05); transform: translateY(-1px); }
.vv-form button[type=submit]:disabled { opacity: .6; cursor: wait; }
.vv-form__status { min-height: 1.4em; font-size: 15px; }
.vv-form__status--ok { color: #1a8a3c; font-weight: 600; }
.vv-form__status--err { color: #c0392b; font-weight: 600; }
.vv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Kontaktseite / 404 */
.vv-contact { width: 100%; max-width: 720px; margin: 0 auto; padding: 24px 0 8px; font-family: 'Instrument Sans', system-ui, sans-serif; color: #091F43; }
.vv-contact__intro { text-align: center; margin-bottom: 36px; }
.vv-contact__title { font-size: clamp(30px, 4.5vw, 44px); font-weight: 600; line-height: 1.15; letter-spacing: -0.4px; margin: 0 0 14px; }
.vv-contact__sub { font-size: 18px; line-height: 1.5; margin: 0; opacity: .8; }
.vv-contact__alt { text-align: center; font-size: 14px; opacity: .8; margin: 8px 0 0; }
.vv-contact__alt a { color: #18607B; }
.vv-notfound { text-align: center; padding: 60px 0; }
.vv-notfound__code { font-size: 14px; letter-spacing: 3px; font-weight: 600; color: #FFA500; margin: 0 0 8px; }
.vv-btn { display: inline-block; background: #FFA500; color: #fff; text-decoration: none; font-weight: 600; padding: 14px 26px; border-radius: 8px; margin: 18px 6px 0; }
.vv-btn--ghost { background: transparent; color: #18607B; border: 1px solid rgba(24,96,123,.4); }

/* Mobile-Menü (Burger) */
.vv-menu { position: fixed; inset: 0; z-index: 100001; background: #000; color: #fff; display: flex; flex-direction: column; padding: 16px 24px 32px; font-family: 'Instrument Sans', system-ui, sans-serif; overflow-y: auto; opacity: 0; transform: translateY(-10px); transition: opacity .25s ease, transform .3s ease; }
.vv-menu.vv-menu--open { opacity: 1; transform: none; }
.vv-menu__bar { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.vv-menu__logo img { height: 44px; width: auto; display: block; }
.vv-menu__close { background: transparent; border: 0; color: #fff; font-size: 26px; line-height: 1; padding: 10px 12px; cursor: pointer; }
.vv-menu__nav { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.vv-menu__nav a { color: #fff; text-decoration: none; font-size: 26px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); letter-spacing: -0.3px; }
.vv-menu__nav a.vv-menu__cta { border: 0; margin-top: 20px; background: #FFA500; color: #fff; text-align: center; border-radius: 8px; padding: 18px; font-size: 18px; }
.vv-menu__social { display: flex; gap: 28px; margin-top: auto; padding-top: 40px; justify-content: center; }
.vv-menu__social a { color: #fff; opacity: .85; }
body.vv-menu-open { overflow: hidden; }
.vv-menu[hidden] { display: none; }
