/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block; 
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font: inherit; }
:root {
  --vc-primary: #2E3849;
  --vc-secondary: #D8A376;
  --vc-accent: #F1F1F7;
  --vc-bg: #FFFFFF;
  --vc-text: #2E3849;
  --vc-card-bg: #FFF;
  --vc-shadow: 0 2px 12px rgba(46,56,73,0.07);
  --vc-radius: 20px;
  --vc-radius-small: 8px;
  --vc-cta-hover: #C47B43;
  --vc-link-hover: #D8A376;
  --vc-border: #EFF0F5;
  --vc-danger: #C6462E;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--vc-bg);
  color: var(--vc-text);
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--vc-primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
p, ul, li, a, span, strong { line-height: 1.6; }
p { margin-bottom: 16px; }
strong { font-weight: 700; }
.text-section h2 { margin-top: 32px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vc-accent);
  border-radius: var(--vc-radius);
  box-shadow: var(--vc-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--vc-accent);
  border-radius: var(--vc-radius-small);
  box-shadow: var(--vc-shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--vc-secondary);
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vc-card-bg);
  border-radius: var(--vc-radius-small);
  box-shadow: var(--vc-shadow);
  margin-bottom: 16px;
  padding: 18px;
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .section { padding: 28px 8px; margin-bottom: 36px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
  .content-wrapper, .card-container, .content-grid { gap: 16px; }
  .testimonial-card { max-width: 100%; }
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%; background: var(--vc-bg);
  border-bottom: 1.5px solid var(--vc-border);
  box-shadow: 0 1.5px 0 0 var(--vc-accent);
  padding-top: 12px;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}
header img[alt="Velvet Currency"] { height: 46px; width: auto; }
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
nav a {
  font-weight: 600;
  padding: 6px 12px;
  transition: color 0.14s linear, background 0.16s linear;
  border-radius: var(--vc-radius-small);
  color: var(--vc-primary);
  font-size: 1rem;
}
nav a:hover, nav a:focus {
  background: var(--vc-secondary);
  color: #fff;
}
.cta.primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--vc-secondary);
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 4px 18px rgba(216,163,118,0.15);
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 5px 16px 0 rgba(46,56,73,0.07);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--vc-cta-hover);
  box-shadow: 0 2px 8px 0 rgba(46,56,73,0.12);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--vc-secondary);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  z-index: 102;
  border: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vc-cta-hover);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(46, 56, 73, 0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-102vw);
  transition: transform 0.36s cubic-bezier(.6,.18,.35,.93);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  font-size: 2rem;
  background: transparent;
  align-self: flex-end;
  margin: 20px 16px 0 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vc-cta-hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  gap: 12px;
  align-items: flex-start;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.10rem;
  padding: 13px 0 13px 8px;
  width: 100%;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vc-secondary);
  color: var(--vc-primary);
}

@media (max-width: 1020px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  nav { gap: 12px; }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  nav { gap: 4px; }
}

@media (max-width: 820px) {
  header .container {
    gap: 2px;
    flex-direction: row;
  }
  nav { display: none !important; }
  .cta.primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === MAIN SECTIONS, CARDS, LISTS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 8px 0;
}
.content-wrapper > ul > li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.09rem;
  background: var(--vc-card-bg);
  border-radius: var(--vc-radius-small);
  padding: 15px 20px;
  box-shadow: 0 1.5px 6px 0 rgba(46,56,73,0.03);
  margin-bottom: 2px;
  min-height: 56px;
}
.content-wrapper > ul > li img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--vc-accent);
  padding: 4px;
  display: block;
}

/* Dienstleistungs-Karten */
.content-wrapper > ul > li h3, .content-wrapper > ul > li h2, .content-wrapper > ul > li strong, .content-wrapper > ul > li span {
  margin: 0 0 2px 0;
}
.content-wrapper > ul > li h3, .content-wrapper > ul > li h2 {
  font-size: 1.12rem;
  color: var(--vc-primary);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.content-wrapper > ul > li strong, .content-wrapper > ul > li span {
  color: var(--vc-secondary);
  font-weight: 700;
  margin-top: 3px;
}

.card {
  background: var(--vc-card-bg);
  border-radius: var(--vc-radius-small);
  box-shadow: var(--vc-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 640px) {
  section { padding: 22px 2px; margin-bottom: 24px; }
  .content-wrapper > ul > li { padding: 12px 8px; min-height: 44px; font-size: 1rem; }
  .card { padding: 16px 8px; }
}

/* === TESTIMONIALS === */
.testimonial-card p {
  color: var(--vc-primary);
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.59;
}
.testimonial-card strong {
  color: var(--vc-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card {
  border-left: 4px solid var(--vc-secondary);
  background: #FFF;
  color: var(--vc-primary);
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
  cursor: default;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 16px 0 rgba(216,163,118,0.13),0 2px 12px rgba(46,56,73,0.12);
}

/* === BUTTONS & INTERACTIVE === */
button, .cta.primary, a.cta.primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.24s;
  outline: none;
}

a:focus, button:focus { outline: 2px solid var(--vc-secondary); outline-offset: 2px; }

a, a:visited {
  color: var(--vc-primary);
}
a:hover, a:active {
  color: var(--vc-link-hover);
}

/* --- Text-section and Lists --- */
.text-section ul {
  padding-left: 0;
  margin: 10px 0 0 0;
  list-style: none;
  gap: 12px;
}
.text-section ul li {
  padding-left: 0px;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.text-section a { color: var(--vc-secondary); border-bottom: 2px solid var(--vc-secondary); transition: color 0.18s, border-color 0.18s; }
.text-section a:hover { color: var(--vc-primary); border-color: var(--vc-primary); }

/* === FOOTER === */
footer {
  background: var(--vc-primary);
  color: #fff;
  padding: 44px 0 24px 0;
  box-shadow: 0 -2px 10px rgba(46,56,73,0.05);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.94;
  font-weight: 500;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--vc-secondary);
  opacity: 1;
}
footer .text-section {
  margin-top: 10px;
  text-align: center;
}
footer .text-section p, footer .text-section a {
  color: #fff;
  font-size: 0.93rem;
  opacity: 0.95;
}
footer .text-section a {
  border-bottom: 2px solid var(--vc-secondary);
  transition: color 0.14s, border-color 0.14s;
}
footer .text-section a:hover { color: var(--vc-secondary); border-color: var(--vc-secondary); }

@media (max-width: 768px) {
  footer { padding: 34px 0 13px 0; }
  footer .container { gap: 10px; }
  footer nav { gap: 11px; font-size: 0.98rem; }
}

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #FFF;
  border-top: 2px solid var(--vc-secondary);
  box-shadow: 0 -6px 28px rgba(46,56,73,0.08);
  z-index: 3500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 22px;
  font-size: 1.07rem;
  animation: cookieBannerIn 0.66s;
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%);} to {transform: translateY(0);}
}
#cookie-banner p { flex: 1 1 auto; color: var(--vc-primary); margin: 0; }
#cookie-banner .cookie-btn {
  margin-left: 13px;
  padding: 11px 22px;
  border-radius: var(--vc-radius-small);
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: var(--vc-secondary);
  color: #fff;
  transition: background 0.17s, color 0.15s;
  box-shadow: 0 2px 7px rgba(216,163,118,0.08);
}
#cookie-banner .cookie-btn.rej {
  background: #FFF;
  color: var(--vc-danger);
  border: 2px solid var(--vc-danger);
}
#cookie-banner .cookie-btn.rej:hover { background: var(--vc-danger); color: #fff; }
#cookie-banner .cookie-btn.settings {
  background: var(--vc-bg);
  color: var(--vc-primary);
  border: 2px solid var(--vc-primary);
}
#cookie-banner .cookie-btn.settings:hover { background: var(--vc-primary); color: #fff; }
#cookie-banner .cookie-btn:not(:last-child) { margin-right: 9px; }

@media (max-width: 650px) {
  #cookie-banner { flex-direction: column; gap: 16px; padding: 13px 7px; font-size: 0.98rem; }
  #cookie-banner .cookie-btn { width: 90%; margin-left: 0; margin-right: 0; }
}

/* --- Cookie Modal --- */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(46, 56, 73, 0.76);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.48s;
}
#cookie-modal.active { display: flex; }
@keyframes cookieModalIn {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--vc-radius);
  box-shadow: 0 8px 24px rgba(46,56,73,0.11);
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  min-width: 310px;
  max-width: 94vw;
  animation: modalContentIn 0.49s;
}
@keyframes modalContentIn { from { transform: scale(0.89); } to { transform: scale(1); } }
.cookie-modal-content h2 {
  color: var(--vc-primary);
  margin-bottom: 13px;
  font-size: 1.22rem;
}
.cookie-cat {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.cookie-cat .cookie-switch {
  width: 44px; height: 26px;
  border-radius: 14px;
  background: var(--vc-accent);
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--vc-border);
  transition: background 0.15s;
  display: flex; align-items: center;
}
.cookie-cat .cookie-switch.enabled {
  background: var(--vc-secondary);
  border-color: var(--vc-secondary);
}
.cookie-cat .cookie-switch .circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(46,56,73,0.08);
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.16s;
}
.cookie-cat .cookie-switch.enabled .circle { left: 20px; }
.cookie-cat .cookie-switch.disabled { background: #E7EAEF; }
.cookie-cat .cookie-switch.disabled .circle { background: #fff; }

#cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  color: var(--vc-primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
  padding: 4px;
  transition: color 0.12s;
}
#cookie-modal .close-modal:hover { color: var(--vc-secondary); }

.cookie-modal-btns {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-btns .cookie-btn {
  width: auto;
  min-width: 110px;
  text-align: center;
  padding: 10px 2.1em;
}

@media (max-width: 480px) {
  .cookie-modal-content { padding: 17px 3vw; min-width: unset; }
  .cookie-modal-btns { flex-direction: column; gap: 8px; }
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
.card, .cta.primary, .testimonial-card, .content-wrapper > ul > li, .feature-item, #cookie-banner, .cookie-cat .cookie-switch, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow 0.15s, transform 0.18s, background 0.12s, color 0.14s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 7px 28px 0 rgba(216,163,118,0.14),0 3px 14px rgba(46,56,73,0.11);
  transform: translateY(-2px) scale(1.013);
}

/* === GEOMETRIC STRUCTURED AESTHETIC === */
/* --- Geometric shapes accents (subtle) --- */
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px; right: 36px;
  width: 72px; height: 72px;
  background: rgba(46,56,73,0.045);
  border-radius: 20% 80% 60% 40%/60% 40% 80% 20%;
  z-index: 0;
  pointer-events: none;
}
.section {
  position: relative;
  overflow: visible;
}
.content-wrapper, .section {
  z-index: 1;
}
@media (max-width: 581px) {
  .section::before { display: none; }
}

/* --- More geometric/structured fonts --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-feature-settings: "ss01" on, "ss02" on; /* If Montserrat Variable is loaded. */
}

/* --- Emphasize precision: spaced blocks, strict gaps --- */
/* Already enforced in flex layouts and card spacing above */

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; background: var(--vc-accent); }
::-webkit-scrollbar-thumb { background: var(--vc-secondary); border-radius: 8px; }

/* === ACCESSIBILITY AND VISUAL REQUIREMENTS === */
@media (max-width: 650px) {
  h1,h2,h3,h4,h5,h6 {
    word-break: break-word;
  }
  .content-wrapper { gap: 10px; }
}

/* === GENERAL MISC AND UTILITIES === */
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0;
}

/* === End of style.css === */
