/* =====================
   CSS RESET & BASELINE
======================= */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F1F3F6;
  color: #143257;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #143257;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #C89C3C;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li+li {
  margin-top: 0.4em;
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #143257;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  margin-top: 0;
}
h2 {
  font-size: 1.5rem;
  margin-top: 40px;
}
h3 {
  font-size: 1.125rem;
  margin-top: 24px;
}
p, blockquote {
  margin-bottom: 16px;
}
blockquote {
  border-left: 3px solid #C89C3C;
  background: #fff;
  padding: 12px 20px;
  font-style: italic;
  color: #143257;
  margin-bottom: 16px;
}

/* =====================
   CONTAINER & SECTION
====================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =====================
   NAVIGATION
====================== */
header {
  background: #fff;
  box-shadow: 0 6px 24px -12px rgba(20,50,87,0.06);
  position: sticky;
  top: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0 18px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #143257;
  position: relative;
  padding: 6px 8px;
  transition: color 0.16s cubic-bezier(.4,0,.2,1);
  border-radius: 4px;
}
.main-nav > a:hover,
.main-nav > a:focus {
  color: #C89C3C;
  background: rgba(200,156,60,0.06);
}
.main-nav > a.cta-button {
  color: #fff;
  background: #C89C3C;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1.05rem;
  margin-left: 20px;
  box-shadow: 0 2px 12px -6px rgba(200,156,60,0.15);
  transition: background 0.24s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
  font-weight: 700;
}
.main-nav > a.cta-button:hover {
  background: #a88425;
  color: #fff;
  box-shadow: 0 6px 26px -8px rgba(200,156,60,0.25);
}
/* --- Hide nav on mobile --- */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
}


/* =====================
   MOBILE NAVIGATION
====================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 19px;
  z-index: 110;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #143257;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #143257;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1);
  box-shadow: 0 8px 30px 6px rgba(20,50,87,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.35rem;
  color: #C89C3C;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  padding: 2px 10px;
  border-radius: 4px;
}
.mobile-menu-close:hover {
  color: #fff;
  background: rgba(200,156,60,0.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 14px 0 14px 10px;
  border-radius: 4px;
  transition: background 0.23s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(200,156,60,0.14);
  color: #C89C3C;
}
@media (max-width: 420px) {
  .mobile-nav {
    padding: 30px 10px 0 10px;
  }
  .mobile-menu-close {
    margin-right: 8px;
  }
}

/* =====================
   SECTIONS/SPACING
====================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px -6px rgba(20,50,87,0.10);
  overflow: hidden;
  transition: box-shadow 0.22s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 10px 28px -6px rgba(200,156,60,0.15);
}
.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;
  background: #fff;
  border-left: 5px solid #C89C3C;
  border-radius: 10px;
  box-shadow: 0 2px 8px -4px rgba(20,50,87,0.08);
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 550px;
  color: #143257;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #606C7A;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}


/* =====================
   BUTTONS/INTERACTION
====================== */
.cta-button {
  display: inline-block;
  background: #C89C3C;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 36px;
  box-shadow: 0 3px 18px -8px rgba(200,156,60,0.23);
  padding: 13px 32px;
  transition: background 0.21s, box-shadow 0.21s, transform 0.16s;
  cursor: pointer;
  position: relative;
  text-align: center;
  margin-top: 6px;
}
.cta-button:hover,
.cta-button:focus {
  background: #a88425;
  box-shadow: 0 10px 34px -12px rgba(200,156,60,0.18);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
}
button:focus, .cta-button:focus {
  outline: 2px solid #C89C3C;
  outline-offset: 2px;
}


/* =====================
   LISTS & ICON-LISTS
====================== */
ul, ol {
  margin-bottom: 18px;
  padding-left: 1.2em;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1.04rem;
}
li img {
  vertical-align: middle;
  height: 1.3em;
  margin-right: 8px;
  margin-bottom: 2px;
  display: inline-block;
}

/* =====================
   TRUST BADGES
====================== */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0 20px 0;
}
.trust-badges img {
  height: 33px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(20,50,87,0.06));
  background: #F1F3F6;
  border-radius: 50%;
  padding: 6px;
}

/* =====================
   MAP PLACEHOLDER
====================== */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid #E4E3DF;
  border-radius: 10px;
  padding: 19px 20px;
  margin-top: 22px;
  box-shadow: 0 2px 10px -8px #14325740;
  font-size: 1.09rem;
}
.map-placeholder img {
  height: 35px;
  width: auto;
}

/* =====================
   FOOTER
====================== */
footer {
  background: #143257;
  color: #fff;
  padding: 44px 0 34px 0;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.21s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C89C3C;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #F1F3F6;
}
.footer-brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 3px #fff2);
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 8px 13px;
  border-radius: 50%;
  transition: background 0.18s;
}
.footer-socials a:hover {
  background: #C89C3C;
}
.footer-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) drop-shadow(0 0 2px #fff5);
}

/* =====================
   CONTENT GRID & FLEX
====================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* =====================
   RESPONSIVE DESIGN
====================== */
@media (max-width: 820px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 680px) {
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .card, .section {
    padding: 20px 6px;
  }
  .testimonial-card {
    max-width: 100%;
    gap: 9px;
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .main-nav { display: none; }
}
@media (max-width: 450px) {
  .cta-button {
    font-size: 0.97rem;
    padding: 10px 14px;
  }
  .footer-nav {
    gap: 18px;
  }
  .footer-brand span {
    font-size: 0.92rem;
  }
}

/* =====================
   FORMS & INPUTS (for Kontakt, etc.)
====================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #CCD2DD;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: #143257;
  margin-bottom: 13px;
  transition: border 0.14s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #C89C3C;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
  margin-top: 12px;
}

/* =====================
   DETAILS / FAQ STYLES
====================== */
details {
  margin-bottom: 17px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1px 8px -4px rgba(20,50,87,0.09);
  padding: 13px 17px;
  transition: box-shadow 0.16s;
}
details[open] {
  box-shadow: 0 4px 18px -4px rgba(200,156,60,0.16);
}
details summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: #C89C3C;
  cursor: pointer;
  padding-bottom: 5px;
  outline: none;
}
details[open] summary {
  color: #143257;
}

/* =====================
   TABLES (normal table resets)
====================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 1px 6px -4px #14325732;
}
th, td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #E4E3DF;
}
th {
  background: #F1F3F6;
}


/* =====================
   COOKIE CONSENT BANNER (FIXED BOTTOM BAR)
====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #C89C3C;
  box-shadow: 0 -3px 28px -8px rgba(20,50,87,0.12);
  padding: 18px 10vw 18px 10vw;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  font-size: 1.07rem;
  color: #143257;
  animation: cookieslidein 0.7s cubic-bezier(.56,0,.37,1.2) 0.05s;
}
@keyframes cookieslidein {
  from { transform: translateY(110%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 4px;
  box-shadow: 0 1px 12px -5px #14325720;
  transition: background 0.13s, color 0.17s, box-shadow 0.18s;
}
.cookie-banner .accept-btn {
  background: #C89C3C;
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: #a88425;
}
.cookie-banner .reject-btn {
  background: transparent;
  color: #143257;
  border: 1px solid #143257;
}
.cookie-banner .reject-btn:hover {
  background: #F1F3F6;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #C89C3C;
  border: 1px solid #C89C3C;
}
.cookie-banner .settings-btn:hover {
  background: #F1F3F6;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 5vw 18px 5vw;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,50,87,0.30);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodalfadein 0.25s cubic-bezier(.66,0,.37,1.17);
}
@keyframes cookiemodalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 9px 72px -16px #14325750;
  padding: 36px 24px 29px 24px;
  min-width: 320px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  animation: cookiemodalpop 0.3s cubic-bezier(.6,.25,.36,1.26);
}
@keyframes cookiemodalpop {
  from { transform: scale(0.94); opacity: 0.45; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #143257;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  margin: 0 0 9px 0;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: #143257;
  margin-top: 8px;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #C89C3C;
  width: 20px;
  height: 20px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  width: 100%;
}
.cookie-modal-content button {
  border-radius: 22px;
  border: none;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: #C89C3C;
  color: #fff;
}
.cookie-modal-content .cancel-btn {
  background: transparent;
  color: #C89C3C;
  border: 1px solid #C89C3C;
}
.cookie-modal-content .cancel-btn:hover {
  background: #F1F3F6;
  color: #a88425;
}
.cookie-modal-content .save-btn:hover {
  background: #a88425;
}

/* =====================
   MISC UTILITIES
====================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.flex-justify { justify-content: space-between; }
.flex-center { justify-content: center; align-items: center; }
.text-center { text-align: center; }

/* =====================
   MICRO-ANIMATIONS & EFFECTS
====================== */
.card,
.testimonial-card,
details {
  transition: box-shadow 0.19s, border 0.2s, background 0.19s;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 10px 26px -8px rgba(200,156,60,0.17);
  border-left: 6px solid #C89C3C;
}
button,
.cta-button,
.cookie-banner button,
.cookie-modal-content button {
  transition: background 0.18s, color 0.17s, box-shadow 0.19s;
}

/* =====================
   TYPOGRAPHY HIERARCHY
====================== */
:root {
  --fz-xs: 14px;
  --fz-s: 16px;
  --fz-m: 18px;
  --fz-l: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;
}
h1 { font-size: var(--fz-xl); }
h2 { font-size: var(--fz-l); }
h3 { font-size: 1.15rem; }
p, ul, ol, details, .footer-brand span {
  font-size: var(--fz-s);
}

/* =====================
   PRINT STYLES
====================== */
@media print {
  body, html, .container, main, footer { background: #fff !important; color: #000 !important; }
  .main-nav, .mobile-menu, .mobile-menu-toggle, footer, .cookie-banner, .cookie-modal { display: none !important; }
}

/* =====================
   END OF STYLE.CSS
====================== */
