/* 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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border: 0; }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; }
*, *:before, *:after { box-sizing: border-box; }

/* BRAND & CREATIVE ARTISTIC PALETTE */
:root {
  --primary: #263959;
  --secondary: #C2C197;
  --accent: #F0E9DF;
  --creative-pink: #E85D75;
  --creative-blue: #6FE7DD;
  --creative-green: #3EC300;
  --creative-yellow: #FCDE67;
  --creative-purple: #8566AA;
  --bg: #FEFBF5;
  --white: #fff;
  --shadow: 0 4px 24px 0 rgba(40,28,70,0.08);
  --radius: 20px;
  --radius-small: 12px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  font-smooth: always;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 16px;
  gap: 12px;
}
header a img {
  height: 48px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--creative-pink);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--creative-pink);
  color: var(--white);
  font-size: 2rem;
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-left: 18px;
  border: none;
  transition: background 0.2s;
  z-index: 30;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--creative-blue);
  color: var(--primary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 100;
  padding: 40px 28px 28px 28px;
  box-shadow: var(--shadow);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s;
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--creative-pink);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 30px;
  border: none;
  padding: 4px 14px;
  transition: background 0.15s;
  z-index: 120;
}
.mobile-menu-close:hover {
  background: var(--creative-blue);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  border-radius: var(--radius-small);
  padding: 16px 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative-pink);
  color: var(--white);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--creative-blue) 0%, var(--creative-yellow) 65%, var(--bg) 100%);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  min-height: 310px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 310px;
  padding: 32px 10px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
  text-shadow: 1px 2px 6px rgba(38,57,89,0.07);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
  color: var(--primary);
  font-family: var(--font-body);
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--creative-pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-small);
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.21s, box-shadow 0.21s;
  box-shadow: 0 3px 10px 0 rgba(139,93,117,0.06);
}
.cta.primary {
  background: var(--primary);
  color: var(--creative-yellow);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--creative-purple);
  color: var(--creative-yellow);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 28px 0 rgba(133,102,170,0.12);
}
.cta:hover, .cta:focus {
  background: var(--creative-blue);
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 5px 20px 0 rgba(111,231,221,0.10);
}

/* MAIN SECTIONS */
main {
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.text-section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  margin-bottom: 40px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* FEATURE GRID STRUCTURE (as FLEXBOX ONLY) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--white);
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgb(38 57 89 / 8%);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.15s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid var(--creative-purple);
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(133,102,170,0.18);
  transform: translateY(-3px) scale(1.025);
  z-index: 1;
}
.feature-grid h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--creative-purple);
  font-weight: 700;
}
.feature-grid p {
  font-size: 1.03rem;
}
.feature-grid img {
  height: 42px;
  margin-bottom: 10px;
}

/* GENERAL HEADINGS + FONTS */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.7em; }
h3 { font-size: 1.17rem; margin-bottom: 0.6em; font-weight: 700; }
h4, h5 { font-size: 1.08rem; }

/* CARD & FLEX PATTERNS (no grid) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--creative-green);
  box-shadow: 0 2px 18px rgb(62 195 0 / 7%);
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(62,195,0,0.13);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}
.testimonial-card img {
  height: 48px;
  width: 48px;
  background: var(--creative-green);
  border-radius: 50%;
  margin-right: 10px;
  padding: 8px;
}
.testimonial-card blockquote {
  color: #211;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-style: italic;
  margin-right: 8px;
  line-height: 1.6;
}
.testimonial-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.97rem;
  color: var(--primary);
}
.testimonial-card span:first-child {
  color: var(--creative-yellow);
  font-size: 1.10em;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* CONTACT INFO FLEXBOX */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  font-size: 1.03rem;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
.contact-info a {
  color: var(--creative-purple);
  font-weight: 700;
  transition: color 0.17s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--creative-blue);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--creative-yellow);
  width: 100%;
  padding: 36px 0 10px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--creative-yellow);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-small);
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--creative-pink);
  color: var(--white);
}
.brand-tagline {
  font-family: var(--font-body);
  font-size: 1.10rem;
  letter-spacing: 0.016em;
  text-align: center;
  font-weight: 600;
  color: var(--creative-blue);
}

/* LISTS */
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.7;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background: linear-gradient(120deg, var(--creative-yellow), var(--creative-pink));
  border-radius: 50%;
  width: 0.85em;
  height: 0.85em;
  opacity: 0.6;
  margin-top: -3px;
}
ol li {
  counter-increment: item;
}
ol li::marker {
  color: var(--creative-green);
  font-weight: bold;
}

/* FORM & BUTTON STYLES */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 1.02rem;
  border: 2.5px solid var(--creative-purple);
  border-radius: var(--radius-small);
  background: var(--white);
  margin-bottom: 18px;
  transition: border-color 0.15s, box-shadow 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--creative-blue);
  box-shadow: 0 1px 8px 0 rgba(111,231,221,0.25);
}
button, .btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--creative-blue);
  color: var(--primary);
  border-radius: var(--radius-small);
  padding: 12px 28px;
  margin: 10px 0;
  cursor: pointer;
  transition: background 0.16s, transform 0.15s, box-shadow 0.17s;
  box-shadow: 0 2px 8px 0 rgba(111,231,221,0.10);
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--creative-pink);
  color: var(--white);
  transform: scale(1.03);
}

/* SOCIAL ICONS FOLLOW US ON KONTAKT */
ul li img {
  display: inline;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  vertical-align: bottom;
}

/* MODALS & COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--creative-purple);
  color: var(--white);
  font-size: 1rem;
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 99;
  box-shadow: 0 -2px 24px 0 rgba(133,102,170,0.13);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: transform 0.30s cubic-bezier(0.77,0,0.18,1), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex; gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: var(--radius-small);
  font-size: 0.97rem;
  font-weight: 700;
  border: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--creative-green);
  color: var(--white);
}
.cookie-banner .accept:hover { background: var(--creative-blue); }
.cookie-banner .reject {
  background: var(--creative-pink);
  color: var(--white);
}
.cookie-banner .reject:hover { background: var(--creative-purple); }
.cookie-banner .settings {
  background: var(--creative-yellow);
  color: var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--creative-blue);
  color: var(--white);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 110;
  inset: 0 0 0 0;
  background: rgba(38,57,89,0.33);
  opacity: 1;
  transition: opacity 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  min-width: 340px;
  max-width: 90vw;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 34px 30px 34px;
  position: relative;
  display: flex; flex-direction: column; gap: 26px;
  animation: popmodal 0.25s cubic-bezier(0.38, 1.23, 0.96, 0.85);
}
@keyframes popmodal {
  0% {transform: scale(0.88); opacity: 0;}
  85%{transform:scale(1.03);}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: var(--font-display);
  margin-bottom: 2px;
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 18px;
  margin: 8px 0 18px 0;
}
.cookie-modal label {
  font-size: 1.01rem;
  font-family: var(--font-body);
}
.cookie-modal input[type="checkbox"] {
  width: 22px; min-width: 22px;
  height: 22px;
  accent-color: var(--creative-green);
  margin-right: 9px;
}
.cookie-modal .cookie-actions {
  display: flex; gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute; right: 12px; top: 12px;
  background: var(--creative-pink);
  color: var(--white);
  border-radius: 50%; border: none;
  font-size: 1.22rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .close-modal:hover { background: var(--creative-blue); color: var(--primary); }

/* VISUAL HIERARCHY & ARTISTIC FLAIR */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-radius: var(--radius-small);
  background: var(--accent);
  padding: 18px 16px;
  box-shadow: 0 2px 8px 0 rgba(194,193,151,0.10);
  border-left: 5px solid var(--creative-green);
  transition: border-color 0.15s;
}
.feature-item:hover { border-color: var(--creative-pink); }

/* SPACING & FLEX PATTERNS (REQUIRED) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1140px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .feature-grid > div { min-width: 46vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero .container, .container {
    padding: 0 6vw;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .feature-grid > div {
    min-width: 100%;
    max-width: 99vw;
    align-items: flex-start;
  }
  footer .container {
    gap: 15px;
    padding: 0 2vw;
  }
  .section, section {
    padding: 30px 6vw;
    margin-bottom: 36px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.2rem; }
  .section, section { padding: 22px 2vw; }
  .footer-nav { gap: 8px; font-size: 0.94rem; }
  .cookie-modal { min-width: 99vw; padding: 19px 6px; }
}

/* MICRO-INTERACTIONS */
a, button, .cta, .btn, .main-nav a, .footer-nav a {
  transition: color 0.16s, background 0.14s, transform 0.14s, box-shadow 0.16s;
}
.cta, .btn, button {
  transition: background 0.14s, color 0.14s, transform 0.18s, box-shadow 0.15s;
}
.feature-grid > div, .testimonial-card, .feature-item {
  transition: box-shadow 0.14s, transform 0.14s, border-color 0.13s;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 9px; background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--creative-purple);
  border-radius: 8px;
  border: 2px solid var(--accent);
}

/* ACCESSIBILITY: FOCUS OUTLINE */
a:focus, button:focus, .cta:focus, .footer-nav a:focus, .main-nav a:focus {
  outline: 2.5px dashed var(--creative-blue);
  outline-offset: 3.5px;
}

/* SELECTION COLOR */
::selection {
  background: var(--creative-pink);
  color: var(--white);
}

/* END OF STYLE */
