/* 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 { box-sizing: border-box; scroll-behavior: smooth;  }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section { display: block; }
body { line-height: 1.55; background: #222; color: #f4f4f4; min-height: 100vh; }
table { border-collapse: collapse; border-spacing: 0; }
img { display: block; max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --color-primary: #34526f;
  --color-primary-deep: #214063;
  --color-secondary: #f4f4f4;
  --color-secondary-deep: #222;
  --color-accent: #d98324;
  --color-accent-deep: #b26000;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
/* ===== LAYOUTS ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 32px; }
  .container { padding-left: 8px; padding-right: 8px; }
}
/* ===== TYPOGRAPHY  ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: .01em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
h1 { font-size: 2.25rem; line-height: 1.1; }
h2 { font-size: 1.75rem; line-height: 1.2; color: var(--color-accent); margin-top: 16px; }
h3 { font-size: 1.25rem; color: var(--color-primary); }
h4, h5, h6 { font-size: 1rem; }
p, li, dt, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
  line-height: 1.65;
}
small { font-size: 0.85em; color: #bbb; }
a {
  color: var(--color-accent);
  transition: color .2s;
}
a:hover, a:focus {
  color: #ffa857;
}
/* ===== PRIMARY BACKGROUND / FUTURISTIC NEON EFFECTS ===== */
body {
  background: linear-gradient(135deg, #222 0%, #34526f 100%);
  min-height: 100vh;
  font-family: var(--font-body);
}
section {
  background: rgba(35,40,60,0.92);
  box-shadow: 0 8px 32px 0 rgba(24,32,56,0.18);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 0;
}

/* ===== MAIN NAVIGATION ===== */
header {
  background: #23283c;
  box-shadow: 0 2px 24px 0 rgba(34,64,99,0.08),0 2px 10px 0 rgba(23,30,37,0.12);
  position: sticky;
  top: 0;
  z-index: 98;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 80px;
  padding: 0 20px;
}
.logo img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-weight: 600;
  color: #f4f4f4;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background .18s, color .18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--color-accent);
  color: #fff;
}
.cta-btn {
  margin-left: 32px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(217,131,36,.12);
  cursor: pointer;
  outline: none;
  display: inline-block;
  transition: background .22s cubic-bezier(.42,0,.58,1), box-shadow .22s;
  text-transform: none;
  letter-spacing: .01em;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffa857;
  color: #21242a;
  box-shadow: 0 4px 18px 0 rgba(217,131,36,.24);
}

@media (max-width: 900px) {
  .main-nav ul { gap: 10px; }
  .cta-btn { margin-left: 8px; padding: 10px 18px; }
}
@media (max-width: 768px) {
  .main-nav ul { display: none; }
}

/* ==== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 120;
  transition: color .24s;
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(125deg, #22283c 85%, #34526f 100%);
  box-shadow: 0 16px 42px 0 rgba(34,64,99,0.17);
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.8,0,.15,1);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  margin: 20px 0 0 20px;
  align-self: flex-start;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-accent);
  cursor: pointer;
  transition: color .24s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffa857;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  width: 100%;
  gap: 4px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #f4f4f4;
  background: none;
  padding: 14px 32px;
  border-radius: 12px;
  margin: 0 10px;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  font-weight: 600;
  outline: none;
  transition: background .2s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent); color: #fff;
}

/* ====== MAIN LAYOUT & FLEXBOX GRIDS ====== */
.features-grid, .solutions-list, .team-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 16px;
}
.features-grid > div, .solutions-list > div, .team-grid > div {
  flex: 1 1 290px;
  background: rgba(36,54,90,0.93);
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 2px 16px 0 rgba(52,82,111,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 250px;
  min-height: 220px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .features-grid > div, .solutions-list > div, .team-grid > div{
    flex: 1 1 80%;
    min-width: 210px;
  }
}
@media (max-width: 600px) {
  .features-grid, .solutions-list, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div, .solutions-list > div, .team-grid > div{ min-width: unset; }
}
.solutions-list > div {
  border-left: 4px solid var(--color-accent);
}
.features-grid > div img, .team-grid > div img {
  width: 48px; height: 48px; filter: drop-shadow(0 0 8px #b26000cc);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.trust-badges img {
  width: 38px; height: 38px; filter: drop-shadow(0 0 8px #34526faa);
}
.trust-badges span {
  font-size: 1rem;
  color: #fff;
  margin-right: 26px;
}
@media (max-width: 600px) {
  .trust-badges { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ==== SPACING, CARD CONTAINERS, FLEX GAPS ==== */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
}
.card {
  background: rgba(36,54,90,0.93);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 1.5px 12px 0 rgba(60,55,100,0.11);
  padding: 28px;
  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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 16px; }
  .content-grid { flex-direction: column; }
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}

/* ==== TABLES ==== */
table {
  width: 100%;
  background: #24365a;
  border-radius: 15px;
  border: none;
  margin-bottom: 18px;
  color: #f4f4f4;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 #20335622;
  font-family: var(--font-body);
}
thead th {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 12px;
  font-size: 1.1rem;
  font-weight: 700;
}
tbody td {
  padding: 12px 12px;
  border-bottom: 1px solid #25334a;
  font-size: 1rem;
}
tr:last-child td { border-bottom: none; }

/* ==== ORDERED/LIST STYLING ==== */
ul, ol {
  margin: 12px 0 14px 22px;
  list-style-type: disc;
}
ol { list-style-type: decimal; }
ul li, ol li {
  padding-left: 0.7em;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #1a2131;
  border-radius: 13px;
  margin: 20px 0 12px 0;
  box-shadow: 0 4px 14px 0 #48587f22;
  font-size: 1rem;
}
.testimonial-card p,
.testimonial-card span,
.testimonial-card b {
  color: #222;
}
.testimonial-card span {
  font-size: .99rem;
  margin-left: 12px;
  font-family: var(--font-body);
}
@media (max-width: 700px){
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .testimonial-card span { margin-left: 0; margin-top: 4px; }
}

/* ==== CTA BUTTONS in SECTIONS ==== */
section .cta-btn {
  margin-top: 12px;
  font-size: 1.12rem;
  box-shadow: 0 4px 18px 0 rgba(217,131,36,.13);
}

/* ==== ACCORDION-style FAQ ==== */
dl {
  background: #20335684;
  border-radius: 14px;
  margin: 16px 0;
  padding: 20px 18px 10px 28px;
}
dt {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.02em;
  margin-bottom: 4px;
  margin-top: 12px;
}
dd {
  margin-bottom: 10px;
  color: #eee;
  font-size: 1em;
  padding-left: .25em;
}

/* ==== FOOTER STYLES ==== */
footer {
  background: linear-gradient(135deg, #222 60%, var(--color-primary) 100%);
  padding: 36px 0 20px 0;
  color: #e0e6ef;
  font-family: var(--font-body);
  border-radius: 16px 16px 0 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
  align-items: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--color-accent);
  font-weight: 500;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ffa857;
}
.brand-info {
  font-size: 1.05em;
  text-align: center;
  line-height: 1.6;
  color: #f4f4f4;
}
.brand-info span {
  font-size: 0.95em;
  color: #bfcffe;
}
.social-links {
  display: flex; align-items: center; gap: 18px;
}
.social-links a img {
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 6px #d9832433);
  transition: filter .16s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: drop-shadow(0 0 14px #ffa857cc) brightness(.95);
}

/* ==== FORMS ==== */
input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #34526f;
  background: #fff;
  font-size: 1rem;
  display: block;
  color: #34526f;
  margin-bottom: 14px;
  outline: none;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
}
label {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* === CREDENTIALS SECTION (team-kundenstimmen.html) === */
.credentials {
  background: #20335695;
  border-radius: 12px;
  padding: 18px;
  margin-top: 14px;
  color: #fff;
  font-size: 1em;
}

/* ===== MOBILE RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 550px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
  .main-nav, .main-nav .logo img { height: 50px; }
  .cta-btn, section .cta-btn { font-size: 0.97rem; padding: 9px 18px; }
  .features-grid > div, .solutions-list > div, .team-grid > div {
    padding: 15px 7px 12px 10px;
    min-width: unset;
  }
}

/* ===== MICRO-INTERACTIONS / NEON EFFECTS ===== */
.cta-btn, .card, .testimonial-card, .features-grid > div, .solutions-list > div, .main-nav ul li a,
.mobile-nav a, .footer-menu a {
  transition: all .18s cubic-bezier(.5,0,.13,1);
}
.card:hover, .features-grid > div:hover, .solutions-list > div:hover {
  box-shadow: 0 8px 32px 0 #b2600033, 0 1.5px 12px 0 #34526f33;
  border-color: var(--color-accent);
}

/* == Icon color pop == */
.features-grid > div img, .team-grid > div img, .solutions-list > div img {
  transition: filter .22s;
}
.features-grid > div:hover img, .team-grid > div:hover img, .solutions-list > div:hover img {
  filter: drop-shadow(0 0 16px #ffa857cc);
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
section, .card, .testimonial-card, .features-grid > div, .team-grid > div, .solutions-list > div {
  animation: fadeInUp .8s cubic-bezier(.25,.46,.45,.94) both;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1b2331f2;
  color: #f4f4f4;
  border-top: 5px solid var(--color-accent);
  z-index: 1200;
  box-shadow: 0 -4px 30px 0 #1b233155;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 10vw 22px 7vw;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: bottom .44s;
}
.cookie-banner.hide { bottom: -160px; opacity: .2; pointer-events: none; }
.cookie-banner .cookie-text {
  flex: 1 1 300px;
}
.cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
  margin-left: 12px;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  transition: background .18s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffa857; color: #222;
}
.cookie-banner .cookie-reject-btn {
  background: none;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .cookie-reject-btn:hover, .cookie-banner .cookie-reject-btn:focus {
  background: #34526f; color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #34526f;
  color: #fff;
}
@media (max-width: 800px){
  .cookie-banner { flex-direction: column; gap: 12px; padding: 12px 3vw; }
  .cookie-banner .cookie-text { font-size: 0.98rem; text-align: left; }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; z-index: 1250;
  width: 100vw; height: 100vh;
  background: rgba(19,21,28,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .32s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events:none;
}
.cookie-modal {
  background: #23283c;
  border-radius: 20px;
  max-width: 370px;
  width: 96vw;
  pad: 0;
  box-shadow: 0 16px 36px 0 #1b233133;
  padding: 34px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  font-family: var(--font-body);
  animation: fadeInUp .3s cubic-bezier(.23,.92,.52,1.2) both;
}
.cookie-modal h3 { color: var(--color-accent); font-size: 1.18rem; margin-bottom: 10px; }
.cookie-modal label {
  display: flex; align-items: center; font-size: 1rem; cursor: pointer;
  gap: 10px; margin-bottom: 8px; color: #fff;
  font-family: var(--font-display);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px; height: 18px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-btns {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btns button {
  padding: 10px 16px; border-radius: 8px; outline: none;
  border: none; font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  transition: background .18s;
}
.cookie-modal .cookie-modal-btns button:hover, .cookie-modal .cookie-modal-btns button:focus {
  background: #ffa857; color: #222;
}
.cookie-modal .modal-close {
  background: none;
  color: #bfcffe;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 13px;
  right: 16px;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus { color: var(--color-accent); }

@media (max-width: 400px) {
  .cookie-modal { padding: 18px 8px; }
}

/* === END === */
