/* 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, main, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181924;
  color: #F6F6F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #8EC1A6;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
a:hover, a:focus {
  color: #faff00;
  outline: none;
}
ul {
  list-style: none;
  padding-left: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: .02em; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 18px; letter-spacing: .02em; }
h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #E5F6ED;
  margin-bottom: 14px;
}
strong { font-weight: 600; color: #faff00; }
.subheadline {
  font-size: 1.25rem;
  color: #8EC1A6;
  margin-bottom: 30px;
}

/* BASIC LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER */
header {
  width: 100%;
  background: #191A23;
  box-shadow: 0 2px 20px 0 rgba(30,255,209,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8EC1A6;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom .22s;
  padding: 8px 0;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid #faff00;
  color: #faff00;
}
header .cta-button {
  margin-left: 24px;
}

/* HEADER LOGO */
header img {
  height: 38px;
  width: auto;
}

/* CTA BUTTON - .cta-button */
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(92deg, #8EC1A6 40%, #faff00 110%);
  color: #21232A;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 5px 40px 0 rgba(255,255,0,0.13), 0 1px 3px rgba(15,255,224,0.08);
  letter-spacing: .06em;
  text-shadow: 0 0 10px rgba(255,255,0,0.08);
  transition: background .22s, color .18s, box-shadow .18s, transform .18s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #faff00 60%, #8EC1A6 120%);
  color: #1C1B1F;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 50px 0 rgba(235,255,0,0.17), 0 2px 6px rgba(15,255,224,0.15);
}

/* SECTION SPACING & LAYOUTS (MANDATORY) */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #23263a;
  border-radius: 22px;
  box-shadow: 0 2px 27px 0 rgba(15,255,224,0.09);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 40px 0 rgba(138,255,220,0.24);
  transform: translateY(-4px) scale(1.027);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #21232A;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 20px 0 rgba(20,255,189,0.12);
  margin-bottom: 20px;
  font-size: 1.05rem;
  max-width: 620px;
  transition: box-shadow .19s, transform .19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 38px 0 rgba(45,255,239,0.21);
  transform: translateY(-2px) scale(1.013);
}
.testimonial-card p {
  color: #23263a;
  font-size: 1.08rem;
  font-style: italic;
  flex: 1 1 auto;
}
.testimonial-card span {
  color: #8EC1A6;
  font-size: 0.98rem;
  font-weight: 500;
}
/* SPACING/ALIGNMENT from mission */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (for .feature-grid > .feature) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #212430;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(30,255,183,0.08);
  padding: 22px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 320px;
  transition: box-shadow 0.19s, transform 0.18s;
  position: relative;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 9px #1fffe0);
}
.feature:hover, .feature:focus {
  box-shadow: 0 7px 27px 0 #1fffe02a;
  transform: translateY(-2px) scale(1.022);
}

/* LISTS AND FORMS */
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0;
}
ul li strong {
  color: #faff00;
}
.newsletter-signup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.newsletter-signup label {
  color: #8EC1A6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 8px;
}
.newsletter-signup input[type="email"] {
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 14px;
  border: none;
  background: #21232A;
  color: #F6F6F6;
  outline: none;
  margin-right: 8px;
  border: 2px solid #23263a;
  transition: border-color .17s;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #8EC1A6;
}
.newsletter-signup button[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #8EC1A6;
  color: #21232A;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.newsletter-signup button[type="submit"]:hover,
.newsletter-signup button[type="submit"]:focus {
  background: #faff00;
  color: #191A23;
}

input, textarea {
  background: #21232A;
  color: #fff;
  border: 1.5px solid #23263a;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  transition: border-color .15s;
}
input:focus, textarea:focus {
  border-color: #8EC1A6;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* FOOTER */
footer {
  background: #191A23;
  color: #8EC1A6;
  padding: 48px 0 16px 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 16px 0 14px 0;
}
footer nav a {
  color: #8EC1A6;
  transition: color .17s, border-color .16s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: #faff00;
  border-bottom: 1.5px solid #faff00;
}
footer .contact-info {
  color: #e5f6ed;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: .99rem;
}
footer .social-media {
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer .social-media img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 12px #8EC1A6);
  transition: filter .15s;
}
footer .social-media img:hover, footer .social-media img:focus {
  filter: drop-shadow(0 0 18px #faff00);
}
footer p {
  margin-top: 18px;
  color: #8EC1A6;
  text-align: center;
  font-size: .93rem;
}

/* CONTACT INFO ICONS */
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 9px;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px #74ffde65);
}

/* MAP EMBEDDED IN KONTAKT */
.map-embed {
  background: #23263a;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  color: #8EC1A6;
  box-shadow: 0 1px 10px 0 rgba(30,255,183,0.08);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 50;
  background: linear-gradient(92deg,#8EC1A6 45%,#faff00 110%);
  color: #21232A;
  border: none;
  font-size: 2.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 18px 0 rgba(250,255,0,0.11);
  outline: none;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .17s, box-shadow .13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: linear-gradient(90deg,#faff00 30%,#8EC1A6 120%);
  color: #191A23;
  box-shadow: 0 8px 27px 0 rgba(250,255,0,0.16);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #191A2399;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.3s cubic-bezier(.42,0,.54,1), opacity 0.2s;
}
.mobile-menu-close {
  background: linear-gradient(93deg, #faff00 20%, #8EC1A6 80%);
  color: #21232A;
  font-size: 2rem;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px 0 rgba(250,255,0,0.16);
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: linear-gradient(90deg,#8EC1A6 35%,#faff00 110%);
  color: #1C1B1F;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.mobile-nav a {
  color: #F6F6F6;
  background: #23263a;
  border-radius: 16px;
  padding: 16px 36px;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 2px 18px 0 rgba(15,255,224,0.12);
  transition: background .18s, color .16s, box-shadow .16s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #8EC1A6;
  color: #21232A;
  box-shadow: 0 2px 20px 0 rgba(250,255,0,0.17);
}

/* Hide regular nav, show burger menu at mobile threshold */
@media (max-width: 950px) {
  header nav, header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Responsive general layout */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .container {
    padding: 0 10px;
  }
  section, .footer {
    padding: 30px 5px;
  }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    font-size: .99rem;
    padding: 14px 10px;
    max-width: 100%;
  }
  .newsletter-signup {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    padding: 0 6px;
    gap: 12px;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 1.33rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .cta-button {
    padding: 12px 16px;
    font-size: .96rem;
  }
  .mobile-nav a {
    font-size: 1.07rem;
    padding: 14px 18px;
    min-width: 80vw;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  background: #23263a;
  color: #F6F6F6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 20px 22px 20px;
  box-shadow: 0 -2px 20px 0 rgba(30,255,209,0.11);
  transition: transform 0.3s, opacity 0.22s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  font-weight: 700;
  font-size: .98rem;
  margin-left: 3px;
  cursor: pointer;
  padding: 11px 18px;
  min-width: 42px;
  border: none;
  background: #8EC1A6;
  color: #181924;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 1px 12px 0 #2fffe015;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #faff00;
  color: #23263a;
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: #21232A;
  color: #8EC1A6;
  border: 1.5px solid #8EC1A6;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #8EC1A6;
  color: #23263a;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,35,42,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #181924;
  color: #F6F6F6;
  border-radius: 22px;
  padding: 36px 34px 28px 34px;
  max-width: 360px;
  width: 96vw;
  box-shadow: 0 5px 40px 0 rgba(15,255,224,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: cookie-modal-in .34s cubic-bezier(.81,.01,.52,1.03);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(56px) scale(0.92); opacity: .7; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #faff00;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 1.03rem;
  color: #8EC1A6;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #8EC1A6;
  width: 18px;
  height: 18px;
}
.cookie-modal .essential-label {
  color: #faff00;
  font-weight: bold;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  background: #8EC1A6;
  color: #23263a;
  font-weight: 600;
  padding: 10px 21px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background .15s, color .15s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #faff00;
  color: #181924;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  color: #F6F6F6;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
  cursor: pointer;
  outline: none;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #8EC1A6;
  color: #23263a;
}

@media (max-width: 550px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .96rem;
    align-items: flex-start;
    padding: 15px 9px 17px 9px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 9px;
  }
  .cookie-modal {
    padding: 22px 11px 15px 13px;
    min-width: 0;
    max-width: 95vw;
  }
}

/* HOVER FOCUS ACCESSIBILITY */
a:focus-visible, button:focus-visible, input:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #8EC1A6;
  outline-offset: 1.5px;
}

/* TECH FUTURISTIC DECORATIVE ACCENTS */
hr {
  border: none;
  border-top: 2px solid #8EC1A6;
  margin: 36px 0;
}
::-webkit-scrollbar {
  width: 9px;
  background: #181924;
}
::-webkit-scrollbar-thumb {
  background: #21232A;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8ec1a6bb;
}

/* Selection effect */
::selection {
  background: #8EC1A6;
  color: #181924;
}

/* Card special accent (subtle neon edge for .feature and .card) */
.feature, .card {
  box-shadow: 0 0 0 1.5px #23263a, 0 2px 35px 0 rgba(30,255,209,0.10);
  border: 1.5px solid #23263a;
  transition: box-shadow 0.21s, border-color .18s;
}
.feature:hover, .feature:focus, .card:hover, .card:focus {
  border-color: #8EC1A6;
  box-shadow: 0 0 0 1.5px #8EC1A6, 0 6px 35px 0 #1fffe02c;
}

/* Misc spacers */
.spacer-8 { height: 8px; }
.spacer-16 { height: 16px; }
.spacer-24 { height: 24px; }
.spacer-32 { height: 32px; }
.spacer-48 { height: 48px; }

/*! END OF STYLE.CSS */
