/*----------------------
  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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #19253A;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #25ADC0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19253A;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/*----------------------
  BRAND FONTS
-----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #19253A;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; line-height: 1.11; }
h2 { font-size: 2.2rem; margin-bottom: 16px; margin-top: 0; line-height: 1.13; }
h3 { font-size: 1.4rem; margin-bottom: 12px; line-height: 1.22; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, li { font-family: 'Roboto', Arial, sans-serif; }
p { margin-bottom: 10px; color: #2B364C; }
strong { font-weight: 600; }

/* Artistic font accent for creative_artistic style */
h1, h2, h3 {
  text-shadow: 1px 3px 12px rgba(37,173,192,0.11), 0 3px 0 #25ADC0;
}
h1, .logo {
  letter-spacing: 0.08em;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}
.text-section {
  max-width: 700px;
}

/*--------------------
  HEADER & NAVIGATION
---------------------*/
header {
  background: #19253A;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 40;
  box-shadow: 0px 2px 16px rgba(25,37,58,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
  position: relative;
  gap: 22px;
}
.logo img {
  height: 40px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 14px;
  transition: background 0.15s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #25ADC0;
  color: #19253A;
  text-decoration: none;
}
.cta.primary {
  margin-left: 18px;
  background: #25ADC0;
  color: #19253A;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(37,173,192,0.19);
  letter-spacing: 0.05em;
  transition: box-shadow 0.25s, background 0.13s, color 0.16s;
  border: 2px solid transparent;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1ac0b6;
  color: #fff;
  box-shadow: 0 8px 28px rgba(25,37,58,0.18);
  border-color: #19253A;
}
.cta.secondary {
  background: transparent;
  color: #25ADC0;
  border: 2px solid #25ADC0;
  padding: 10px 24px;
  border-radius: 28px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: background 0.15s, color 0.18s, border-color 0.18s;
  margin-top: 34px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #25ADC0;
  color: #19253A;
  border-color: #19253A;
}

/* Burger menu (hidden on desktop, visible on mobile) */
.mobile-menu-toggle {
  display: none;
  background: #25ADC0;
  color: #19253A;
  border-radius: 50%;
  padding: 11px 15px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.14s, color 0.2s, box-shadow 0.13s;
  margin-left: 14px;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1ac0b6;
  color: #fff;
  box-shadow: 0 2px 12px rgba(25,37,58,0.19);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,37,58, 0.95);
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(.83,.16,.25,1.01);
  z-index: 150;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 0 0;
  font-size: 2.2rem;
  background: #25ADC0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: #19253A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  z-index: 160;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #19253A;
  color: #25ADC0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 38px;
  margin-left: 45px;
}
.mobile-nav a {
  color: #F5F7FA;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  width: max-content;
  transition: border-color 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #25ADC0;
  border-bottom: 2px solid #25ADC0;
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 14px;
  }
  .cta.primary {
    padding: 10px 18px;
    margin-left: 0;
  }
  .main-nav a {
    padding: 4px 8px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-------------------------
 HERO SECTIONS & HEADLINES
--------------------------*/
.hero {
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  background: linear-gradient(115deg, #25ADC0 0%, #F5F7FA 90%);
  box-shadow: 0 6px 32px 0 rgba(25,37,58, 0.09);
  position: relative;
}
.hero .container {
  align-items: flex-start;
  padding: 0 20px;
}
.hero h1 {
  color: #19253A;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 1px 1px 18px rgba(25,37,58,0.07);
}
.hero .subheadline {
  color: #19253A;
  font-size: 1.27rem;
  margin-bottom: 18px;
  font-weight: 500;
  max-width: 700px;
  letter-spacing: 0.01em;
}

/*-- Artistic accent element as a highlight bar under h1/h2 (for creative) --*/
h1::after, h2::after {
  content: '';
  display: block;
  background: #25ADC0;
  height: 4px;
  width: 56px;
  border-radius: 9px;
  margin: 10px 0 0 1px;
  opacity: 0.7;
}
.hero h1::after {
  margin: 12px 0 0 1px;
}
.hero .cta.primary {
  margin-top: 22px;
}


/*--------------------
  FLEX LAYOUTS 
---------------------*/
.card-container, .feature-grid, .service-cards, .case-study-cards, .workshop-listing, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 3px 24px rgba(25,37,58, 0.09);
  border-radius: 24px;
  padding: 20px;
  min-width: 0;
  margin-bottom: 24px;
  margin-top: 8px;
  border-left: 5px solid #25ADC0;
  color: #19253A;
  font-size: 1.07rem;
}
.testimonial-card strong {
  color: #19253A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*-----------
  INDEX PAGE Feature Grid
-----------*/
.feature-grid {
  gap: 28px;
  margin-top: 12px;
}
.feature-grid li {
  flex: 1 1 222px;
  padding: 26px 22px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 14px rgba(25,37,58,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, border-color 0.16s;
  border-left: 4px solid #25ADC0;
}
.feature-grid li img {
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid li h3 {
  color: #19253A;
  font-size: 1.23rem;
  margin-bottom: 10px;
}
.feature-grid li:hover {
  box-shadow: 0 8px 40px rgba(25,37,58,0.13);
  border-left: 4px solid #19253A;
}

/*-----------
  INDEX/SERVICES Service Cards
-----------*/
.service-cards {
  margin: 24px 0;
  gap: 22px;
}
.service-card {
  flex: 1 1 222px;
  border-radius: 21px;
  padding: 28px 22px 20px;
  box-shadow: 0px 4px 22px rgba(25,173,192,0.11);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border 0.15s;
  border: 2px solid #25ADC0;
  position: relative;
  min-width: 190px;
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #25ADC0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.service-card .price {
  color: #F5F7FA;
  font-weight: 500;
  background: #25ADC0;
  color: #19253A;
  font-size: 1.02rem;
  border-radius: 10px;
  padding: 5px 13px;
  margin-top: 11px;
  align-self: flex-end;
  box-shadow: 0 2px 13px rgba(37,173,192,0.18);
}
.service-card:hover {
  box-shadow: 0 8px 44px rgba(25,173,192,0.19);
  border-color: #fff;
}

@media (max-width: 992px) {
  .feature-grid, .service-cards { gap: 16px; }
  .feature-grid li, .service-card { min-width: 155px; }
}
@media (max-width: 600px) {
  .feature-grid, .service-cards, .case-study-cards, .workshop-listing, .card-container {
    flex-direction: column;
    gap: 24px;
  }
}

/*--------------
  PRICING TABLES (Dienstleistungen)
--------------*/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 1.02rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 22px rgba(25,37,58,0.07);
}
.pricing-table thead {
  background: #25ADC0;
  color: #fff;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 2px solid #F5F7FA;
}
.pricing-table tr:last-of-type td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: #e4fafd;
  color: #19253A;
}

/*--------------
  CASE STUDY CARDS (Lösungen)
--------------*/
.case-study-cards {
  gap: 22px;
  margin: 18px 0;
}
.case-study-card {
  flex: 1 1 222px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 3px 24px rgba(37,173,192,0.09);
  padding: 24px 20px 20px;
  margin-bottom: 20px;
  border-top: 5px solid #25ADC0;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.case-study-card h3 { color:#19253A; font-size: 1.14rem; margin-bottom: 9px; }
.case-study-card:hover {
  box-shadow: 0 12px 40px rgba(25,37,58,0.18);
  border-top: 5px solid #19253A;
}

/***************
   BLOG - article lists
**************/
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
.featured-articles > div {
  flex: 1 1 270px;
  border-radius: 16px;
  padding: 22px 18px 16px;
  box-shadow: 0 2px 11px rgba(37,173,192,0.09);
  margin-bottom: 12px;
}
.trending-topics {
  background: #25ADC0;
  color: #fff;
  border-radius: 14px;
  margin-top: 26px;
  padding: 14px 20px 10px;
  width: max-content;
}
.trending-topics ul {
  margin-top: 2px;
  padding-left: 18px;
  color: #19253A;
}
.trending-topics li { list-style-type: disc; }

.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0 13px 0;
}
.post-item {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 13px;
  border-left: 4px solid #25ADC0;
  box-shadow: 0 2px 13px rgba(25,37,58,0.08);
  padding: 16px 15px 12px;
  margin-bottom: 12px;
  transition: box-shadow 0.13s, border-color 0.14s;
}
.post-item:hover {
  box-shadow: 0 8px 24px rgba(25,37,58,0.14);
  border-left: 4px solid #19253A;
}
.category-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 19px 0 11px 0;
}
.category-filters a {
  background: #e4fafd;
  color: #19253A;
  border-radius: 12px;
  padding: 4px 12px;
  transition: background 0.14s, color 0.13s;
}
.category-filters a:hover {
  background: #25ADC0;
  color: #fff;
}
.search-bar {
  display: flex;
  margin: 13px 0 0 0;
  width: 100%;
}
.search-bar input[type="text"] {
  background: #fff;
  border: 2px solid #25ADC0;
  border-radius: 13px;
  padding: 10px 14px;
  font-size: 1.07rem;
  width: 100%;
  color: #19253A;
  transition: border-color 0.13s, box-shadow 0.12s;
}
.search-bar input[type="text"]:focus {
  border-color: #19253A;
  outline: none;
  box-shadow: 0 3px 10px rgba(25,173,192,0.08);
}

/*------------------
  GENERAL LISTS
-------------------*/
.text-section ul {
  margin: 16px 0 14px 18px;
  padding-left: 0;
  color: #19253A;
  font-size: 1.03rem;
}
.text-section ul li {
  margin-bottom: 8px;
  list-style-type: disc;
  margin-left: 8px;
}

/********
   FOOTER
*********/
footer {
  background: #19253A;
  color: #fff;
  padding: 34px 0 18px 0;
  box-shadow: 0px -2px 24px rgba(25,37,58,0.12);
  font-size: 1.02rem;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer .footer-nav, footer .footer-legal, footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer .footer-nav a, footer .footer-legal a {
  color: #25ADC0;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-right: 8px;
  transition: color 0.16s;
  border-radius: 4px;
  padding: 3px 8px 3px 4px;
}
footer .footer-nav a:hover, footer .footer-legal a:hover {
  color: #fff;
  background: #25ADC0;
}
.footer-legal {
  font-size: 0.96rem;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25ADC0;
  border-radius: 40%;
  padding: 6px 12px 5px 10px;
  margin-right: 8px;
  transition: filter 0.18s, background 0.11s;
}
footer .social-links a:hover {
  background: #fff;
  filter: drop-shadow(0 6px 12px #25ADC033);
}
footer .social-links img {
  width: 24px;
  height: 24px;
}

/*----------
   FORMS  (if any)
----------*/
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 1.6px solid #25ADC0;
  border-radius: 14px;
  padding: 11px 18px;
  font-size: 1.09rem;
  color: #19253A;
  transition: border-color 0.18s, box-shadow 0.14s;
}
input:focus, textarea:focus {
  border-color: #19253A;
  outline: none;
  box-shadow: 0 2px 6px rgba(25,173,192,0.08);
}
button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  background: #25ADC0;
  color: #19253A;
  border-radius: 16px;
  padding: 12px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 10px rgba(37,173,192, 0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.13s;
}
button:hover, button:focus {
  background: #19253A;
  color: #fff;
  box-shadow: 0 6px 20px rgba(25,173,192,0.14);
}

/*---------------------
  COOKIE CONSENT BANNER
----------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  background: #19253A;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 17px 24px;
  box-shadow: 0 -4px 24px 4px rgba(25,37,58, 0.19);
  font-size: 1.07rem;
  transition: transform 0.32s cubic-bezier(.63,.16,.46,1.01), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
  gap: 19px;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  background: #25ADC0;
  color: #19253A;
  border: none;
  border-radius: 15px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  margin-left: 0;
  font-size: 1rem;
  box-shadow: 0 2px 9px rgba(37,173,192,0.10);
  transition: background 0.14s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1ac0b6;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 2px solid #25ADC0;
  color: #25ADC0;
  margin-left: 14px;
  padding: 9px 18px;
}
.cookie-banner .cookie-settings:hover {
  background: #25ADC0;
  color: #19253A;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1920;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,37,58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.31s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #19253A;
  border-radius: 23px;
  padding: 36px 32px 24px 32px;
  width: 100%;
  max-width: 418px;
  box-shadow: 0 8px 60px 10px rgba(25,37,58, 0.11);
  animation: modalpop 0.30s cubic-bezier(.88,-0.01,.38,.86);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes modalpop {
  0% { transform: scale(0.87); opacity:0; }
  60% { transform: scale(1.07); opacity:1; }
  100% {transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #25ADC0;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 19px;
  right: 23px;
  background: #25ADC0;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #19253A;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #19253A;
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 6px 0;
  font-size: 1.1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  margin: 0 0 0 6px;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 18px;
  background: #e4fafd;
  border-radius: 22px;
  position: relative;
  display: inline-block;
  margin-right: 8px;
  margin-left: 8px;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #25ADC0;
  transition: transform 0.22s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  transform: translateX(16px);
  background: #19253A;
}
.cookie-modal .cookie-category[data-type="essential"] .cookie-toggle {
  background: #25ADC0 !important;
}
.cookie-modal .cookie-category[data-type="essential"] label {
  color: #25ADC0 !important;
  font-weight: bold;
}
.cookie-modal .cookie-category[data-type="essential"] .slider {
  background: #19253A !important;
}
.cookie-modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 9px;
}
.cookie-modal .actions button {
  padding: 9px 22px;
  font-size: 1.02rem;
  border-radius: 11px;
}

/*-------------------
MISC
--------------------*/
.gdpr-notice {
  margin: 24px 0 0 0;
  padding: 12px 18px;
  background: #e4fafd;
  border-left: 4px solid #25ADC0;
  border-radius: 12px;
  font-size: 1rem;
}

.vision-statement, .mission-statement {
  font-style: italic;
  font-size: 1.08rem;
  color: #25ADC0;
  margin-bottom: 7px;
}
.values-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0;
}
.values-grid li, .benefit-grid li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 13px rgba(25,37,58,0.09);
  padding: 20px 14px 16px;
  margin-bottom: 16px;
}
.problem-solution-matrix {
  background: #e4fafd;
  border-radius: 16px;
  box-shadow: 0 1px 11px #25ADC019;
  padding: 15px 18px 12px;
  margin-top: 24px;
  font-size: 1.02rem;
}
.industry-examples, .pricing-overview {
  margin-top: 22px;
  margin-bottom: 8px;
  background: #e4fafd;
  border-radius: 15px;
  padding: 14px 17px 10px;
  box-shadow: 0 2px 13px #25ADC019;
}

/* Workshop sponsor / creative elements */
.workshop-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 12px 0;
}
.workshop-benefits li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 9px #25ADC015;
  padding: 10px 13px 8px;
  font-size: 1rem;
  color: #19253A;
  min-width: 145px;
  text-align: center;
}

/**************************************
* RESPONSIVE DESIGN (MOBILE FIRST)
**************************************/
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.39rem; }
  .container { padding: 0 9px; }
  .section { padding: 32px 8px; }
  .feature-grid li, .service-card, .case-study-card, .values-grid li, .benefit-grid li  {
    padding: 18px 12px 12px;
  }
  .hero {
    padding: 30px 0 16px 0;
  }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 16px; }
  .content-wrapper { padding: 0; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.07rem; }
  .footer-nav, .footer-legal, .social-links {
    flex-direction: column;
    gap: 10px;
  }
  .container { max-width: 100vw; }
  footer, header {
    padding-left: 0;
    padding-right: 0;
  }
  .cta.primary, .cta.secondary, button {
    font-size: 0.97rem;
    padding: 8px 14px;
  }
}

/* Microinteraction animation classes */
.cta.primary, .cta.secondary, button, .service-card, .feature-grid li, .case-study-card, .post-item, .workshop-card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.17s, color 0.13s, border-color 0.15s;
  will-change: box-shadow, background, color, border-color;
}

/* Hide content overlap */
.card, .service-card, .feature-grid li, .testimonial-card, .case-study-card, .values-grid li, .benefit-grid li, .workshop-card {
  margin-bottom: 20px;
}

/****** Hide burger nav and cookie modal bodies for non-js fallback ******/
.mobile-menu, .cookie-modal-overlay { display: none; }
.mobile-menu.open, .cookie-modal-overlay.active { display: flex !important; }

/**************************************
* END OF CSS
**************************************/
