/* CSS RESET & NORMALIZE */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181C21;
  color: #E6F1F6;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  color: inherit;
}
:focus {
  outline: 2px solid #38F2C6;
  outline-offset: 2px;
}

/* VARIABLES (with fallback for compatibility) */
:root {
  --color-primary: #2C3E50;
  --color-secondary: #7DCEA0;
  --color-accent: #F4F7FA;
  --color-bg: #181C21;
  --color-surface: #212732;
  --color-neon: #38F2C6;
  --color-danger: #FC4697;
  --font-display: 'Roboto Slab', 'Times New Roman', Times, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  width: 100%;
  background: #222A36;
  box-shadow: 0 6px 32px rgba(60,255,255,0.04), 0 1.5px 5px rgba(44,62,80,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  flex-direction: row;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: #C7FFE7;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .22s;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-neon);
  margin-top: 3px;
  border-radius: 2px;
  transition: width .22s cubic-bezier(.3,.8,.45,1);
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon);
}
header nav a:hover::after, header nav a:focus::after {
  width: 80%;
}
header .cta.primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border .2s;
  z-index: 115;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  border: 2px solid var(--color-neon);
  background: #102A35;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,34,44,0.98);
  box-shadow: 0 8px 40px 8px #181C21;
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.6,-0.01,.2,1.01);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 26px 12px 0;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 4px 10px;
  transition: background .17s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #22324A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-left: 30px;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 21px;
  color: #64FFE8;
  text-shadow: 0 1px 8px #15998744;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-bottom: 4px;
  border-radius: 5px;
  padding: 7px 12px;
  transition: background .19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #1A4658;
}

/* SECTIONS AND SPACING PATTERN */
section {
  width: 100%;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #212732;
  border-radius: 18px;
  box-shadow: 0 5px 28px 1px #1CC8A640,0 1px 2px #1AEDEDAA;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px 8px #56FFD4A0, 0 2px 6px #6FFFCF44;
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F7FA;
  color: #192429;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2.5px 12px #83DBB866,0 1px 2px #01565616;
  flex-direction: column;
  transition: box-shadow .18s, transform .15s;
}
.testimonial-card p {
  font-size: 17px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 15px;
  font-weight: 700;
  color: #21937E;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px 4px #52F0C760;
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* TYPOGRAPHY & BRAND FONTS */
h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  color: #7DCEA0;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h1 { font-size: 2.2rem; color: var(--color-neon); margin-bottom: 10px; }
h2 { font-size: 1.55rem; color: #7DCEA0; margin-bottom: 8px; }
h3 { font-size: 1.18rem; color: #A8FFE9; }
h4 { font-size: 1rem; color: #B6E2D4; }

p, ul, ol, dl, li, dd, dt {
  font-family: var(--font-body);
  color: #E6F1F6;
  font-size: 1rem;
  line-height: 1.65;
}
strong { color: #14C9A1; }
em { color: #64FFCE; font-style: italic; }

ul li, ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
ul li::before {
  content: '';
  display: inline-block;
  background: var(--color-neon);
  border-radius: 50%;
  width: 8px; height: 8px;
  margin-right: 10px;
  margin-left: -18px;
  vertical-align: middle;
}
ol li { counter-increment: num; }
ol {
  counter-reset: num;
}
ol li::before {
  content: counter(num) '.';
  color: var(--color-neon);
  font-weight: bold;
  margin-right: 8px;
  margin-left: -18px;
}
hr {
  border: none;
  border-top: 1.5px solid #2C3E5085;
  margin: 28px 0 18px;
}

/* ACCENT STROKES & NEON EFFECTS */
.section {
  box-shadow: 0 2.5px 18px #107FCB18, 0 1.5px 12px #27FFC780;
  background: linear-gradient(112deg,#1C2632 80%,#083C40 120%);
}

/* CTA / BUTTONS */
.cta,
button.cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2.5px 10px #0DDDC625;
  border: 2px solid var(--color-neon);
  background: #102A35;
  color: #38F2C6;
  position: relative;
  cursor: pointer;
  transition: background .2s, color .19s, box-shadow .22s, transform .11s;
  z-index: 5;
}
.cta.primary, button.cta.primary {
  background: linear-gradient(70deg, #2C3E50 70%, #3CFFDF 170%);
  color: #E6F1F6;
  border: 2px solid #3CFDDA;
  text-shadow: 0 2px 16px #19FFC433;
}
.cta.secondary, button.cta.secondary {
  background: #192D4B;
  color: #28F0C2;
  border: 2px solid #36A98E;
}
.cta:active {
  transform: translateY(2px) scale(0.97);
}
.cta:hover, .cta:focus {
  background: #222E40;
  color: var(--color-neon);
  box-shadow: 0 5px 24px #43FFE9CC, 0 2.5px 10px #20FFDD90;
}

/* FOOTER */
footer {
  width: 100%;
  background: #192229;
  color: #D7F0FC;
  padding-top: 46px;
  padding-bottom: 22px;
  margin-top: 65px;
  box-shadow: 0 -2.5px 20px #89FFE233;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  gap: 28px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
footer nav a {
  color: #A3FFD1;
  font-size: 15px;
  border-bottom: 1.5px dashed transparent;
  transition: border .15s, color .21s;
  border-radius: 5px;
  padding: 3px 6px;
}
footer nav a:hover,footer nav a:focus {
  color: #38F2C6;
  border-bottom: 1.5px solid #38F2C6;
}
footer .text-section {
  font-size: 15px;
  line-height: 1.7;
  color: #BFE7DC;
}

/* TEXT-SECTION (used in kontakt & footer) */
.text-section {
  margin-top: 24px;
  margin-bottom: 20px;
  background: #22303E;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px #17FFD030;
  color: #B1D6D9;
  font-size: 16px;
}
.text-section h2 {
  font-size: 1.17rem;
  color: #7DCEA0;
  margin-bottom: 8px;
}
.text-section ul {
  margin-top: 8px;
}
.text-section li strong {
  color: #19E6BE;
}

/* FAQ DL */
dl { margin-top: 8px; }
dt {
  color: #1CE2BD;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.11em;
  margin-top: 20px;
  margin-bottom: 5px;
}
dd {
  margin-left: 0;
  color: #BFFFE5;
  margin-bottom: 8px;
  font-size: 1em;
}

/* Responsive rules */
@media (max-width: 1180px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 950px) {
  header .container {
    flex-wrap: wrap;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .content-grid, .text-image-section, .card-container {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper {
    padding: 25px 0;
    gap: 20px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta.primary {
    display: none;
  }
  footer .container {
    padding-left: 8px;
    padding-right: 8px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .section,
  section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  .testimonial-card {
    padding: 16px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.03rem; }
  .cta, button.cta {
    font-size: 0.97rem;
    padding: 7px 18px;
  }
  .testimonial-card p { font-size: 15px; }
}

/* UTILITY CLASSES */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* Scrollbar Styling for Futuristic Touch */
::-webkit-scrollbar { width: 8px; background: #13181D; }
::-webkit-scrollbar-thumb { background: #2C3E50; border-radius: 10px; }

/* Animations (for micro-interactions) */
.cta,
button.cta,
.testimonial-card,
.card {
  transition: box-shadow .22s, transform .21s, background .19s, color .16s;
}
.mobile-menu,
.cookie-consent-banner,
.cookie-modal {
  transition: transform .34s cubic-bezier(.46,.6,.5,1.14), opacity .22s, background .21s;
}

/* COOKIE CONSENT BANNER (Fixed bottom, modern) */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#20293A 75%,#0FE8BB 250%);
  color: #F4F7FA;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 24px 16px 18px 16px;
  z-index: 200;
  box-shadow: 0 -4px 18px #35F6CB60;
  font-family: var(--font-body);
  font-size: 15px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(150%);
}
.cookie-consent-banner .cc-btn {
  margin-left: 12px;
  margin-right: 6px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  border: 2px solid transparent;
  background: #1FE3A6;
  color: #0E3139;
  box-shadow: 0 1.5px 9px #C2FFE433;
  cursor: pointer;
  transition: background .18s, color .16s;
}
.cookie-consent-banner .cc-btn:hover,
.cookie-consent-banner .cc-btn:focus {
  background: #0e4740;
  color: #7DCEA0;
}
.cookie-consent-banner .cc-btn.cc-settings {
  background: transparent;
  border: 2px solid #45F9D3;
  color: #45F9D3;
}
.cookie-consent-banner .cc-btn.cc-reject {
  background: #FC4697;
  color: #FFF;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 370px;
  max-width: 96vw;
  background: linear-gradient(110deg,#151E29 90%,#3ff5cc26 160%);
  color: #F4F7FA;
  border-radius: 22px;
  box-shadow: 0 4px 50px 3px #10eab042;
  z-index: 210;
  padding: 40px 32px 30px 32px;
  opacity: 1;
  pointer-events: all;
  transition: opacity .19s, transform .22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-40%) scale(.97);
}
.cookie-modal h3{
  font-family: var(--font-display);
  color: #6DFCEB;
  margin-bottom: 8px;
  font-size: 1.34rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 1.9rem;
  color: #38F2C6;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background .16s;
}
.cookie-modal .close-modal:hover {
  background: #193D44;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}
.cookie-modal .cookie-category label{
  flex: 1;
  font-size: 1.07em;
  line-height: 1.4;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  outline: none;
  background: #222B36;
  width: 38px;
  height: 22px;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  border: 2px solid #13eebe9c;
}
.cookie-modal .cookie-toggle:checked {
  background: #31F3AE;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px #57ffef3c;
  transition: left .23s cubic-bezier(.28,.7,.46,1.11);
}
.cookie-modal .cookie-toggle:checked::before {
  left: 18px;
  box-shadow: 0 0 16px #21f2c3a2;
}
.cookie-modal .category-desc {
  font-size: 0.98em;
  color: #BDF9FF;
  margin-bottom: 8px;
  margin-left: 1.4em;
}
.cookie-modal .category-essential .cookie-toggle {
  background: #13C4AB;
  border: 2px solid #13C4AB;
}
.cookie-modal .category-essential .cookie-toggle:checked {
  background: #13C4AB;
}
.cookie-modal .category-essential .category-desc {
  color: #B8EEDE;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cc-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  background: #1FE3A6;
  color: #0E3139;
  transition: background .19s, color .15s;
}
.cookie-modal .cc-btn:hover, .cookie-modal .cc-btn:focus {
  background: #212D32;
  color: #38F2C6;
}
.cookie-modal .cc-btn.cancel {
  background: #FC4697;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    max-width: 98vw;
    padding: 24px 8px 20px 8px;
  }
  .cookie-modal .close-modal { right: 10px; top: 10px; }
  .cookie-consent-banner {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 7px 11px 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus, .cta:focus, .cc-btn:focus {
  outline: 2.5px solid #38F2C6;
  outline-offset: 2px;
}

/* END OF STYLES */