/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1F1F1;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* === FONT-FACE with fallbacks === */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #181E27;
  --color-secondary: #CF2233;
  --color-accent: #F1F1F1;
  --color-yellow: #FFD633;
  --color-cyan: #23C9E2;
  --color-pink: #FF6FB0;
  --color-green: #6ADE92;
  --brand-radius: 18px;
  --brand-radius-small: 10px;
  --shadow-main: 0 2px 16px rgba(20,40,60,0.12);
  --shadow-fun: 0 6px 24px rgba(53, 40, 83, 0.15), 0 2px 8px rgba(207, 34, 51, 0.05);
  --transition: 0.27s cubic-bezier(.45,1.4,.85,1);
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  background: var(--color-accent);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; font-weight: 700; color: var(--color-secondary); text-shadow: 2px 3px var(--color-yellow), 0 2px var(--color-cyan); }
h2 { font-size: 2rem; font-weight: 700; color: var(--color-green); }
h3 { font-size: 1.2rem; font-weight: 500; color: var(--color-primary); }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }

p, li, ol {
  color: var(--color-primary);
  font-size: 1.04rem;
  margin-bottom: 10px;
}

strong {
  font-weight: 700;
  color: var(--color-secondary);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--brand-radius);
  background: #fff;
  box-shadow: var(--shadow-main);
  position: relative;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--brand-radius-small);
  box-shadow: var(--shadow-fun);
  position: relative;
  padding: 20px 24px 20px 24px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 38px rgba(219,45,107,0.14);
  transform: translateY(-6px) scale(1.02) rotate(-1.5deg);
}

.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;
  border-radius: var(--brand-radius-small);
  background: #F9FAFF;
  box-shadow: 0 2px 10px rgba(100,0,80,0.05);
  margin-bottom: 20px;
  max-width: 640px;
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
  border-left: 7px solid var(--color-yellow);
}
.testimonial-card p {
  color: #14182C;
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-left: auto;
}
.testimonial-card span:last-child {
  color: var(--color-secondary);
  font-size: 1.3em;
  letter-spacing: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.quick-links {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 1.02em;
}

/* === HEADER === */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 10;
  width: 100%;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-cyan);
  color: var(--color-primary);
}
header img {
  height: 39px;
  width: auto;
  margin-right: 10px;
}

/* === CTA BUTTONS === */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 42px;
  border-radius: 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.10em;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(207,34,51,0.07);
  padding: 10px 30px;
  cursor: pointer;
  text-decoration: none;
  margin: 12px 0 12px 12px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none;
}
.cta.primary {
  background: var(--color-secondary);
  color: #fff;
  letter-spacing: 0.03em;
  border: 2px solid var(--color-secondary);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-cyan);
  color: var(--color-primary);
  transform: translateY(-1.5px) scale(1.04);
}
.cta.secondary {
  background: var(--color-yellow);
  color: var(--color-primary);
  border: 2px solid var(--color-yellow);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-green);
  color: var(--color-primary);
  transform: translateY(-1.5px) scale(1.04);
}

/* === PRICING SPANS === */
.price {
  background: var(--color-yellow);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.05em;
  padding: 3px 9px;
  border-radius: 7.5px;
  margin-left: 12px;
  box-shadow: 0 1px 5px rgba(255,214,51,0.11);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  z-index: 1111;
  right: 18px;
  top: 18px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-primary);
  font-size: 2.1em;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(255,214,51,0.22);
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-menu-toggle:active {
  background: var(--color-cyan);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 44px rgba(24,30,39,0.28);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.65,1.5,.45,1);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 22px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2em;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 8px rgba(207,34,51,0.08);
}
.mobile-nav {
  margin-top: 74px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 28px 12px 32px;
}
.mobile-nav a {
  display: block;
  padding: 15px 0px 15px 3px;
  color: var(--color-primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.34em;
  font-weight: 500;
  border-radius: 10px;
  transition: background 0.18s;
  width: 100%;
}
.mobile-nav a:hover {
  background: var(--color-cyan);
  color: var(--color-secondary);
}

@media (max-width: 980px) {
  header .container {flex-wrap: wrap; gap: 8px;}
  header nav {gap: 10px;}
}

@media (max-width: 900px) {
  header nav {display: none;}
  .mobile-menu-toggle {display: flex;}
  .cta.primary {margin-left: auto;}
}
@media (max-width: 750px) {
  header .container {flex-direction: column; align-items: flex-start;}
  footer .content-wrapper {flex-direction: column; align-items: flex-start;}
}

/* === SECTIONS & MAIN LAYOUT === */
main {
  margin-top: 0;
  margin-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--brand-radius);
  background: #fff;
  box-shadow: var(--shadow-main);
}
@media (max-width: 850px) {
  section, .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
}

@media (max-width: 650px) {
  section, .section {
    padding: 14px 2px;
    margin-bottom: 24px;
    border-radius: 10px;
  }
}

/* === CUSTOM SERVICE CARD LAYOUTS === */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-card {
  min-width: 230px;
  max-width: 310px;
  flex: 1 1 230px;
  border-radius: var(--brand-radius-small);
  background: #F3F8FF;
  box-shadow: var(--shadow-fun);
  padding: 20px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
}
.service-card:hover {
  box-shadow: 0 6px 19px rgba(35,201,226,0.14);
  transform: translateY(-5px) scale(1.025) rotate(1.1deg);
}
.service-card h3 {
  color: var(--color-secondary);
}
.service-card .price {
  margin-left: 0;
  margin-top: 13px;
  display: inline-block;
}

/* === OL/UL STYLES (Playful checkmarks) === */
ul, ol {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
ul li, ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
}
ul li:before {
  content: "\2728";
  color: var(--color-yellow);
  font-size: 1.2em;
  position: absolute;
  left: 2px;
  top: 0.09em;
  font-family: 'Oswald', Arial, sans-serif;
  animation: twinkle .8s infinite alternate;
}
@keyframes twinkle {
  0% {opacity: 1; filter: brightness(1) hue-rotate(0deg);}
  100% {opacity: 0.67; filter: brightness(1.40) hue-rotate(30deg);}
}
ol li:before {
  content: counter(my-ol);
  color: var(--color-green);
  font-size: 1em;
  font-weight: bold;
  left: 3px;
  top: 0;
  font-family: 'Roboto', Arial, sans-serif;
}

ol {
  counter-reset: my-ol 0;
}
ol li {
  counter-increment: my-ol;
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 34px 0 16px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: 1120px;
}
footer img {
  height: 37px;
  width: auto;
}
footer nav {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 1.01em;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.16s, color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
}
footer p {
  color: #fff;
  font-size: 0.97em;
  opacity: 0.93;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}

/* === RESPONSIVE + FLEX BREAKPOINTS === */
@media (max-width: 1100px) {
  .container, footer .content-wrapper {max-width: 98vw;}
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .services-list {
    flex-direction: column;
    gap: 12px;
  }
  main{ margin-bottom:40px; }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.card, .service-card, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(35,201,226,0.13);
  transform: scale(1.02) rotate(-1.4deg);
  z-index: 2;
}

a, button, .cta {
  transition: color 0.17s, background 0.19s, box-shadow var(--transition), transform var(--transition);
}
a:hover, a:focus, .cta:focus {
  text-decoration: underline;
  outline: 0;
}

.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -24px;
  top: -18px;
  width: 75px;
  height: 75px;
  background: var(--color-pink);
  border-radius: 62% 38% 42% 58% / 64% 28% 72% 36%;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  animation: blob-bounce 4s infinite alternate cubic-bezier(.43,1.4,.63,1);
}
@keyframes blob-bounce {
  0% { transform: scale(1) rotate(0deg) translateY(0); }
  100% { transform: scale(1.16) rotate(-9deg) translateY(-6px); }
}

.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -36px;
  bottom: -14px;
  width: 65px;
  height: 65px;
  background: var(--color-cyan);
  border-radius: 42% 58% 43% 57% / 62% 38% 48% 52%;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  animation: blob-bobble 4.7s infinite alternate cubic-bezier(.13,0.6,.92,.89);
}
@keyframes blob-bobble {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.4) rotate(15deg); }
}

/* === MINI CONTACT ELEMENT === */
.mini-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFFAF5;
  border-radius: var(--brand-radius);
  padding: 16px 22px;
  box-shadow: 0 1px 7px rgba(255,214,51,0.11);
  margin-top: 16px;
  font-size: 1.04em;
}
.mini-contact .cta.secondary {
  margin: 0;
}

/* === MAP PLACEHOLDER (Kontakt) === */
.contact-map {
  margin: 22px 0 0 0;
}
.map-placeholder {
  background: #F3F4FF;
  color: #888;
  font-style: italic;
  text-align: center;
  border-radius: var(--brand-radius);
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === COOKIES CONSENT BANNER === */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 40000;
  width: 100%;
  background: #fffbe9;
  box-shadow: 0 -3px 20px rgba(181,144,0,0.13), 0 1px 1px rgba(0,0,0,0.06);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1.04em;
  animation: slideUpBanner 0.48s cubic-bezier(.55,1.4,.87,0.92);
}
@keyframes slideUpBanner {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookies-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookies-banner .cta {
  margin: 0;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 42000;
  background: rgba(24,30,39,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.26s;
}
@keyframes fadeInModal {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  color: #181E27;
  border-radius: var(--brand-radius);
  box-shadow: 0 8px 42px rgba(24,30,39,0.19);
  padding: 32px 26px 28px 26px;
  max-width: 400px;
  width: 86vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popInModal 0.34s cubic-bezier(.55,2.1,.25,.97);
}
@keyframes popInModal {
  from {transform: scale(.7) translateY(50px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.6em;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.02em;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #e2e3eb;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid #ccc;
}
.cookie-toggle.enabled {
  background: var(--color-green);
  border-color: var(--color-green);
}
.cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 2.5px;
  top: 1.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.09);
  transition: left 0.16s, background 0.12s;
}
.cookie-toggle.enabled::after {
  left: 18px;
  background: #fafffa;
}

/* === UTILITIES === */
.hide {
  display: none !important;
}
.text-center {text-align: center !important;}
.text-right {text-align: right !important;}
.text-left {text-align: left !important;}
.flex {display: flex !important;}
.row {flex-direction: row !important;}
.col {flex-direction: column !important;}
.align-center {align-items: center !important;}
.space-between {justify-content: space-between !important;}

/* === FORMS -- PLAYFUL === */
input, textarea {
  background: #F9FAFF;
  border-radius: var(--brand-radius-small);
  border: 1.5px solid #ddd;
  padding: 10px 15px;
  font-size: 1.07em;
  margin: 6px 0 10px 0;
  width: 100%;
  transition: border-color 0.13s;
}
input:focus, textarea:focus {
  border-color: var(--color-cyan);
}
label {
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 2px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06em;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--color-cyan); border-radius: 6px; }

/* === Playful Easter Egg! === */
@media (max-width: 440px){
  h1,h2 { font-size: 1.47em !important; }
}

/* === End of playful_dynamic style === */
