/* ===============================================================================
   SolarGlide Beratung – CSS Reset & Normalize
=============================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F8F4;
  color: #225C4A;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #225C4A;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
}
:root {
  --primary: #225C4A;
  --secondary: #E5B645;
  --accent: #F9F8F4;
  --crea-orange: #fb8613;
  --crea-lilac: #c3b0ff;
  --crea-green: #86e8ca;
  --crea-red: #ec4b4b;
  --shadow: 0 4px 14px 0 rgba(34,92,74,0.08),0 1.5px 4px 0 rgba(193,176,69,0.06);
  --radius-card: 22px;
  --radius-btn: 36px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===============================================================================
   Typography: Creative Artistic Hierarchy
=============================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1b3c36;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  background: linear-gradient(90deg, var(--crea-lilac) 0%, var(--secondary) 93%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}
h2 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h3 {
  font-size: 1.4rem;
  color: var(--crea-orange);
  margin-bottom: 8px;
  font-family: var(--font-display);
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: var(--primary);
}
p, li {
  font-family: var(--font-body);
  color: #225C4A;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* ===============================================================================
   Container & Section Layouts
=============================================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
}

/* ===============================================================================
   HEADER, NAVIGATION & HERO
=============================================================================== */
header {
  background: var(--primary);
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 13px rgba(34, 92, 74, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
header img[alt="SolarGlide Beratung"] {
  height: 54px;
  margin-right: 24px;
}
header nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-left: 10px;
}
header nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 32px;
  transition: background 0.22s, color 0.22s;
  font-weight: 500;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header .cta-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1.07rem;
  padding: 11px 30px;
  margin-left: 24px;
  box-shadow: var(--shadow);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, color 0.18s;
  outline: none;
  position: relative;
  z-index: 2;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: var(--crea-orange);
  color: #fff;
  box-shadow: 0 7px 22px 0 rgba(251,134,19,0.21);
}

/* ===============================================================================
   MOBILE NAVIGATION
=============================================================================== */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 24px;
  border: none;
  font-size: 2rem;
  padding: 8px 18px;
  margin-left: 18px;
  cursor: pointer;
  transition: background .17s, color .17s;
  display: none;
  z-index: 3501;
}
header .mobile-menu-toggle:hover { background: var(--crea-orange); color: #fff; }

@media (max-width: 1024px) {
  header .cta-btn { padding: 11px 18px; margin-left: 7px; }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.95,.05,.4,.97);
  z-index: 3500;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 4px 0 20px rgba(34,92,74,.13);
}
.mobile-menu.mobile-menu-open {
  transform: translateX(0) !important;
  box-shadow: 4px 0 40px rgba(193,176,69,0.21);
}
.mobile-menu-close {
  background: var(--crea-red);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 40px;
  align-self: flex-end;
  margin: 24px 22px 22px 0;
  z-index: 3502;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--crea-orange); }
.mobile-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 34px 22px 34px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 14px 0;
  border-radius: 14px;
  width: 100%;
  transition: background 0.17s, color 0.16s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--crea-green);
  color: var(--primary);
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ===============================================================================
   FLEXBOX CONTENT LAYOUT PATTERNS
=============================================================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 26px 24px 26px;
  min-width: 230px; max-width: 320px;
  flex: 1 1 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  border-left: 7px solid var(--secondary);
  transition: box-shadow 0.17s, transform 0.17s;
}
.features-grid > div:hover {
  box-shadow: 0 12px 30px 0 rgba(225,182,69,0.13), var(--shadow);
  transform: translateY(-5px) scale(1.012);
}
.features-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 32px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 245px; max-width: 340px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 14px 36px 0 rgba(193,176,69,0.13), var(--shadow);
  transform: translateY(-5px) scale(1.011);
}

.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;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 650px;
  font-size: 1.07rem;
  font-style: italic;
  color: #212d25;
  border-left: 7px solid var(--primary);
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card strong {
  color: var(--secondary);
  margin-left: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(34,92,74,0.11), var(--shadow);
  transform: scale(1.014) translateY(-3px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===============================================================================
   Andere Listentypen
=============================================================================== */
.benefit-list, .info-list, .feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 0 0;
}
.benefit-list li, .info-list li, .feature-list li {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: 17px;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  gap: 16px;
  font-family: var(--font-body);
}
.benefit-list img, .info-list img, .feature-list img {
  height: 30px; width: 30px;
  margin-right: 4px;
  flex-shrink: 0;
}

/* Case Studies */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.case-study-list > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 24px 28px 18px 23px;
  min-width: 240px; max-width: 380px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.case-study-list > div:hover {
  box-shadow: 0 13px 36px 0 rgba(251,134,19,0.15), var(--shadow);
  transform: translateY(-4px) scale(1.009);
}

/* ===============================================================================
   Service List + Price
=============================================================================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.service-list > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 24px 25px 20px 23px;
  min-width: 225px; max-width: 340px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  text-align: left;
  border-left: 7px solid var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-list > div:hover {
  box-shadow: 0 12px 35px 0 rgba(225,182,69,0.11), var(--shadow);
  transform: translateY(-4px) scale(1.008);
}
.service-list img {
  width: 40px; height: 40px; margin-bottom: 5px;
}
.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: var(--secondary);
  color: var(--primary);
  padding: 5px 18px;
  border-radius: 14px 20px 16px 20px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 9px;
  box-shadow: 0 4px 12px 0 rgba(229,182,69,.10);
}

/* Process-Oriented Lists */
.process-steps, .step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style-type: decimal;
  margin: 14px 0 15px 18px;
  color: var(--primary);
}
.process-steps li, .step-by-step-guide li {
  background: #fff;
  border-radius: 14px;
  padding: 11px 17px;
  margin-bottom: 4px;
  box-shadow: var(--shadow);
  font-size: 1.07rem;
  color: #194e3b;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 19px 15px 16px 15px;
  font-size: 1.08rem;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 7px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.about-values ul, .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0 0 0;
}
.about-values li {
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px; 
  font-family: var(--font-body);
  color: #185740;
  box-shadow: var(--shadow);
  font-size: 1rem;
}

/* ===============================================================================
   Buttons & CTA
=============================================================================== */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 13px 38px;
  border-radius: var(--radius-btn);
  font-size: 1.12rem;
  margin-top: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  letter-spacing: 0.025em;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 24px 0 rgba(229,182,69, 0.10);
  transform: translateY(-3px) scale(1.014);
}

/* ===============================================================================
   HERO / MAIN CALL TO ACTION
=============================================================================== */
main section:first-of-type {
  background: linear-gradient(100deg, #fff 65%, var(--crea-lilac) 115%);
  border-radius: 0 0 60px 60px/0 0 33px 33px;
  box-shadow: 0 6px 28px 0 rgba(193,176,69,.09);
}
main section:first-of-type h1 {
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  main section:first-of-type { border-radius: 0 0 36px 36px/0 0 14px 14px; }
}

/* ===============================================================================
   CONTACT DETAILS
=============================================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px 12px 7px 12px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  color: var(--primary);
}
.contact-details img {
  width: 24px; height: 24px;
}

/* ===============================================================================
   FOOTER
=============================================================================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 35px 0 38px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 18px rgba(34,92,74,0.05);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img[alt="SolarGlide Beratung"], footer img[alt="SolarGlide Beratung"] {
  height: 46px;
  margin-right: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 9px 0;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  background: rgba(249,248,244,.17);
  color: var(--accent);
  font-family: var(--font-body);
  border-radius: 13px;
  padding: 17px 24px 14px 24px;
  min-width: 200px;
  max-width: 340px;
  font-size: 0.98rem;
  box-shadow: 0 4px 16px 0 rgba(34,92,74,0.07);
}
.footer-contact img {
  width: 18px; height: 18px;
  margin-right: 8px;
  vertical-align: sub;
}

@media (max-width: 990px) {
  footer .container { flex-direction: column; gap: 22px; align-items: center; }
  footer img[alt="SolarGlide Beratung"] { margin: 0 0 10px 0; }
}


/* ===============================================================================
   Cookie Consent Banner
=============================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fffbe2;
  color: #225C4A;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -2px 18px rgba(34,92,74,0.12);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  gap: 22px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.24s cubic-bezier(.71,.31,.39,.93), opacity 0.18s;
}
.cookie-banner.cookie-banner-hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner__actions {
  display: flex; flex-direction: row; gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-btn);
  font-weight: 600;
  padding: 9px 26px;
  box-shadow: var(--shadow);
  border: none;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept { background: var(--primary); color: var(--accent); }
.cookie-btn.reject { background: var(--crea-red); color: #fff; }
.cookie-btn.settings { background: var(--crea-orange); color: #fff; }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--crea-lilac);
  color: var(--primary);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 5px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  background: rgba(34,92,74,0.12);
  z-index: 4200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in .25s;
}
.cookie-modal {
  background: #fff;
  color: #1c2934;
  border-radius: 20px;
  max-width: 410px;
  box-shadow: 0 8px 44px 0 rgba(229,182,69,0.13);
  padding: 34px 32px 22px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: pop-in .23s;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: var(--primary);
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 13px; margin-bottom: 10px;
}
.cookie-toggle {
  width: 44px; height: 24px;
  background: #eee;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.14s;
  flex-shrink: 0;
}
.cookie-toggle input { display: none; }
.cookie-toggle::before {
  content: '';
  display: block;
  width: 19px; height: 19px;
  background: var(--secondary);
  border-radius: 50%;
  position: absolute;
  left: 3px; top: 2.5px;
  transition: left 0.2s, background 0.17s;
  box-shadow: 0 1.5px 5px 0 rgba(229,182,69,0.14);
}
.cookie-toggle input:checked + span::before {
  left: 22px;
  background: var(--crea-green);
}
.cookie-modal .cookie-modal-close {
  position: absolute; right: 22px; top: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--crea-red);
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover { color: var(--primary); }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pop-in {
  from { transform: scale(0.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===============================================================================
   Responsive breakpoints
=============================================================================== */
@media (max-width: 1100px) {
  .features-grid, .service-list, .case-study-list, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .features-grid, .service-list, .case-study-list, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .features-grid > div, .service-list > div, .case-study-list > div, .card {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5px;
    max-width: 98vw;
  }
  .content-wrapper { gap: 14px; }
  .features-grid, .service-list, .case-study-list, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid > div, .service-list > div, .case-study-list > div, .card {
    min-width: 0; max-width: 100%;
    padding: 18px 11px 14px 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-width: unset; max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact, .footer-nav { align-items: flex-start; }
}

/* ===============================================================================
   Creative Artistic Accents
=============================================================================== */
.section, .container, .features-grid > div, .testimonial-card, .card, .service-list > div, .case-study-list > div, .about-values ul li, .process-steps li, .step-by-step-guide li {
  position: relative;
}
.features-grid > div::after {
  content: '';
  position: absolute;
  right: 16px; top: 20px;
  width: 24px; height: 24px;
  background: var(--crea-green);
  border-radius: 50%;
  opacity: 0.19;
  z-index: 0;
}
@media (max-width: 768px) {
  .features-grid > div::after {
    width: 17px; height: 17px; right: 7px; top: 12px;
  }
}
.testimonial-card::before {
  content: '';
  position: absolute; left: -33px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 60px;
  background: linear-gradient(180deg, var(--crea-orange) 0%, var(--crea-lilac) 100%);
  border-radius: 10px;
  opacity: 0.18;
  z-index: 0;
  display: block;
}
@media (max-width: 900px) {
  .testimonial-card::before { left: -13px; height: 29px; }
}

/* Artistic Hover micro-interaction */
.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.16s;
}
.card, .features-grid > div, .testimonial-card, .service-list > div, .case-study-list > div {
  will-change: transform, box-shadow;
}

/* ===============================================================================
   Miscellaneous Utility Layouts
=============================================================================== */
.explanation-blocks {
  background: var(--accent);
  border-left: 6px solid var(--crea-lilac);
  padding: 15px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.team-intro {
  background: var(--accent);
  border-left: 6px solid var(--crea-green);
  padding: 14px 14px 7px 22px;
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}
.about-values {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 17px 19px 13px 16px;
  margin-bottom: 14px;
}

/* ===============================================================================
   Selection & Accessibility
=============================================================================== */
::-moz-selection { background: var(--crea-lilac); color: #1b333b; }
::selection { background: var(--crea-lilac); color: #1b333b; }
:focus {
  outline: 2px solid var(--crea-orange);
}

/* ===============================================================================
   Success / Informational / Error Elements
=============================================================================== */
.success {
  background: var(--crea-green);
  color: var(--primary);
  padding: 16px 18px;
  border-radius: 11px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.error {
  background: var(--crea-red);
  color: #fff;
  padding: 16px 18px;
  border-radius: 11px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.info {
  background: var(--crea-lilac);
  color: var(--primary);
  padding: 14px 13px;
  border-radius: 11px;
  font-weight: 560;
  box-shadow: var(--shadow);
}

/* ===============================================================================
   Print fallback
=============================================================================== */
@media print {
  *, *::before, *::after { background: none !important; box-shadow: none !important; color: #111 !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
