/* =========================================================
   WissensWert Creative Artistic CSS
   Author: Senior CSS Developer & UI Designer
   ---------------------------------------------------------
   RESET & BASE STYLES
   ========================================================= */

/* --- 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: 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.5;
  background: #F5F6FA;
  color: #2F3556;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #347C43;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #203864;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.75em;
  margin-bottom: 1.5em;
}
strong {
  font-weight: 700;
}

/* =========================================================
   COLORS, FONTS, AND ROOT VARIABLES
   ========================================================= */
:root {
  --primary: #203864;
  --secondary: #F5F6FA;
  --accent: #347C43;
  --brand-dark: #203864;
  --brand-light: #F5F6FA;
  --brand-green: #347C43;
  --brand-success: #23632d;
  --brand-warning: #FFDC5E;
  --brand-orange: #FF8618;
  --brand-violet: #865FF1;
  --brand-salmon: #FF99A2;
  --brand-bg: #ffffff;
  --text-main: #22223B;
  --text-invert: #ffffff;
  --shadow-light: 0 2px 24px rgba(50, 50, 93, 0.07);
  --radius-main: 18px;
}

/* Artistic typography scale */
body,
p,
li,
a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 var(--brand-green), 0px 0.5px 0 var(--brand-violet);
  /* Artistic, distinct */
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 1px 1.5px 0 var(--brand-warning);
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-purple, #865FF1);
  margin-bottom: 13px;
}


/* ==============
   GLOBAL LAYOUT
   ============== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  background: var(--brand-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 5px;
    margin-bottom: 32px;
  }
}

/* Feature and Card Listings */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 14px rgba(32,56,100,0.07);
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 260px;
  flex: 1 1 300px;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(52,124,67,0.14);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}

/* Responsive Card Container */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-left: 6px solid var(--brand-green);
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  box-shadow: 0 4px 32px rgba(255,220,94,0.09);
  transition: box-shadow 0.18s, border-color 0.2s;
  min-width: 230px;
}
.testimonial-card span {
  color: var(--brand-green);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card p {
  color: #22223B;
  font-size: 1.08rem;
}
.testimonial-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 25px rgba(255, 134, 24, 0.11);
}

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

/* Artistic floating accents */
.section:before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: -24px;
  width: 68px;
  height: 68px;
  background: var(--brand-violet);
  opacity: 0.12;
  border-radius: 47% 53% 58% 42%/58% 36% 64% 42%;
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(even):after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  right: -24px;
  width: 44px;
  height: 44px;
  background: var(--brand-salmon);
  opacity: 0.18;
  border-radius: 60% 40% 30% 70%/54% 65% 35% 46%;
  z-index: 0;
  pointer-events: none;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  width: 100%;
  background: var(--brand-bg);
  padding: 0.5rem 0;
  border-bottom: 2.5px solid var(--brand-green);
  box-shadow: 0 1.25px 8px rgba(32,56,100,0.03);
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 900;
  color: var(--primary);
  gap: 10px;
  margin-left: 24px;
}
header .logo img {
  height: 53px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 16px 0;
  font-size: 1.13rem;
}
.main-nav a {
  color: var(--brand-dark);
  padding: 10px 12px 8px 12px;
  border-radius: 9px;
  transition: background 0.13s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-violet);
  color: #fff;
  text-decoration: none;
}

/* Highlight active nav link if needed */
.main-nav a.active {
  background: var(--brand-green);
  color: var(--secondary);
  pointer-events: none;
}

/* ===========
   CTA BUTTONS
   ===========*/
.cta {
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  padding: 14px 32px;
  border-radius: 24px;
  border: none;
  outline: none;
  background: var(--brand-green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(52,124,67,0.09);
  transition: background 0.22s, color 0.13s, box-shadow 0.16s, transform 0.13s;
  display: inline-block;
  margin-top: 4px;
  text-shadow: 0px 1px rgba(32,56,100,0.15);
  letter-spacing: 0.02em;
}
.cta.primary {
  background: linear-gradient(99deg, var(--brand-green) 80%, var(--brand-orange) 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(52,124,67,0.15);
}
.cta.secondary {
  background: var(--brand-dark);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: var(--brand-violet);
  color: #fff;
  box-shadow: 0 4px 28px rgba(134,95,241,0.22);
  transform: scale(1.05) translateY(-2px);
}

/* ==========
   FOOTER
   ========== */
footer {
  background: var(--brand-dark);
  color: #fff;
  padding-top: 38px;
  box-shadow: 0 -10px 18px -7px rgba(32,56,100,0.06);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 30px 24px;
}
.footer-main > img {
  width: 72px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.89;
  transition: color 0.13s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-warning);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 1rem;
  margin-top: 13px;
}
.footer-contact a {
  color: var(--brand-warning);
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  background: rgba(0,0,0,0.09);
  font-size: 0.98rem;
  padding: 13px 0;
  letter-spacing: 0.05em;
  color: #fafafc;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 8px 14px 8px;
  }
}

/* =====================================
   MOBILE BURGER/menu/navigation overlay)
   ===================================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-green);
  cursor: pointer;
  margin-left: auto;
  margin-top: -53px;
  margin-right: 15px;
  padding: 6px 10px;
  z-index: 61;
  display: none;
  position: relative;
  transition: color 0.19s, transform 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--brand-orange);
  outline: none;
}
@media (max-width: 1100px) {
  .main-nav {
      display: none;
  }
  .mobile-menu-toggle {
      display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,56,100,0.97);
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(0.7,0,0.3,1);
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 18px;
  padding-left: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 17px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  cursor: pointer;
  transition: color 0.15s, transform 0.12s;
  z-index: 140;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-warning);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 80px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.32rem;
  color: #fff;
  padding: 11px 5px;
  border-radius: 12px;
  transition: background 0.18s, color 0.13s;
  width: 93%;
  display: block;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-orange);
  color: var(--brand-dark);
  font-weight: 700;
}
@media (min-width: 1101px) {
  .mobile-menu { display: none !important; }
}

/* =============
   MAIN CONTENT
   =============*/
main {
  min-height: 55vh;
  flex: 1 0 auto;
}
section h2 {
  margin-bottom: 10px;
}
section ul li,
section ol li {
  margin-bottom: 9px;
  font-size: 1.09rem;
  color: #203864;
}
section ul li strong {
  color: var(--brand-green);
}

/* Artistic list markers */
ul li {
  position: relative;
  padding-left: 24px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--brand-orange);
  border-radius: 50%;
  opacity: 0.28;
  box-shadow: 0 0 8px var(--brand-warning);
  display: inline-block;
}

/* =============
   BLOG ENTRIES
   =============*/
.content-wrapper ul li a {
  color: var(--brand-violet);
  font-weight: 800;
  transition: color 0.15s;
}
.content-wrapper ul li a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

/* =============
   COACHING CTA
   =============*/
.coaching-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

/* =============
   THANK YOU PAGE
   =============*/
.thank-you {
  background: var(--brand-violet);
  color: #fff;
  border-radius: var(--radius-main);
  text-align: center;
  padding: 52px 27px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(134,95,241,0.17);
  transition: background 0.19s;
}

/* ========================================
   RESPONSIVE - MOBILE FIRST ADJUSTMENTS
   ======================================== */
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .footer-main {
    max-width: 97vw;
  }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 2.07rem; }
  h2, .h2 { font-size: 1.43rem; }
  .card {
    padding: 18px 8px;
    min-width: 160px;
    font-size: 0.98rem;
  }
  .cta {
    width: 100%;
    font-size: 1.01rem;
    padding: 11px 14px;
  }
}
main, .section, .content-wrapper, .testimonial-card, .card, .feature-item {
  margin-bottom: 20px;
}

/* =======================
   MICRO & HOVER FX
   ======================= */
button:active, a:active, .cta:active {
  transform: scale(0.98);
  box-shadow: 0 0px 7px 0px var(--brand-green), 0 1px #00000022;
}
button, .cta {
  transition: background 0.2s, box-shadow 0.14s, color 0.12s, transform 0.1s;
}

/* Inputs – visible outline for focus (a11y) */
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--brand-orange);
  outline-offset: 1px;
}

/* =============
   COOKIE CONSENT
   =============*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  color: #22223B;
  box-shadow: 0 -4px 26px rgba(32,56,100,0.08);
  border-top: 2px solid var(--brand-violet);
  z-index: 9998;
  padding: 22px 11vw 15px 11vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 21px;
  font-family: 'Open Sans', sans-serif;
  animation: slideup-banner 0.7s cubic-bezier(0.18,0.73,0.38,1.07);
  transition: bottom 0.25s, opacity 0.3s;
  opacity: 1;
  min-height: 68px;
}
@media (max-width: 900px) {
  .cookie-banner { padding: 13px 3vw 11px 3vw; font-size:0.99rem; }
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; }
}
@keyframes slideup-banner {
  from { bottom: -130px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1;
  min-width: 210px;
  color: #22223B;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: var(--brand-green);
  color: #fff;
  border-radius: 16px;
  padding: 10px 17px;
  font-size: 1rem;
  transition: background 0.18s, color 0.13s, box-shadow 0.13s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.reject {
  background: #FF99A2;
  color: #22223B;
}
.cookie-banner .cookie-btn.settings {
  background: var(--brand-violet);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.04);
}

/* -------- Cookie Modal ---------- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32,56,100,0.68);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 17px;
  box-shadow: 0 12px 36px rgba(32,56,100,0.21);
  padding: 34px 24px 20px 24px;
  max-width: 380px;
  width: 88vw;
  animation: popcookie 0.4s cubic-bezier(0.2,0.84,0.3,1.07);
}
@keyframes popcookie {
  from { transform: scale(0.87) translateY(45px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--brand-green);
  margin-bottom: 10px;
  text-align:left;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.04rem;
}
.cookie-modal label {
  user-select: none;
}
.cookie-modal [type="checkbox"] {
  appearance: none;
  outline: 2px solid var(--brand-green);
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin-right: 6px;
  vertical-align: middle;
  cursor: pointer;
  transition: outline 0.17s, background 0.13s;
}
.cookie-modal [type="checkbox"]:checked {
  background: linear-gradient(111deg, var(--brand-green) 81%, var(--brand-orange));
  outline: 2px solid var(--brand-orange);
  border-radius: 5.2px;
}
.cookie-modal .cookie-category .essential {
  opacity: 0.62;
  font-style: italic;
  font-size: 0.97rem;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 92px;
}

/* MODAL CLOSE X */
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 16px;
  font-size: 1.55rem;
  background: none;
  border: none;
  color: var(--brand-violet);
  cursor: pointer;
  z-index: 5;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-orange);
}


/*=============================
  FORMATTING - GENERAL BLOCKS
=============================*/
p {
  margin-bottom: 1.17em;
}
ul, ol {
  margin-bottom: 1.17em;
}
h1, h2, h3, h4 {
  margin-top: 0.52em;
  margin-bottom: 0.45em;
  font-kerning: normal;
}
hr {
  border: none;
  border-bottom: 1px solid #edeff4;
  margin: 20px 0;
}

/* Blockquote inspiration */
blockquote {
  font-family: 'Montserrat', sans-serif;
  color: #4077BB;
  font-size: 1.33rem;
  line-height: 1.31;
  padding: 13px 25px;
  border-left: 6px solid var(--brand-orange);
  margin: 20px 0 30px 0;
  background: #f9efea;
  border-radius: 12px;
}

/*===============================
  ARTISTIC UNIQUE ELEMENTS
===============================*/
::-webkit-selection, ::selection {
  background: var(--brand-violet);
  color: #fff;
}

/* Artistic shadow on hover for all cards */
.card, .testimonial-card {
  transition: box-shadow 0.12s, transform 0.17s, border-color 0.14s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.97);
}

/* Spacing utility (if needed) */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }

/* ============
   Z-INDEX CONTROL
   ============*/
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 99; }
.mobile-menu.open { z-index: 130; }

/* END CSS */
