/* -----------------------------------
   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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #212A3A;
  color: #F5F7FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  background: linear-gradient(145deg,#26354D 0%, #212A3A 100%);
  transition: background 0.3s;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #699F45;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #699F45;
  outline-offset: 2px;
}
a:hover {
  color: #7FFF59;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* -----------------------------------
   TYPOGRAPHY & COLOR SYSTEM
----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F5F7FA;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, .text-section {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #DEECFC;
  margin-bottom: 14px;
}
.text-section strong {
  color: #fff;
  font-weight: 700;
}

/* Visually separated colors for focus/contrast (accessibility) */
:root {
  --primary: #26354D;
  --secondary: #699F45;
  --accent: #F5F7FA;
  --background: #212A3A;
  --neon: #56F8D7;
  --neon-bg: #22314a;
  --error: #F15152;
}

/* -----------------------------------
   GLOBAL LAYOUT STRUCTURE
----------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  padding: 32px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(100deg, #253241 60%, #27395B 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(20,42,70,0.18);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* -----------------------------------
   HEADER / NAVIGATION
----------------------------------- */
header {
  background: #212A3A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 15px 0;
  position: relative;
  z-index: 50;
  border-bottom: 2px solid #253241;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #F5F7FA;
  padding: 6px 14px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a.active {
  background: #26354D;
  color: #56F8D7;
}
header > a img {
  height: 50px;
  width: auto;
  display: block;
}

.cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #26354D;
  color: #56F8D7;
  font-weight: 700;
  font-size: 1.03rem;
  border: none;
  border-radius: 9px;
  padding: 12px 30px;
  margin-left: 32px;
  box-shadow: 0 0 10px 2px #246f7a24, 0 1.5px 6px 0 #0e232b28;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: #699F45;
  color: #fff;
  box-shadow: 0 0 12px 0 #699F45, 0 3px 12px #222f3944;
}
.cta:hover, .cta:focus {
  background: #1B9E6A;
  color: #56F8D7;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 #199b9961;
}
.cta.primary:hover, .cta.primary:focus {
  background: #28af68;
  color: #fff;
  filter: brightness(1.1) drop-shadow(0 0 12px #7FFF59);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #56F8D7;
  font-size: 2.2rem;
  padding: 10px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 120;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,34,51, 0.98);
  backdrop-filter: blur(4px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.86,.01,.65,.99);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #56F8D7;
  font-size: 2.2rem;
  padding: 22px 22px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #7FFF59;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 80vw;
  margin: 24px 0 0 0;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.32rem;
  color: #F5F7FA;
  padding: 8px 18px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover {
  background: #26354D;
  color: #7FFF59;
}

/* -----------------------------------
   MAIN LAYOUT & PAGE SECTIONS
----------------------------------- */

.feature-grid, .features, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.card-container {
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  position: relative;
  background: #22314A;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 20px 0 #0d192922;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 0 24px 2px #56F8D799;
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

.feature {
  background: #232D41;
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 255px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px #2439542a;
  border: 1.5px solid #253241;
  transition: box-shadow 0.2s, border 0.2s, transform 0.16s;
}
.feature:hover {
  border-color: #56F8D7;
  box-shadow: 0 0 22px 1px #56F8D799;
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #56F8D777);
}
.feature h3 {
  color: #56F8D7;
  margin-bottom: 5px;
  font-size: 1.19rem;
  text-shadow: 0 0 6px #16182077;
}
.feature p {
  color: #E5F4FF;
  font-size: 1rem;
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .features, .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  color: #26354D;
  border-radius: 14px;
  box-shadow: 0 0 24px 1px #44B8C233;
  margin-bottom: 20px;
  font-size: 1.1rem;
  border-left: 6px solid #56F8D7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card strong {
  color: #699F45;
  margin-left: auto;
}
.testimonial-card p {
  color: #26354D;
  flex: 1 1 0;
}
.testimonial-card:hover {
  box-shadow: 0 0 48px 2px #26354d55;
  transform: scale(1.02);
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  font-size: 1.05rem;
  color: #699F45;
}
.star-rating img {
  height: 20px;
  width: 20px;
}

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

/* FAQ */
.faq-list h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.09rem;
  color: #56F8D7;
}
.faq-list p {
  margin-bottom: 12px;
}
.faq-teaser {
  margin: 18px 0 24px 0;
}
.faq-teaser li {
  font-size: 1.06rem;
  margin-bottom: 10px;
  color: #E5F4FF;
  padding-left: 18px;
  position: relative;
}
.faq-teaser li:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56F8D7;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 10px;
}

/* Pricing table */
.pricing-table {
  overflow-x: auto;
  margin: 12px 0 25px 0;
}
.pricing-table table {
  width: 100%;
  min-width: 350px;
  border-collapse: separate;
  border-spacing: 0;
  background: #222F44;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 18px 2px #1C233355;
}
.pricing-table th, .pricing-table td {
  padding: 13px 16px;
  font-size: 1.06rem;
  color: #F5F7FA;
  text-align: left;
  border-bottom: 1px solid #26354D44;
}
.pricing-table th {
  background: #26354D;
  color: #7FFF59;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.pricing-table tr:last-of-type td {
  border-bottom: none;
}

.service-packages {
  margin: 20px 0 24px 0;
}
.price-guarantees {
  background: #26354D;
  color: #56F8D7;
  border-radius: 7px;
  padding: 12px 18px;
  margin: 12px 0 20px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}

.service-categories, .technology-descriptions {
  margin: 20px 0 18px 0;
  font-size: 0.98rem;
  color: #56F8D7;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-categories span {
  margin-right: 12px;
}

/* Card Group Pattern Fallbacks */
.card {
  min-width: 250px;
  flex: 1 1 300px;
}

/* -----------------------------------
   MAP SECTION (kontakt.html)
----------------------------------- */
.map-embed {
  background: #222F44;
  color: #F5F7FA;
  padding: 20px 20px;
  border-radius: 9px;
  margin: 12px 0 20px 0;
  box-shadow: 0 2px 10px #24395422;
  font-size: 1rem;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
  background: #232D41;
  border-top: 2px solid #26354D;
  padding: 35px 0 22px 0;
  margin-top: 36px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: #7FFF59;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a:hover {
  color: #56F8D7;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F5F7FA;
}
.brand-mention {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #56F8D7;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.brand-mention img {
  height: 30px;
   width: auto;
}
@media (max-width: 820px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  footer nav {
    margin-bottom: 14px;
  }
}

/* -----------------------------------
   BUTTONS, FORMS, MICRO-INTERACTIONS
----------------------------------- */
button, .cta, input[type="button"], input[type="submit"] {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  outline: none;
}
button:focus {
  outline: 2px solid #56F8D7;
  outline-offset: 3px;
}

input, textarea {
  border: 2px solid #26354D;
  border-radius: 7px;
  padding: 10px;
  font-size: 1rem;
  background: #26354D;
  color: #56F8D7;
  margin-bottom: 14px;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: #56F8D7;
  background: #22314A;
}

/* -----------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222F44;
  color: #FFFFFF;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 14px 16px 14px;
  box-shadow: 0 -2px 26px #56F8D744;
  border-top: 4px solid #56F8D7;
  animation: fadeInUp 0.5s cubic-bezier(.86,.01,.65,.99);
  gap: 18px;
}
@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner__text {
  font-size: 1.03rem;
  color: #F5F7FA;
  margin-bottom: 10px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-button {
  background: #699F45;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  margin-right: 6px;
  box-shadow: 0 2px 8px #56F8D799;
}
.cookie-button:hover, .cookie-button:focus {
  background: #56F8D7;
  color: #26354D;
}
.cookie-button.cookie-reject {
  background: #F15152;
  color: #fff;
}
.cookie-button.cookie-reject:hover {
  background: #c02c32;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 37, 46, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp .35s cubic-bezier(.86,.01,.65,.99);
}
.cookie-modal {
  background: #232D41;
  color: #fff;
  padding: 32px 20px 25px 32px;
  border-radius: 16px;
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 2px 38px #26354d55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #56F8D7;
  font-size: 1.8rem;
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  z-index: 3;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: #F15152;
}
.cookie-modal h2 {
  color: #56F8D7;
  font-size: 1.34rem;
  margin-bottom: 12px;
}
.cookie-categories {
  margin: 22px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F5F7FA;
}
.cookie-category input[type="checkbox"] {
  accent-color: #56F8D7;
  width: 19px;
  height: 19px;
}
.cookie-category.essential label {
  color: #aaffdc;
}
.cookie-category.essential input {
  accent-color: #699F45;
}

/* Hide scrollbar on modal (for UX) */
@media (max-width: 540px) {
  .cookie-modal {
    padding: 18px 9px 18px 9px;
    min-width: 0;
  }
}

/* -----------------------------------
   RESPONSIVE & FLEX LAYOUTS
----------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding: 0 6vw;
  }
  .feature, .card {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .features, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 22px 14px 14px 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  h3 {
    font-size: 1.12rem;
  }
  .feature img {
    height: 36px;
    width: 36px;
  }
}

/* -----------------------------------
   VISUAL EXTRAS
----------------------------------- */
/* Neon accent bar on hover */
.card::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(to right,#56F8D7,#699F45 70%);
  border-radius: 5px 5px 0 0;
  transition: width 0.22s cubic-bezier(.86,.01,.65,.99);
}
.card:hover::before {
  width: 100%;
}

/* Neon Glow Focus for buttons */
button:focus, .cta:focus, .cookie-button:focus {
  box-shadow: 0 0 0 2px #56F8D7, 0 0 14px 3px #56F8D799;
}

/* Micro-interactions for links */
a.cta, .cta.primary {
  position: relative;
}
a.cta:after, .cta.primary:after {
  content: '';
  display: block;
  position: absolute;
  left: 30%; bottom: 7px;
  width: 40%; height: 2.5px;
  background: #56F8D7;
  opacity: 0;
  border-radius: 2px;
  transition: opacity 0.18s;
}
a.cta:hover:after, .cta.primary:hover:after {
  opacity: 1;
}

/* ----------------------------------------------------
   Utility classes for margins/gaps and section helpers
----------------------------------------------------- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px !important; }

.detailed-service-list li,
.service-packages li,
.price-guarantees,
.technology-descriptions li {
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}
.detailed-service-list li:before,
.technology-descriptions li:before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #56F8D7;
  display: inline-block;
  position: absolute;
  left: 0; top: 12px;
}

/* ----------------------------------------------------
   Accessibility helper
----------------------------------------------------- */
.sronly {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ----------------------------------------------------
   Print & Selection colors
----------------------------------------------------- */
@media print {
  body, .container, main, .content-wrapper, section {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  a, h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
  }
}
::selection {
  background: #56F8D7;
  color: #212A3A;
}
