/* RESET & BASE ======================= */
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, menu, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
menu, ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* ROOT COLORS AND FONTS ======================== */
:root {
  --color-primary: #18385F;
  --color-secondary: #004E2B;
  --color-accent: #F1F6FB;
  --color-bg: #121726;
  --color-bg-light: #23273E;
  --color-text: #F1F6FB;
  --color-text-dark: #23273E;
  --color-heading: #79FBFF;
  --color-neon: #38F9EF;
  --color-card-bg: #23273E;
  --color-card-border: #18385F;
  --color-shadow: 0 2px 10px rgba(24,56,95,0.10), 0 0 0 2px rgba(56,249,239,0.04);
  --transition: 0.18s cubic-bezier(.6,.2,.5,1);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

@media (max-width: 900px) {
  :root {
    --border-radius: 14px;
  }
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.25s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-heading);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p, ul, ol, li, dl, dt, dd, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}

.content-wrapper {
  background: rgba(35,39,62,0.98);
  border-radius: var(--border-radius);
  box-shadow: var(--color-shadow);
  padding: 36px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

/* HEADER & NAVIGATION ========================= */
header {
  background: linear-gradient(90deg, #18385F 0%, #1b6cba 100%);
  color: var(--color-accent);
  box-shadow: 0 2px 18px rgba(24,56,95,0.13);
  position: relative;
  z-index: 20;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
.logo-link img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-accent);
  text-shadow: 0 0 4px rgba(56,249,239,0.21);
  letter-spacing: 0.01em;
  padding: 7px 0;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
}

.cta.primary {
  font-family: var(--font-display);
  padding: 10px 24px;
  border-radius: 24px;
  background: linear-gradient(90deg, #38F9EF 0%, #1c70ff 100%);
  color: #101931;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 0 16px #38f9ef50;
  border: none;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: inline-block;
  margin-left: 12px;
  margin-bottom: 0;
  text-shadow: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(270deg, #38F9EF 0%, #a1b5ff 100%);
  color: #101931;
  box-shadow: 0 0 28px #38f9ef90;
  text-decoration: none;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-neon);
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 100;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-toggle:hover { color: #fff; }

/* MOBILE MENU ========================== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1201;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,23,38,0.93);
  backdrop-filter: blur(2px);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.7,.2,.65,1);
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(0);
  box-shadow: 0 6px 38px #38F9EF10;
}
.mobile-menu-close {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 2.1rem;
  color: #38F9EF;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .15s;
  z-index: 1202;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  margin-top: 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #fff;
  padding: 12px 0;
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #38f9ef15;
  color: #38F9EF;
}

/* HERO & GENERAL SECTIONS =========================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li {
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 280px;
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--color-shadow);
  border: 1.5px solid #38F9EF44;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), background .2s;
}
.feature-grid li:hover, .feature-grid li:focus {
  border-color: #38F9EF99;
  box-shadow: 0 0 24px #38F9EF44;
  background: #23273Eee;
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 4px #38F9EF38);
}

/* Feature item: for future expansion */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.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;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--color-shadow);
  border: 1.5px solid #38F9EF24;
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition), background .2s;
}
.card:hover, .card:focus {
  border-color: #38F9EF88;
  box-shadow: 0 0 24px #38F9EF55;
}

/* TESTIMONIALS ========================= */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #23273e;
  box-shadow: 0 3px 18px #18385f30, 0 0 0 2px #38f9ef15;
  border-radius: var(--border-radius);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 420px;
  margin-bottom: 20px;
  border-left: 5px solid #38f9ef;
  position: relative;
  transition: box-shadow .18s, border-color .16s, background .18s;
}
.testimonial-card:hover{
  box-shadow: 0 8px 32px #1c70ff20;
  border-color: #1c70ff;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #23273e;
  margin: 0 0 8px 0;
  position: relative;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #18385F;
}

/* TABLES ============================== */
table {
  width: 100%;
  background: #23273e98;
  color: #F1F6FB;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 12px #18385f22;
  margin-bottom: 22px;
}
thead tr {
  background: #18385F;
}
th, td {
  padding: 13px 12px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  border-bottom: 1px solid #1b6cba44;
}
th {
  text-transform: uppercase;
  color: #38F9EF;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}

/* FAQ PAGE (Definition List) ============= */
dl {
  padding-left: 0;
  margin-bottom: 14px;
}
dt {
  font-weight: 700;
  font-family: var(--font-display);
  color: #79FBFF;
  margin-top: 20px;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #F1F6FB;
  font-size: 1rem;
  margin-top: 4px;
}
dd a { color: #0FE3C2; text-decoration: underline; }
dd a:hover { color: #1c70ff; }

/* PRICES PAGE (Preistabelle) ============== */
.price {
  color: #38F9EF;
  font-weight: bold;
}

/* FOOTER ======================== */
footer {
  background: #18385Ffd;
  color: var(--color-accent);
  padding: 36px 0 18px 0;
  font-size: 1rem;
  width: 100%;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #38F9EF;
  font-size: 1rem;
  transition: color .1s;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: #F1F6FBbb;
  font-size: 0.95rem;
  margin-top: 10px;
}
.footer-brand img {
  height: 28px;
  filter: drop-shadow(0 0 6px #38F9EF10);
}

/* BUTTONS (General, secondary) ================ */
button, .cta {
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  outline: none;
}
.cta {
  border-radius: 24px;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 10px 24px;
  background: #23273E;
  color: #38F9EF;
  box-shadow: 0 0 10px #38F9EF22;
  margin-top: 10px;
  margin-bottom: 0;
  text-shadow: none;
  border: 1.5px solid #38f9ef;
}
.cta:hover, .cta:focus {
  background: #1c70ff30;
  color: #0FE3C2;
  border-color: #1c70ff;
  box-shadow: 0 0 12px #1c70ff66;
  text-decoration: none;
}
/* Utility/Secondary button: use for e.g. cookie reject or cookie settings */
.button-secondary {
  background: #23273E;
  color: #38f9ef;
  border: 1.5px solid #18385f;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.button-secondary:hover, .button-secondary:focus {
  background: #1c70ff20;
  color: #0FE3C2;
  border-color: #1c70ff;
}

/* LINKS ===================== */
a {
  color: #38F9EF;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #1c70ff;
}

/* UTILITY CLASSES ========================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }

/* COOKIE CONSENT BANNER ============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23273Eee;
  color: #fff;
  z-index: 2000;
  box-shadow: 0 -3px 22px #18385f30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 24px;
  flex-wrap: wrap;
  animation: slideUpIn .4s;
}
@keyframes slideUpIn {
  0% { transform: translateY(100%) scale(0.98); opacity: 0; } 
  100% { transform: translateY(0) scale(1);  opacity: 1; }
}
.cookie-banner-message {
  color: #fff;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cta, .cookie-banner .button-secondary {
  margin: 0;
}
.cookie-banner .button-secondary { background: #1c70ff11; color: #38F9EF; }

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,23,38,0.95);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .38s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #23273EFF;
  border-radius: 18px;
  box-shadow: 0 12px 48px #38F9EF21;
  padding: 36px 26px 22px 26px;
  color: #fff;
  min-width: 340px;
  max-width: 92vw;
  max-height: 95vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: scaleIn .18s;
}
@keyframes scaleIn {
  from { transform: scale(0.93); opacity: 0;} to {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  color: #38F9EF;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 9px;
}
.cookie-modal .category-desc {
  font-size: .93rem;
  color: #bafdff;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 26px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #38F9EF;
  cursor: pointer;
  z-index: 2202;
}
.cookie-modal-buttons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* COOKIE TOGGLE Switches */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 0; right: 0; bottom: 0;
  background-color: #18385f44;
  border-radius: 10px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #38F9EF;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .15s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

/* Animations for micro-interactions */
.card, .testimonial-card, .feature-grid li, .cta, .button-secondary {
  transition: box-shadow 0.17s cubic-bezier(.7,.2,.65,1), border-color 0.14s, background 0.15s, color 0.13s;
}
.card:hover, .feature-grid li:hover, .cta:hover, .button-secondary:hover {
  box-shadow: 0 2px 20px #38f9ef44, 0 0 0 2px #1c70ff22;
  z-index: 2;
}

/* RESPONSIVENESS ======================= */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}
@media (max-width: 980px) {
  .container { max-width: 830px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .footer-nav {
    gap: 12px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* MOBILE HEADER NAV */
  .header-flex .main-nav, .header-flex .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header { min-height: 62px; }
  .container { padding: 0 10px; }
  .content-wrapper, .card, .testimonial-card {
    padding: 20px 10px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 42px;
  }
  .footer-nav, .footer-brand { flex-direction: column; gap: 8px; }
  .feature-grid, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 530px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .footer-brand img { height: 22px; }
}


/* ACCESSIBILITY / FOCUS ========================= */
:focus {
  outline: 2px solid #38F9EF;
  outline-offset: 2px;
}

/* Scrollbar style (futuristic touch) */
body::-webkit-scrollbar { width: 9px; background: #23273E; }
body::-webkit-scrollbar-thumb { background: #38F9EF66; border-radius: 8px; }


/* SELECTION ========================== */
::selection { background: #38F9EF33; color: #101931; }

/* VISUAL FLAIR (NEON RING for accent elements) */
.feature-grid li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #38F9EF;
  opacity: 0.20;
  box-shadow: 0 0 14px #38F9EF55, 0 0 24px #38F9EF11;
  pointer-events: none;
  z-index: 0;
}

/* Tagline styling (optional) */
.tagline {
  font-family: var(--font-body);
  color: #83fff4;
  font-size: 1.12rem;
  margin-bottom: 18px;
}

/* MODAL OVERLAY background for microinteractions (used in Cookie) */
.modal-overlay {
  background: rgba(0, 28, 50, 0.81);
  position: fixed; z-index: 2222;
  top:0; left:0; width:100vw; height:100vh;
}

/* END OF STYLE.CS */
