/* =====================
   MONOCHROME SOPHISTICATED 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, 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F8F9FB;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F9FB;
  color: #232323;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.25em;
  margin: 0.5em 0;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #111;
  text-decoration: underline;
  outline: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #141518;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; line-height: 1.13; margin-bottom: 28px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, .text-section p { font-size: 1rem; margin-bottom: 16px; color: #232323; }
strong { color: #1D3557; font-weight: 700; }

blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: #333;
  border-left: 3px solid #1D3557;
  padding-left: 12px;  
  margin-bottom: 12px;
  margin-top: 8px;
}
cite {
  display: block;
  margin-top: 8px;
  color: #888;
  font-style: normal;
  font-size: 0.95rem;
}

.text-section ul, ul.value-list, .klassiker-list, .service-list, .features ul, .features ul.value-list {
  margin-bottom: 16px;
}
.text-section li, .klassiker-list li, .service-list li, .features ul li, .features ul.value-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #232323;
  line-height: 1.7;
}

/* =====================
   CONTAINER & SECTION LAYOUT
   ===================== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
}

/* =====================
   HEADER, NAV, LOGO
   ===================== */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(30,30,33,0.07);
  padding: 0;
  position: relative;
  z-index: 99;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}
.main-nav .logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
.main-nav > a:not(.logo):not(.cta) {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 10px;
  color: #111;
  border-radius: 5px;
  transition: all 0.18s;
  position: relative;
}
.main-nav > a:not(.logo):not(.cta):hover,
.main-nav > a:not(.logo):not(.cta):focus {
  background: #f1f1f1;
  color: #1D3557;
}
.cta.primary {
  background: #1D3557;
  color: #fff !important;
  border-radius: 30px;
  padding: 12px 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-left: 14px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 20px rgba(20,25,40,0.07);
  border: none;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #232323;
  color: #F2B400;
  box-shadow: 0 4px 30px rgba(20,25,40,0.13);
}
.cta.secondary {
  background: #fff;
  color: #1D3557;
  border: 2px solid #1D3557;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #1D3557;
  color: #fff;
  border-color: #1D3557;
}
/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: #fff;
  border-bottom: 2px solid #e3e6ee;
  padding-top: 64px;
  padding-bottom: 54px;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 900;
  color: #1D3557;
  margin-bottom: 18px;
  line-height: 1.11;
}
.hero p {
  color: #232323;
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.hero .cta {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { max-width: 100%; }
}

/* =====================
   FLEXBOX MANDATORY CONTAINERS & CONTENT GRIDS
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(30,30,30,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 300px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.017);
  box-shadow: 0 6px 32px rgba(15,18,30,0.16);
}
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* =====================
   GENERIC FLEX & SPACING REQUIREMENTS
   ===================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* =====================
   FEATURES, VALUE UL LISTS, HIGHLIGHT GRIDS
   ===================== */
.features .content-wrapper {
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 7px rgba(18,18,35,0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 210px;
  max-width: 320px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 12px;
  text-align: left;
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.feature-grid h3 {
  font-size: 1.18rem;
  color: #1D3557;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.feature-grid p {
  color: #232323;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 18px rgba(30,41,60,0.14);
  transform: scale(1.035) translateY(-3px);
}

.features ul.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

@media (max-width: 950px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    padding: 20px 12px 16px 12px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============
   SERVICES & SPECIAL LISTS
   ============= */
.services {
  background: #F6F6F7;
  border-bottom: 1px solid #e5e7ea;
}
.service-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(15, 20, 30, 0.03);
  padding: 24px 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #232323;
  margin-bottom: 0;
  border-left: 4px solid #1D3557;
}
.service-list li > strong {
  font-size: 1.08rem;
  color: #1D3557;
  margin-bottom: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =============
   HIGHLIGHT ICONS
   ============= */
.highlight-icons {
  display: flex;
  gap: 32px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.highlight-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(15,15,33,0.07);
  padding: 14px 18px;
  min-width: 110px;
}
.highlight-icons img { width: 32px; height: 32px; margin-bottom: 6px; }
.highlight-icons span { font-size: 1rem; font-family: 'Roboto'; font-weight: 500; color: #232323; }
@media(max-width: 700px) {
  .highlight-icons {
    gap: 18px;
    flex-direction: column;
  }
}

.quick-list, .klassiker-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 22px;
  color: #232323;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =====================
   ABOUT
   ===================== */
.about .content-wrapper {
  gap: 30px;
}
.about .text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(19,23,44,0.06);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #232323;
}
@media (max-width: 500px) {
  .about .text-section {
    padding: 16px 10px 10px 10px;
  }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  background: #F6F5F3;
  border-radius: 18px;
  margin-bottom: 40px;
  padding: 36px 0;
}
.testimonials h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(25, 28, 32, 0.07);
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  max-width: 700px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0;
}
.testimonial-card cite {
  color: #4B4B4B;
  font-size: 1rem;
  margin-left: 10px;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(13,17,40,0.13);
  transform: scale(1.02) translateY(-3px);
}
@media (max-width: 820px) {
  .testimonial-card { padding: 16px 10px; }
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #141518;
  color: #f8f8f8;
  padding: 48px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #e9e9eb;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.17s;
  margin-bottom: 0;
}
.footer-nav a:hover { color: #F2B400; }
.footer-contact {
  font-size: 0.95rem;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.94);
  transition: filter 0.18s, transform 0.18s;
  cursor: pointer;
}
.social-icons img:hover {
  filter: grayscale(0%) brightness(1.15);
  transform: scale(1.08);
}
@media (max-width: 850px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =====================
   LEGAL & COOKIE PAGES
   ===================== */
.legal .container {
  padding: 0 8px;
  max-width: 900px;
}
.legal .content-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 14px rgba(20, 25, 40, 0.07);
  padding: 32px 24px 30px 24px;
  margin: 48px auto;
  flex-direction: column;
  gap: 14px;
}
.legal h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: #1D3557;
}
.legal .text-section h2 {
  font-size: 1.23rem;
  color: #232323;
  margin-bottom: 8px;
}
.legal .text-section ul {
  margin-bottom: 20px;
  padding-left: 23px;
}

/* =====================
   MOBILE NAVIGATION & ANIMATION
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.3rem;
  color: #1D3557;
  padding: 8px 14px 8px 8px;
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 111;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2B400;
  color: #141518;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: #232323ee;
  z-index: 1200;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.16,.98,.59,.99), opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 2;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2B400;
  color: #141518;
  outline: none;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  background: #232323;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 14px;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  min-width: 170px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B400;
  color: #232323;
  outline: none;
  transform: scale(1.045);
}
@media (max-width: 1040px) {
  .main-nav > a:not(.logo) {
    font-size: 0.98rem;
    padding: 1px 6px 1px 6px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}

/* =====================
   COOKIE CONSENT BANNER & MODAL
   ===================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1D3557;
  box-shadow: 0 -2px 20px rgba(24, 27, 34, 0.20);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 28px;
  font-size: 1.06rem;
  z-index: 1300;
  min-height: 70px;
  border-top: 2px solid #F2B400;
  transition: transform 0.4s, opacity 0.25s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p { color: #1D3557; margin: 0 0 3px 0; }
.cookie-consent-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn, .cookie-btn.settings {
  min-width: 110px;
  padding: 9px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  border: 2px solid #1D3557;
  background: #fff;
  color: #1D3557;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.18s, box-shadow 0.15s;
  margin-right: 0;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: #1D3557;
  color: #fff;
  border-color: #1D3557;
  box-shadow: 0 2px 8px rgba(18,18,33,.07);
}
.cookie-btn.accept:hover { background: #232323; color: #F2B400; }
.cookie-btn.reject {
  background: #fff;
  color: #111;
  border-color: #1D3557;
}
.cookie-btn.reject:hover { background: #F2B400; color: #1D3557; }
.cookie-btn.settings {
  color: #1D3557;
  border-color: #F2B400;
  background: #fff;
}
.cookie-btn.settings:hover {
  background: #F2B400;
  color: #232323;
  border-color: #F2B400;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 6px;
    padding: 12px 8px;
    text-align: left;
    font-size: 0.99rem;
  }
  .cookie-consent-btns {
    gap: 8px;
    flex-wrap: wrap;
  }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 40, 0.54);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 32px rgba(38,41,63,0.19);
  max-width: 395px;
  width: 90vw;
  padding: 32px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: appearmodal 0.34s cubic-bezier(.16,.98,.59,.99);
}
@keyframes appearmodal {
  0% { transform: scale(.78) translateY(45px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1D3557;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1.05rem;
  color: #232323;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 30px;
  background: #e5e7eb;
  position: relative;
  transition: background 0.14s;
  display: inline-block;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #999;
  border-radius: 50%;
  transition: left 0.19s, background 0.13s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 21px;
  background: #1D3557;
}
/* essential always enabled */
.cookie-modal-category[data-essential] {
  opacity: 0.66;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal-actions .cookie-btn {
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 19px;
  background: none;
  border: none;
  color: #1D3557;
  font-size: 1.42rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 7px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F2B400;
  color: #232323;
  outline: none;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 14px 7px 10px 7px;
  }
}

/* =====================
   UTILITY & HELPERS
   ===================== */
.hide { display: none !important; }
.visible { display: block !important; }
.d-flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.mr-0 { margin-right: 0 !important; }

/* Spacing helpers */
.mt-12 { margin-top: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pt-16 { padding-top: 16px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1rem; }
  .hero .content-wrapper { gap: 15px; }
}

/* =====================
   ANIMATIONS & MICROINTERACTIONS
   ===================== */
button, .cta, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.15s, color 0.15s, border 0.15s, box-shadow 0.17s, transform 0.16s;
}
.animated {
  animation: pulseIn 0.6s cubic-bezier(.33,1.54,.84,1) both;
}
@keyframes pulseIn {
  0% { opacity: 0; transform: scale(.92); }
  100% { opacity: 1; transform: scale(1); }
}

/* End of Monochrome Sophisticated CSS */
