/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #3F4259;
  line-height: 1.7;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #C7A27E;
  text-decoration: none;
  transition: color .22s cubic-bezier(.23,.65,.77,.42);
}
a:hover, a:focus {
  color: #F562A3;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 22px;
}
li {
  margin-bottom: 8px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #3F4259;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
h1 {font-size: 2.75rem; margin-top:16px; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 22px;}
h3 {font-size: 1.35rem; margin-bottom: 10px;}
h4 {font-size: 1.1rem;}
h5,h6 {font-size: 1em;}
p, .subheadline {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #3F4259;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.25rem;
  color: #F562A3;
  font-weight: 600;
  margin-bottom: 18px;
}
.text-section {
  margin-bottom: 32px;
}
.text-section.legal {
  background: #FFF4E8;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 36px;
  color: #3F4259;
}

/* === Brand Colors (Electric Highlights) === */
:root {
  --primary: #3F4259;
  --secondary: #C7A27E;
  --accent: #FFFFFF;
  --brand-hotpink: #F562A3;
  --brand-electric-cyan: #43E8ED;
  --brand-lemon: #FFE156;
  --brand-purple: #B269FF;
  --brand-backdrop: #110D24;
  --brand-card-bg: #FFF6F3;
  --brand-btn-hover: #43E8ED;
  --brand-darktext: #28243A;
  --brand-lighttext: #FFFFFF;
}

/* === Structural Containers === */
.container {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === Header & Navigation === */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 1px 12px rgba(63,66,89,0.03);
  z-index: 900;
  position: relative;
  margin-bottom: 8px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 22px;
}
nav.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  padding: 4px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: var(--brand-hotpink);
  border-bottom: 3px solid var(--brand-hotpink);
  outline: none;
}
.cta.primary {
  font-family: 'Playfair Display', serif;
  color: var(--brand-lighttext);
  background: var(--brand-hotpink);
  border-radius: 32px;
  padding: 13px 34px 12px 34px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 3px 18px rgba(245,98,163, 0.11), 0 1px 4px rgba(67,232,237,0.06);
  border: none;
  transition: background .22s cubic-bezier(.23,.65,.77,.42), box-shadow .2s;
  margin-left: 12px;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-block;
}
.cta.primary:hover,.cta.primary:focus {
  background: var(--brand-btn-hover);
  color: var(--primary);
  box-shadow: 0 3px 26px rgba(67,232,237,0.13),0 1px 4px rgba(245,98,163,0.11);
  outline: none;
}
.cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--brand-lighttext);
  border-radius: 28px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: background 0.25s, color 0.2s, box-shadow .22s;
  border: none;
  box-shadow: 0 1px 8px rgba(112,82,204,0.04);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.cta:hover, .cta:focus {
  background: var(--brand-hotpink);
  color: var(--accent);
  box-shadow: 0 2px 16px rgba(245,98,163,0.13),0 1px 4px rgba(67,232,237,0.11);
  outline: none;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-hotpink);
  border: none;
  border-radius: 40px;
  color: var(--brand-lighttext);
  font-size: 2.1rem;
  padding: 0 22px;
  height: 50px;
  width: 52px;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .17s;
  z-index: 1001;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-btn-hover);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--brand-backdrop);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.23,.65,.77,.42);
  z-index: 1200;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-lighttext);
  border: none;
  font-size: 2.3rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 1201;
}
.mobile-nav {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 32px;
  width: 100%;
}
.mobile-nav a {
  color: var(--brand-lighttext);
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 16px 0;
  border-radius: 8px;
  transition: background .2s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-hotpink);
  color: var(--accent);
  outline: none;
}
@media (max-width: 1024px) {
  nav.main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    font-size: 1rem;
    padding: 11px 20px 10px 20px;
    margin-left: 2px;
  }
  .logo img {
    height: 38px;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(70deg, var(--brand-hotpink) 0%, var(--brand-lemon) 110%);
  color: var(--brand-darktext);
  border-radius: 0 0 38px 38px;
  margin-bottom: 60px;
  padding: 40px 0 55px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.9rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(255,97,172,0.10);
}
.hero .cta.primary {
  margin-top: 18px;
}

/* === FEATURES & CARD STYLES === */
.features, .feature-grid, .service-list, .style-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.features .feature-grid,
.service-list,
.style-list {
  width: 100%;
  justify-content: flex-start;
}
.feature-grid li, .service-list li, .style-list li {
  background: var(--brand-card-bg);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(245,98,163,0.03), 0 1px 14px rgba(67,232,237,0.07);
  padding: 32px 22px 26px 22px;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 330px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid transparent;
  transition: border .22s, box-shadow 0.22s, transform .23s;
}
.feature-grid li:hover, .service-list li:hover, .style-list li:hover {
  border-color: var(--brand-electric-cyan);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 42px rgba(67,232,237,0.13), 0 3px 16px rgba(245,98,163,0.10);
  z-index: 2;
}
.feature-grid img, .service-list img, .style-list img {
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 7px var(--brand-lemon));
}
.feature-grid h3, .service-list h2, .style-list h3 {
  color: var(--brand-hotpink);
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.style-list h3 {
  color: var(--brand-purple);
}
.feature-grid p, .service-list p, .style-list p {
  color: var(--brand-darktext);
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* === Testimonials === */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFF6F3;
  padding: 28px 26px;
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(255,225,86,0.05), 0 2px 10px rgba(67,232,237,0.07);
  border-left: 7px solid var(--brand-hotpink);
  border-right: 0 solid transparent;
  transition: box-shadow .19s, border-left .2s;
  color: #29243A;
  min-width: 0;
}
.testimonials .testimonial-card p {
  font-size: 1.18rem;
  color: #222;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.testimonial-author {
  font-size: .95rem;
  color: #F562A3;
  font-weight: 600;
  letter-spacing: .03em;
  padding-top: 0;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(245,98,163,0.12), 0 3px 14px rgba(67,232,237,0.08);
  border-left: 7px solid var(--brand-electric-cyan);
}

/* === Contact Data/Preview === */
.contact-preview ul,
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  margin-top: 10px;
}
.contact-preview ul li, .contact-data li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #3F4259;
}
.contact-preview img, .contact-data img {
  width: 28px;
  height: 28px;
  margin-right: 2px;
}
.map-embed {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* === Process Steps / Timeline (Ablauf) === */
.process-steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  width: 100%;
}
.process-steps ol li {
  background: var(--brand-card-bg);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(67,232,237,0.04);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 240px;
  padding: 22px 14px 18px 24px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 6px solid var(--brand-lemon);
  transition: box-shadow .18s, border-left .18s;
}
.process-steps ol li:hover {
  border-left: 6px solid var(--brand-hotpink);
  box-shadow: 0 6px 28px rgba(245,98,163,0.09);
}
.process-steps ol li h2 {
  font-size: 1.07rem;
  color: var(--brand-electric-cyan);
  margin-bottom: 2px;
}
.process-steps ol li p {
  font-size: .99rem;
}
.timeline-visual ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.timeline-visual ul li {
  list-style: disc inside;
}

/* === FAQ Accordion === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
}
.faq-accordion h2 {
  color: var(--brand-hotpink);
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.faq-accordion p {
  color: var(--primary);
}

/* === Footer === */
footer {
  background: var(--primary);
  color: var(--brand-lighttext);
  margin-top: 46px;
  padding: 0 0 24px 0;
  font-size: .97rem;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--brand-lemon);
  font-weight: 600;
  font-size: 1rem;
  transition: color .18s;
  opacity: 0.92;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-hotpink);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .98rem;
}
.footer-copy {
  width: 100%;
  text-align: right;
  color: var(--brand-electric-cyan);
  padding-top: 8px;
  font-size: .93rem;
  opacity: 0.78;
}

/* === Success Section (Thank you) === */
.success {
  background: var(--brand-lemon);
  border-radius: 18px;
  margin: 50px 0 60px 0;
  padding: 40px 0 35px 0;
  text-align: center;
}
.success h1 {
  color: var(--brand-hotpink);
}
.success .text-section {
  text-align: left;
  margin: 0 auto 34px auto;
  max-width: 660px;
  background: #FFEDFB;
  border-radius: 12px;
  padding: 15px 35px 22px 35px;
  box-shadow: 0 2px 13px rgba(245,98,163,0.06);
}
.success .cta.primary {
  margin-top: 16px;
}

/* === Legal text sections === */
.text-section.legal h2 {
  color: var(--brand-hotpink);
  margin-top: 18px;
}
.text-section.legal ul {
  margin-left: 14px;
}

/* === Responsive Patterns === */
@media (max-width: 1080px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 840px) {
  .feature-grid li, .service-list li, .style-list li, .process-steps ol li {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper, .section {
    padding: 0 0;
  }
  .hero {
    padding: 24px 0 35px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 {
    font-size: 2.12rem;
  }
  .features, .feature-grid, .service-list, .style-list, .process-steps ol {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 18px;
  }
  .footer-copy {
    text-align: left;
    padding-left: 6px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.47rem;}
  h2 {font-size: 1.13rem;}
  .feature-grid li, .service-list li, .style-list li, .process-steps ol li {padding: 13px 9px 11px 14px;}
  .testimonials .testimonial-card {padding: 17px 11px;}
  .hero {padding: 13px 0 25px 0;}
  .section {
    padding: 18px 4px;
    margin-bottom: 33px;
  }
}
@media (max-width: 480px) {
  .logo img {height: 29px;}
}

/* === Utility Flexbox Spacing Classes === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  background: var(--brand-card-bg);
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(245,98,163,0.07);
}
.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: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Micro-interactions & Animations === */
.cta, .cta.primary, .footer-nav a, .card, .feature-grid li, .service-list li, .style-list li {
  transition: box-shadow .22s, border .19s, transform .17s, color .19s, background .22s;
}
::-webkit-scrollbar {
  width: 7px;
  background: #FFF4E8;
}
::-webkit-scrollbar-thumb {
  background: #FFD2F3;
  border-radius: 7px;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  bottom: 24px;
  background: #3F4259;
  color: #FFF;
  padding: 27px 16px 22px 16px;
  border-radius: 26px;
  box-shadow: 0 6px 42px rgba(245,98,163,0.13), 0 2px 10px rgba(67,232,237,0.11);
  min-width: 270px;
  z-index: 1700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .26s cubic-bezier(.23,.65,.77,.42);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 98vw;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  color: var(--brand-lemon);
  font-size: 1.01rem;
  margin-bottom: 6px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.cookie-banner button {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 1px 7px rgba(245,98,163,0.07);
  transition: background 0.18s, color .18s;
}
.cookie-banner .cookie-accept {
  background: var(--brand-hotpink);
  color: #FFF;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--brand-btn-hover);
  color: var(--primary);
}
.cookie-banner .cookie-reject {
  background: var(--brand-lemon);
  color: var(--brand-darktext);
}
.cookie-banner .cookie-reject:hover,.cookie-banner .cookie-reject:focus {
  background: var(--brand-purple);
  color: #FFF;
}
.cookie-banner .cookie-settings {
  background: #FFF;
  color: var(--brand-darktext);
  border: 1.5px solid #EEE;
}
.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: #FFD2F3;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44,23,61,0.57);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.24s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
@keyframes fadeIn {from { opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: #FFF6F3;
  color: #22223A;
  padding: 34px 30px 28px 30px;
  border-radius: 28px;
  box-shadow: 0 7px 64px rgba(245,98,163,0.13), 0 2px 10px rgba(67,232,237,0.11);
  min-width: 310px;
  max-width: 98vw;
}
.cookie-modal h2 {
  color: var(--brand-hotpink);
  margin-bottom: 13px;
  font-size: 1.28rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-switch {
  width: 39px; height: 22px;
  border-radius: 15px;
  background: #E8E7F4;
  position: relative;
  cursor: pointer;
}
.cookie-modal .cookie-switch input[type=checkbox]{
  opacity: 0; width: 39px; height: 22px; margin:0;position:absolute;left:0;top:0;z-index:2;
}
.cookie-modal .cookie-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FFD2F3;
  transition: left .18s, background .17s;
  z-index: 1;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background: var(--brand-hotpink);
  left: 19px;
}
.cookie-modal .cookie-category span {
  font-size: 1.05rem; font-weight: 500;
}
.cookie-modal .cookie-essential {
  opacity: .82;
}
.cookie-modal .cookie-actions {
  display: flex; gap: 13px; margin-top: 14px;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

/* ========== END OF MAIN CSS ========== */