/* 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #181C23;
  color: #F1E9D9;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
a {
  color: #7DB082;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B3FFD4;
}
strong {
  font-weight: 700;
  color: #7DB082;
}


/* BRAND COLORS (CSS variables w/ fallbacks) */
:root {
  --color-primary: #245D3C;
  --color-primary-dark: #183B23;
  --color-secondary: #7DB082;
  --color-accent: #F1E9D9;
  --color-bg: #181C23;
  --color-bg-card: #222937;
  --color-border: #3B485C;
  --color-focus: #B3FFD4;
  --color-neon: #67ffbf;
  --color-btn: #222937;
  --color-btn-txt: #F1E9D9;
  --color-cta: #67ffbf;
  --color-error: #ff308a;
  --color-card-shadow: rgba(0, 255, 118, 0.08);
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #FAFEFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
.subheadline {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
  .subheadline { font-size: 1.07rem; }
}


/* BUTTONS & CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: linear-gradient(90deg, #33ffa6 0%, #54ffe1 100%);
  color: #181C23;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 0 12px 0 var(--color-neon);
  transition: background 0.13s, color 0.13s, box-shadow 0.16s, transform 0.2s;
  margin-top: 14px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #67ffbf 30%, #33ffa6 100%);
  color: var(--color-primary);
  box-shadow: 0 2px 24px 2px var(--color-neon);
  transform: translateY(-2px) scale(1.045);
  outline: none;
}
.cta-btn:active {
  background: linear-gradient(90deg, #00c176, #018c56);
  color: #fff;
}

button, .button, input[type=submit] {
  font: inherit;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  background: var(--color-btn);
  color: var(--color-btn-txt);
  padding: 11px 24px;
  margin-right: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}
button:hover, .button:hover, input[type=submit]:hover {
  background: var(--color-neon);
  color: var(--color-bg);
  box-shadow: 0 2px 16px 0 var(--color-neon);
}

/* Hamburger mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--color-neon);
  font-size: 2rem;
  border: none;
  margin-left: auto;
  outline: none;
  z-index: 1002;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #fff;
}

@media (max-width: 990px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}


/* LAYOUT PATTERNS */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: #fafcff;
  color: #22373A;
  box-shadow: 0 4px 36px 0 rgba(32,255,193,0.085), 0 1.5px 6px 0 rgba(24, 28, 35, 0.06);
  border: 1.5px solid #e6f7ec;
  position: relative;
  min-width: 0;
  flex: 1 1 320px;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-card);
  padding: 28px 22px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--color-card-shadow);
  border: 1.5px solid #27453E;
  min-width: 290px;
  flex: 1 1 285px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 40px 0 var(--color-neon), 0 1.5px 8px 2px #223;
  transform: translateY(-4px) scale(1.037);
  z-index: 2;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg-card);
  border-radius: 20px;
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 var(--color-card-shadow);
  border: 1.5px solid #2B3D36;
  min-width: 260px;
  flex: 1 1 255px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.13s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 38px 0 var(--color-neon);
  transform: scale(1.03);
  outline: none;
}
.service-price {
  font-size: 1.03rem;
  color: var(--color-neon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.015em;
}

.service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
}
.service-detail {
  background: var(--color-bg-card);
  border-radius: 16px;
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 190px;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px 0 var(--color-card-shadow);
  border: 1.5px solid #293D35;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* text sections, e.g. lists, datenschutz, kontakt etc. */
.text-section {
  background: var(--color-bg-card);
  padding: 36px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 var(--color-card-shadow);
  margin-bottom: 24px;
}
.contact-list > li {
  margin-bottom: 11px;
  font-size: 1.08em;
}

.success-section {
  align-items: center;
  text-align: center;
}

.pricing-summary {
  background: #182c25;
  border-radius: 13px;
  padding: 20px 15px;
  color: #F1FDF2;
  box-shadow: 0 2px 9px 0 var(--color-card-shadow);
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}


/* HERO SECTION */
.hero {
  width: 100%;
  padding: 56px 0 44px 0;
  background: linear-gradient(90deg, #24394A 2%, #1a3f33 80%);
  border-bottom: 1.5px solid #294840;
  box-shadow: 0 1.5px 15px 0 var(--color-card-shadow);
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

@media (max-width:650px) {
  .hero {
    padding: 39px 0 27px 0;
    margin-bottom: 28px;
  }
  .hero .content-wrapper h1 {
    font-size: 1.45rem;
  }
}


/* HEADER & NAV */
header {
  width: 100%;
  background: #182122;
  padding: 14px 0 10px 0;
  box-shadow: 0 1.5px 16px 0 #202e3b17;
  z-index: 102;
  position: relative;
}
.logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
  margin-left: 15px;
  margin-right: 30px;
}
.logo-row img {
  height: 47px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 8px;
}
.main-nav a {
  color: #B2C7B8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07em;
  letter-spacing: 0.01em;
  padding: 6px 7px;
  position: relative;
  transition: color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  text-shadow: 0 0 4px var(--color-neon);
}
header .cta-btn {
  margin-left: 26px;
  margin-right: 22px;
}

header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .main-nav {
    display: none !important;
  }
  header .cta-btn {
    display: none !important;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35, 54, 50, 0.95);
  box-shadow: 0 0 32px 0 #33ffa622;
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.6,0,.22,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  font-size: 2.2rem;
  padding: 14px 24px 24px 14px;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  z-index: 1060;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 12px 36px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 0;
  margin-bottom: 7px;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-neon);
  border-bottom: 2px solid var(--color-neon);
}


/* FOOTER */
footer {
  background: #181C23;
  padding: 40px 0 24px 0;
  border-top: 2px solid #234A2D3a;
  margin-top: 54px;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #7DB082;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-neon);
}
.footer-contact {
  color: #B9E3C2;
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.7;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222937;
  color: #F1E9D9;
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -2px 25px 0 var(--color-neon);
  z-index: 1700;
  border-top: 2.5px solid #67ffbf;
  opacity: 1;
  animation: cookieIn 0.6s cubic-bezier(.5,0,.2,1);
}
@keyframes cookieIn {
  from { transform: translateY(140px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  min-width: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: var(--color-btn);
  color: var(--color-btn-txt);
  transition: background 0.14s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 1.5px 7px 0 #00ffa655;
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, #67ffbf 42%, #7DB082 100%);
  color: #181C23;
  font-weight: 700;
}
.cookie-banner button.reject {
  background: #ff308a;
  color: #fff;
  font-weight: 600;
}
.cookie-banner button.settings {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-neon);
  color: #22373A;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21, 35, 30, 0.92);
  z-index: 1800;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  pointer-events: none;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #1A2731;
  color: #f8fff3;
  border-radius: 18px;
  padding: 32px 28px 20px 28px;
  box-shadow: 0 5px 55px 0 #67ffbf22;
  min-width: 300px;
  min-height: 220px;
  max-width: 97vw;
  animation: cookieModalIn 0.4s cubic-bezier(.54,0,.33,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.cookie-modal-content h2 {
  color: var(--color-neon);
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2.1rem;
  background: none;
  color: var(--color-neon);
  border: none;
  cursor: pointer;
  z-index: 1810;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  background: #222937;
  border-radius: 12px;
  padding: 15px 12px 12px 12px;
  margin-bottom: 3px;
  box-shadow: 0 1.5px 7px #33ffa617;
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category .toggle {
  margin-left: auto;
}
.cookie-category.essential label {
  color: var(--color-neon);
}

.toggle {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 23px;
}
.toggle input {
  opacity: 0;
  width: 0;height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  border-radius: 30px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: .2s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;width: 18px;
  left: 3px;bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 4px #67ffbf55;
}
.toggle input:checked + .toggle-slider {
  background: linear-gradient(90deg,#67ffbf 60%,#33ffa6 100%);
}
.toggle input:checked + .toggle-slider:before {
  transform: translateX(17px);
  background: #22373A;
}

/* MODAL BUTTONS */
.cookie-modal-content .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal-content button {
  border-radius: 16px;
  font-size: 1rem;
  background: var(--color-secondary);
  color: #181C23;
  padding: 8px 22px;
  box-shadow: 0 0 8px #67ffbf44;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: var(--color-neon);
  color: #22373A;
}


/* --- RESPONSIVENESS (Mobile first) --- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .features-grid, .testimonial-list, .services-list, .service-detail-list {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-item, .service-card {
    min-width: unset; max-width: 100%; flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .features-grid, .testimonial-list, .services-list, .service-detail-list {
    flex-direction: column;
    gap: 13px;
  }
  .static-nav, .footer-nav { flex-direction: column; gap: 17px; }
  .section, .text-section { padding: 19px 6vw; }
  .hero .content-wrapper { align-items: flex-start; }
  .content-wrapper { gap: 15px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 650px) {
  header { flex-direction: row; padding: 7px 0 7px 0; }
  .logo-row img { height: 36px; }
  .cookie-modal-content { padding: 15px 5vw 12px 5vw; min-width: 70vw; }
  .footer-contact { font-size: 0.91rem; }
}

/* NAV burger z-index fix on mobile */
@media (max-width: 990px) {
  header {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    z-index: 1200;
    padding: 10px 0 8px 0;
  }
  main, .hero, .section {
    margin-top: 72px;
  }
}

/* ---- CARD HIERARCHY ---- */
.card, .feature-item, .service-card, .service-detail, .testimonial-card {
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 var(--color-card-shadow);
  border-radius: 18px;
}


/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
  background: #13181b;
}
::-webkit-scrollbar-thumb {
  background: #27453E;
  border-radius: 12px;
}


/* FOCUS/ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px solid var(--color-neon);
  outline-offset: 2px;
  box-shadow: 0 0 11px 2px var(--color-neon);
  z-index: 10;
}


/* MICRO-ANIMATIONS */
.cta-btn, .feature-item, .service-card, .testimonial-card, .service-detail, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.19s, transform 0.17s, background 0.15s, color 0.15s;
}

.card:hover, .feature-item:hover, .service-card:hover {
  box-shadow: 0 6px 35px 0 var(--color-neon), 0 1.5px 8px 2px #223;
  transform: translateY(-4px) scale(1.035);
  z-index: 2;
}


/* IMAGE ICONS (icons inside feature-item) */
.feature-item img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 2px 7px #67ffbf88);
}


/* LISTS for features and pricing */
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 9px;
}
ul.contact-list {
  padding-left: 0;
  list-style: none;
}
ul.contact-list li {
  margin-bottom: 11px;
}

/* MISC */
hr {
  border: none;
  height: 1px;
  background: #2B3D36;
  margin: 32px 0 18px 0;
}


/* --- END: CSS --- */
