/* ===== NeonShift Werkstatt – style.css ===== */
/*
  Brand: NeonShift Werkstatt
  Design: tech_futuristic (gradient backgrounds, neon accents, modern fonts, sleek UI)
  Colors: #232946 (Deep Navy), #eebbc3 (Neon Pink), #fffffe (Bright White)
  Fonts: 'Montserrat', 'Roboto', system-sans
  Layout: Flexbox only (NO CSS Grid/columns)
  Mobile-first, responsive, animated, accessible
  Includes: Responsive navigation, mobile menu, cookie consent banner & modal
  ---
  !! ALL layout containers use FLEXBOX ONLY !!
*/

/* ===== CSS RESET + NORMALIZATION ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ===== ROOT & THEME VARS ===== */
:root {
  --color-primary: #232946;
  --color-secondary: #eebbc3;
  --color-accent: #fffffe;
  --color-dark: #17192c;
  --color-bg: #1a1c2d;
  --color-neon: #00fff7;
  --color-shadow: rgba(35, 41, 70, 0.32);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --border-radius: 18px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-accent);
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-size: 16px;
  background: linear-gradient(135deg, var(--color-primary) 65%, var(--color-dark) 100%);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--color-neon);
  text-shadow: 0 0 12px var(--color-neon), 0 1px 3px var(--color-shadow);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-secondary);
  text-shadow: 0 0 4px var(--color-secondary);
}
h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--color-accent);
}
strong {
  color: var(--color-neon);
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 12px;
  color: var(--color-accent);
  position: relative;
  padding-left: 28px;
}
ul li img {
  height: 24px;
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px var(--color-neon));
}
ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-secondary);
  opacity: 0.66;
}
/* List icon override for lists with icons */
ul li img + span, ul li img + strong {
  margin-left: 5px;
}

.text-section ul li:before {
  display: none;
}

.text-section ul li {
  padding-left: 0;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.17rem;
  font-weight: 400;
  color: var(--color-accent);
}

/* ===== HEADER / NAVBAR ===== */
header {
  width: 100%;
  background: #191a2d;
  box-shadow: 0 4px 24px -6px var(--color-shadow);
  border-bottom: 1px solid rgba(35,41,70,0.12);
  position: relative;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 70px;
  min-height: 70px;
}
.logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  text-shadow: 0 0 6px var(--color-secondary);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--color-neon);
  color: var(--color-primary);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 0 18px 2px var(--color-neon);
  cursor: pointer;
  transition: filter 0.21s, color 0.21s, background 0.21s, box-shadow 0.21s;
  outline: none;
  margin-left: 14px;
}
.cta-btn:hover, .cta-btn:focus {
  filter: brightness(1.15) drop-shadow(0 0 16px var(--color-neon));
  box-shadow: 0 0 36px 6px var(--color-neon);
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* ===== MOBILE NAV ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-neon);
  cursor: pointer;
  padding: 8px 12px;
  outline: none;
  z-index: 999;
  transition: color 0.24s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 41, 70, 0.98);
  backdrop-filter: blur(7px);
  box-shadow: -2px 0 32px 0 var(--color-shadow);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,2,.4,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform 0.37s cubic-bezier(.37,1.2,.6,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  cursor: pointer;
  padding: 18px 26px 10px 0;
  align-self: flex-end;
  margin-right: 8px;
  margin-top: 8px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  width: 100%;
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 16px 0;
  width: 90vw;
  text-align: left;
  border-radius: 12px;
  transition: background 0.21s, color 0.2s;
  background: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 14px;
  }
 .cta-btn {
    margin-left: 7px;
  }
}
@media (max-width: 850px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 851px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO & SECTIONS ===== */
main {
  width: 100%;
  flex: 1 1 auto;
  background: transparent;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero {
  background: linear-gradient(100deg, var(--color-dark) 70%, var(--color-secondary) 230%);
  box-shadow: 0 6px 28px -14px var(--color-shadow), 0 0 24px 4px var(--color-dark);
  border-bottom: 1.5px solid var(--color-secondary);
  min-height: 230px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 32px 20px 32px 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-bg);
  border-radius: var(--border-radius);
  padding: 30px 26px;
  color: var(--color-accent);
  margin-bottom: 20px;
  box-shadow: 0 2px 22px -6px var(--color-shadow), 0 0 4px 1.5px var(--color-secondary);
  position: relative;
  min-width: 270px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .container {
    padding: 0 10px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 10px 0 var(--color-shadow), 0 0 3px 1.5px var(--color-secondary);
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 5px solid var(--color-neon);
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px -4px var(--color-neon), 0 1px 20px 0 var(--color-shadow);
  transform: translateY(-1.5px) scale(1.012);
}
.testimonial-card p {
  margin-bottom: 6px;
  font-size: 1.07rem;
  color: var(--color-primary);
}
.testimonial-card span {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-secondary);
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-dark);
  color: var(--color-accent);
  padding: 36px 0 18px 0;
  border-top: 1.5px solid var(--color-secondary);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0px;
}
.footer-nav a {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 5px;
  transition: background 0.16s, color 0.15s;
  background: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.legal-info {
  color: var(--color-secondary);
  font-size: 0.98rem;
  letter-spacing: .01rem;
  margin-bottom: 2px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  filter: drop-shadow(0 0 8px var(--color-neon));
  height: 28px;
  width: 28px;
  opacity: 0.89;
  transition: filter .18s, opacity .17s;
}
.footer-social img:hover {
  filter: drop-shadow(0 0 14px var(--color-secondary));
  opacity: 1;
}

/* ===== BUTTONS AND INTERACTIVES ===== */
button, .cta-btn {
  user-select: none;
}
button {
  font-family: var(--font-display);
}
button:focus, a:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 3px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 18px;
  z-index: 4800;
  width: calc(100vw - 20px);
  max-width: 420px;
  background: var(--color-bg);
  color: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 3px 32px 6px var(--color-shadow), 0 0 0 2.5px var(--color-neon);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 24px 24px 24px;
  font-size: 1rem;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition: opacity 0.27s, transform 0.27s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 9px 18px;
  box-shadow: 0 0 12px 1px var(--color-secondary);
  margin-right: 2px;
  transition: filter 0.17s, background 0.16s, color 0.15s;
}
.cookie-banner .cookie-accept {
  background: var(--color-neon);
  color: var(--color-primary);
  font-weight: 700;
}
.cookie-banner .cookie-accept:hover {
  filter: brightness(1.08) drop-shadow(0 0 18px var(--color-neon));
}
.cookie-banner .cookie-reject {
  background: #35406f;
  color: var(--color-secondary);
}
.cookie-banner .cookie-reject:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,25,44,0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: var(--color-bg);
  color: var(--color-accent);
  border-radius: 18px;
  padding: 34px 32px 22px 32px;
  max-width: 390px;
  width: 92vw;
  box-shadow: 0 5px 36px 8px var(--color-shadow), 0 0 0 2px var(--color-neon);
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1rem;
  position: relative;
}
.cookie-modal .cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--color-neon);
  margin-bottom: 6px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--color-neon);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--color-secondary);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: 0.65;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 15px;
  background: #474a76;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: var(--color-neon);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(19px);
}

.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal button {
  font-family: var(--font-display);
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  font-size: 1rem;
  margin-right: 0;
  transition: filter .15s, background .15s, color .13s;
  cursor: pointer;
}
.cookie-modal .cookie-save {
  background: var(--color-neon);
  color: var(--color-primary);
  font-weight: 700;
}
.cookie-modal .cookie-save:hover {
  filter: brightness(1.1);
}
.cookie-modal .cookie-cancel {
  background: #31335b;
  color: var(--color-secondary);
}
.cookie-modal .cookie-cancel:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}

/* ===== MISC ELEMENTS ===== */
.map-block {
  background: #1a1c2d;
  color: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 12px 2px var(--color-shadow);
  padding: 20px 16px;
  margin: 12px 0 0 0;
  font-size: 0.97rem;
  border-left: 3.5px solid var(--color-neon);
}

/* ----- Utility Classes & Microinteractions ----- */
@media (max-width: 700px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .container { padding: 0 4px; }
  .section, section { padding: 28px 0 28px 0; }
  .hero .container { padding: 20px 6px 20px 6px; }
  .content-wrapper { gap: 12px; }
  .footer-social img { height: 24px; width: 24px; }
  .testimonial-card { padding: 13px 11px; }
  .footer-nav { font-size: 0.97rem; }
}

@media (max-width: 480px) {
  .cookie-banner {
    max-width: 98vw;
    left: 2vw;
    right: 2vw;
    padding: 15px 8px 11px 11px;
    font-size: 0.96rem;
  }
  .cookie-modal .cookie-modal-content {
    padding: 22px 8px 16px 8px;
    font-size: .97rem;
  }
}

/* Microinteractions */
.card, .cta-btn, .testimonial-card, .footer-social img {
  transition: box-shadow 0.22s, transform 0.19s, filter 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px 0 var(--color-secondary);
  transform: translateY(-2px) scale(1.012);
}

/* ----- Accessibility: Hidden classes ----- */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* END ===== */
