/* =========================
   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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  background: #F2F3F7;
  color: #2C2D3B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #23739B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18192D;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* =========================
   BRAND COLORS & FONTS
   ========================= */
:root {
  --brand-primary: #18192D;
  --brand-secondary: #23739B;
  --brand-accent: #F2F3F7;
  --warm-peach: #FFD7B3;
  --warm-orange: #FFBC80;
  --warm-sand: #FFE8D2;
  --warm-rose: #FFE3DF;
  --warm-shadow: rgba(230, 164, 121, 0.14);
  --white: #fff;
  --dark: #18192D;
  --neutral: #F2F3F7;
  --success: #3EC489;
  --danger: #EB5858;
  /* Font sizes */
  --fs-base: 16px;
  --fs-sm: 14px;
  --fs-lg: 18px;
  --fs-h2: 32px;
  --fs-h1: 40px;
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 28px;
    --fs-h2: 22px;
  }
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
  background: var(--neutral);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: var(--fs-h2);
  margin-bottom: 18px;
}
h3 {
  font-size: 22px;
}
strong {
  font-weight: 600;
}
p, li {
  font-size: var(--fs-base);
}

/* =========================
   CONTAINER
   ========================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================
   SECTION SPACING
   ========================= */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section, section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 12px var(--warm-shadow);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  z-index: 40;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  position: relative;
  gap: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border-radius: 24px;
  padding: 6px 16px;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
  font-size: 15px;
}
header nav a.cta-primary {
  background: var(--warm-orange);
  color: var(--brand-primary);
  font-weight: 600;
  box-shadow: 0 2px 10px var(--warm-shadow);
  margin-left: 12px;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 4px 16px var(--warm-shadow);
}
header nav a:hover:not(.cta-primary) {
  background: var(--warm-peach);
}

header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--warm-orange);
  color: var(--dark);
  font-size: 32px;
  padding: 5px 14px 7px 14px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 41;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* =============== MOBILE MENU OVERLAY =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 25, 45, 0.97);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--warm-orange);
  color: var(--dark);
  font-size: 32px;
  border: none;
  border-radius: 24px;
  margin: 22px 24px 12px 0;
  align-self: flex-end;
  padding: 7px 18px 9px 18px;
  cursor: pointer;
  box-shadow: 0 1px 8px var(--warm-shadow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  gap: 0px;
  margin-top: 24px;
}
.mobile-nav a {
  display: block;
  width: 90vw;
  max-width: 420px;
  margin: 0 0 10px 0;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 16px;
  font-size: 19px;
  padding: 17px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px var(--warm-shadow);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--warm-orange);
  color: var(--dark);
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  background: var(--warm-peach);
  border-radius: 32px;
  margin-top: 26px;
  margin-bottom: 60px;
  min-height: 180px;
  box-shadow: 0 8px 32px 0 var(--warm-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.12;
}
.hero p {
  color: #663900;
  font-size: 19px;
  margin-bottom: 19px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 12px;
    margin-bottom: 38px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 16px;
  }
}

/* =========================
   CARD PATTERNS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--warm-shadow);
  padding: 32px 28px;
  min-width: 240px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(230, 164, 121, 0.21);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 12px var(--warm-shadow);
  margin-bottom: 24px;
  transition: box-shadow 0.16s;
  min-width: 240px;
}
.testimonial-card p {
  font-size: 18px;
  color: var(--dark);
  font-style: italic;
  margin: 0;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-size: 16px;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 6px 21px rgba(230, 164, 121, 0.22);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    align-items: flex-start;
    padding: 16px 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--warm-sand);
  border-radius: 18px;
  padding: 24px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px var(--warm-shadow);
}

/* =========================
   FEATURES LIST IN SECTIONS
   ========================= */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 10px;
}
.features li {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--warm-shadow);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 22px;
  min-width: 210px;
  font-size: 16px;
}
.features li img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: var(--warm-peach);
  border-radius: 18px;
  box-shadow: 0 1px 4px var(--warm-shadow);
  padding: 3px;
}
@media (max-width: 768px) {
  .features ul {
    flex-direction: column;
    gap: 10px;
  }
  .features li {
    min-width: unset;
    width: 100%;
  }
}

/* =========================
   CTA BUTTONS
   ========================= */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 13px 38px;
  border-radius: 36px;
  background: var(--warm-orange);
  color: var(--brand-primary);
  box-shadow: 0 2px 16px var(--warm-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.19s;
  margin-top: 14px;
  margin-bottom: 6px;
  cursor: pointer;
  border: none;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-secondary);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px var(--warm-shadow);
}
.cta-secondary {
  background: var(--brand-secondary);
  color: var(--white);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--warm-orange);
  color: var(--brand-primary);
  transform: translateY(-1px) scale(1.01);
}

/* =========================
   BLOG
   ========================= */
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 16px;
}
.blog-list li {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--warm-shadow);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 17px;
}
.blog-list li span {
  color: var(--brand-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

/* =========================
   TEAM SECTION
   ========================= */
.team .text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--warm-sand);
  border-radius: 16px;
  padding: 18px 18px;
  margin-bottom: 12px;
}

/* =========================
   CONTACT SECTION
   ========================= */
.contact div img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 7px;
  border-radius: 8px;
  background: var(--warm-peach);
  box-shadow: 0 1px 4px var(--warm-shadow);
  padding: 2px;
}
.contact a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.contact a:hover {
  color: var(--brand-secondary);
}

/* =========================
   THANK YOU (Erfolg)
   ========================= */
.thank-you {
  background: var(--warm-rose);
  border-radius: 26px;
  box-shadow: 0 4px 22px var(--warm-shadow);
  padding: 60px 28px;
  margin-top: 36px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .thank-you {
    padding: 28px 8px 34px 8px;
    margin-top: 18px;
    margin-bottom: 30px;
    border-radius: 14px;
  }
}

/* =========================
   LEGAL SECTIONS
   ========================= */
.legal {
  background: var(--brand-accent);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--warm-shadow);
  padding: 38px 28px;
}
.legal h1, .legal h2 {
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 13px;
}
.legal ul {
  margin-top: 13px;
  margin-bottom: 12px;
  padding-left: 24px;
  list-style: disc outside;
}
.legal li {
  font-size: 16px;
  margin-bottom: 7px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--white);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 24px 0 0 0;
  box-shadow: 0 -2px 22px var(--warm-shadow);
  margin-top: 44px;
}
footer .container {
  padding: 0 18px 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 14px;
  padding: 4px 10px;
  transition: background 0.2s, color 0.2s;
  margin: 0 -8px 0 -8px;
}
footer nav a:hover {
  background: var(--warm-peach);
  color: var(--brand-secondary);
}
footer img {
  height: 38px;
  width: auto;
}
footer .social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
footer .social-links a img {
  width: 30px;
  height: 30px;
  border-radius: 16px;
  background: var(--warm-peach);
  padding: 3px;
  box-shadow: 0 1px 6px var(--warm-shadow);
  transition: transform 0.2s;
}
footer .social-links a:hover img {
  transform: scale(1.12) rotate(-6deg);
}
footer .copyright {
  background: none;
  font-size: 14px;
  color: #9698A9;
  padding-bottom: 18px;
  text-align: center;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: var(--brand-accent);
  color: var(--dark);
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -2px 20px rgba(230, 164, 121, 0.20);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  transition: transform 0.38s cubic-bezier(.84,0,.17,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner-message {
  flex: 1 1 0%;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 21px;
  margin: 0 0 0 7px;
  background: var(--warm-orange);
  color: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 1px 8px var(--warm-shadow);
  transition: background 0.19s, color 0.18s;
}
.cookie-banner button.accept {
  background: var(--success);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 17px 8px 16px 8px;
    font-size: 15px;
  }
  .cookie-banner-actions button {
    margin: 0 6px 0 0;
    padding: 10px 16px;
    font-size: 15px;
  }
}

/* =============== COOKIE BANNER MODAL =============== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 25, 45, 0.85);
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.19s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--brand-accent);
  border-radius: 22px;
  padding: 40px 34px;
  width: 98vw;
  max-width: 420px;
  box-shadow: 0 8px 38px var(--warm-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h2 {
  font-size: 23px;
  margin-bottom: 12px;
}
.cookie-modal-category {
  background: var(--warm-sand);
  border-radius: 14px;
  padding: 13px 18px 11px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 13px;
  box-shadow: 0 1px 7px var(--warm-shadow);
}
.cookie-modal-category.essential {
  background: #E8EBF0;
  color: #7E8694;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #DFDCFC;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  margin-left: auto;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--warm-orange);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal button {
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 21px;
  background: var(--warm-orange);
  color: var(--brand-primary);
  box-shadow: 0 1px 8px var(--warm-shadow);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  font-size: 15px;
}
.cookie-modal button.close {
  background: var(--danger);
  color: #fff;
  position: absolute;
  top: 16px; right: 20px;
  box-shadow: none;
  font-size: 24px;
  padding: 3px 16px 9px 16px;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--brand-secondary);
  color: var(--white);
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 22px 6px 18px 8px;
  }
}

/* =========================
   GENERAL UTILS
   ========================= */
.flex {
  display: flex !important;
}
.column {
  flex-direction: column !important;
}
.center {
  justify-content: center;
  align-items: center;
}
.hide {
  display: none !important;
}

/* =========================
   MISC
   ========================= */
section:not(:last-child) {
  margin-bottom: 60px !important;
}

ul li {
  margin-bottom: 7px;
}
ul li:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE LAYOUTS
   ========================= */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 98vw;
  }
  .section, section {
    margin-bottom: 32px;
    padding: 18px 0;
  }
}

@media (max-width: 500px) {
  .cta-primary, .cta-secondary {
    width: 90vw;
    font-size: 16px;
    padding: 12px 0;
  }
  .hero {
    padding: 22px 2px 18px 2px !important;
  }
}

/* =========================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================= */
.cta-primary, .cta-secondary, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, box-shadow 0.18s, color 0.18s, transform 0.16s;
}
.card, .testimonial-card, .features li, .feature-item {
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .feature-item:hover, .features li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px var(--warm-shadow);
  transform: translateY(-2px) scale(1.02);
}

/* =========================
   FOCUS VISIBLE ACCESSIBILITY
   ========================= */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
  background: var(--warm-sand);
}

/* =========================
   TYPOGRAPHY SCALE
   ========================= */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-48 { font-size: 48px; }

/* =========================
   MINIMUM SPACING
   ========================= */
.card, .testimonial-card, .feature-item, .features li, .blog-list li {
  margin-bottom: 20px;
}
section, .section, .hero {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section, .section, .hero {
    margin-bottom: 32px;
  }
}
