/* =========================================================
  CSS RESET & NORMALIZATION
========================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F7F7FB;
  color: #293241;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1B5E20;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #039BE5;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  color: #18303a;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  color: #374151;
}

/* =========================================================
  BRAND SOFT PASTEL PALETTE
========================================================= */
:root {
  --brand-primary: #1B5E20;
  --brand-secondary: #039BE5;
  --brand-accent: #F9FBE7;
  --pastel-green: #D8F3DC;
  --pastel-blue: #BEE3F8;
  --pastel-teal: #CBF1F5;
  --pastel-yellow: #FDF6B8;
  --pastel-orange: #FFE0B2;
  --pastel-petal: #F1E1F1;
  --pastel-grey: #F7F7FB;
  --button-gradient-from: #ADE8F4;
  --button-gradient-to: #D8F3DC;
  --shadow: rgba(33, 50, 61, 0.10);
}

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

/* =========================================================
  SECTION SPACING & BACKGROUND
========================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}
.accent-bg {
  background-color: var(--pastel-green);
  border-radius: 28px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 24px 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  section {
    margin-bottom: 36px;
    padding: 28px 0 28px 0;
  }
  .accent-bg {
    padding: 14px 0;
  }
}

/* =========================================================
  HEADER & NAVIGATION
========================================================= */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 2px 10px var(--shadow);
  position: relative;
  z-index: 12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}
header img[alt="EnergieWendePlus"] {
  max-height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #227242;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

.cta-primary,
.cta-secondary,
.read-more {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 32px;
  padding: 10px 30px;
  font-size: 1.03rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s, transform 0.13s;
  box-shadow: 0 2px 8px var(--shadow);
}
.cta-primary {
  background: linear-gradient(90deg, var(--button-gradient-from), var(--button-gradient-to));
  color: var(--brand-primary);
  border: 2px solid var(--pastel-blue);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px var(--shadow);
}
.cta-secondary {
  background: var(--pastel-yellow);
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
  border-color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px var(--shadow);
}
.read-more {
  background: transparent;
  color: var(--brand-secondary);
  font-size: 0.98rem;
  border: none;
  border-radius: 24px;
  padding: 6px 18px;
  transition: background 0.15s, color 0.13s;
}
.read-more:hover, .read-more:focus {
  background: var(--pastel-petal);
  color: var(--brand-primary);
}

/* --------------------------------- */
/* Mobile Navigation Burger + Overlay */
/* --------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 5px 18px 5px 6px;
  z-index: 34;
}
@media (max-width: 940px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(236,243,255,0.98);
  box-shadow: 0 2px 24px rgba(14,44,62,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.175,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  padding: 18px 16px 7px 0;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--brand-primary);
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--brand-secondary);
}

/* Hide mobile-menu entirely on desktop */
@media (min-width: 941px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================================================
  FOOTER
========================================================= */
footer {
  background: var(--brand-accent);
  border-top: 2px solid var(--pastel-blue);
  padding-top: 30px;
  padding-bottom: 20px;
  margin-top: 44px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-size: 0.96rem;
  color: var(--brand-secondary);
  border-radius: 7px;
  padding: 6px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-petal);
  color: var(--brand-primary);
}
footer p {
  font-size: 0.93rem;
  color: #708080;
  text-align: center;
}

/* =========================================================
  FLEXBOX & SPACING UTILITIES (MANDATORY)
========================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-grey);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 18px;
}
.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;
  margin-bottom: 20px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  font-size: 1.08rem;
  color: #212529;
  position: relative;
}
.testimonial-author {
  display: block;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  margin-left: 12px;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Media queries for flex layouts on mobile */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 16px !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* Ensure at least 20px between cards and vertical items */
.card,
.testimonial-card,
.content-grid > *,
.card-container > *,
.text-image-section > * {
  margin-bottom: 20px;
}
.card:last-child,
.testimonial-card:last-child,
.content-grid > *:last-child,
.card-container > *:last-child,
.text-image-section > *:last-child {
  margin-bottom: 0;
}

/* =========================================================
  HOMEPAGE & LISTS (FEATURES, SERVICES)
========================================================= */
.features-list,
.services-overview,
.team-list,
.values-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-list li,
.services-overview li,
.values-list li {
  background: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  flex: 1 1 220px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  max-width: 290px;
  margin-bottom: 20px;
}
.features-list img,
.values-list img,
.contact-details img {
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
}
.services-overview li {
  background: var(--pastel-petal);
  min-width: 200px;
  padding: 22px 14px;
}
.services-overview strong,
.features-list strong,
.values-list strong {
  font-size: 1.13rem;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.services-overview p,
.features-list p,
.values-list p {
  font-size: 0.98rem;
  color: #36414e;
}
@media (max-width: 900px) {
  .features-list, .services-overview, .values-list, .faq-list, .team-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li, .services-overview li, .values-list li {
    max-width: 100%;
    min-width: unset;
  }
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
  margin-bottom: 20px;
}
.team-list > div {
  background: var(--pastel-yellow);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--shadow);
  flex: 1 1 190px;
  padding: 19px 16px 18px 16px;
  margin-bottom: 20px;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
}
.team-list strong {
  font-size: 1.12rem;
  color: var(--brand-secondary);
}
.team-list span {
  font-size: 0.95rem;
  font-style: italic;
  color: #374151;
  margin-top: 7px;
}
@media (max-width:768px) {
  .team-list {
    flex-direction: column;
    gap: 10px;
  }
  .team-list > div {
    min-width: unset;
  }
}

/* SERVICES CARDS (dienstleistungen.html) */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: var(--pastel-teal);
  box-shadow: 0 1.5px 10px var(--shadow);
  border-radius: 16px;
  padding: 28px 22px 18px 22px;
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  justify-content: space-between;
  align-items: flex-start;
}
.service-card strong {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #36414e;
}
.service-price {
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1.05rem;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    max-width: 100%;
    min-width: unset;
  }
}

/* CASE STUDIES & BLOG LISTS */
.case-studies, .blog-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-studies > div, .blog-list article, .faq-list > div {
  background: var(--pastel-yellow);
  border-radius: 13px;
  box-shadow: 0 1px 7px var(--shadow);
  padding: 22px 16px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 190px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-studies strong, .blog-list h3 {
  color: var(--brand-primary);
  font-size: 1.11rem;
}
@media (max-width:900px) {
  .case-studies, .blog-list {
    flex-direction: column;
    gap: 10px;
  }
  .case-studies > div, .blog-list article {
    max-width: 100%;
    min-width: unset;
  }
}

.featured-post {
  background: var(--pastel-petal);
  border: 2px solid var(--brand-secondary);
  border-radius: 16px;
  padding: 24px 18px 16px 18px;
  box-shadow: 0 1.5px 10px var(--shadow);
  margin-top: 32px;
  max-width: 500px;
}
.featured-post h3 {
  color: var(--brand-secondary);
  font-size: 1.18rem;
}

/* =========================================================
  CONTACT DETAILS & MAP PLACEHOLDER
========================================================= */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-petal);
  border-radius: 11px;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-grey);
  border-radius: 9px;
  box-shadow: 0 1.5px 7px var(--shadow);
  padding: 16px 18px;
  color: #727272;
  font-size: 1rem;
  margin-top: 10px;
}

/* =========================================================
  FAQ & OL STYLES (Steps)
========================================================= */
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  counter-reset: step;
}
ol li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  font-size: 1.02rem;
  background: var(--pastel-blue);
  border-radius: 11px;
  padding: 13px 16px;
}
ol li img {
  width: 30px;
  height: 30px;
}
ol li strong {
  color: var(--brand-primary);
  font-size: 1.05rem;
}

/* =========================================================
  FORM & BUTTON GENERIC STYLES
========================================================= */
input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid #C9E4DE;
  background: var(--pastel-grey);
  margin-bottom: 16px;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--brand-secondary);
  background: #fff;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* =========================================================
  TEXT SECTION (datenschutzerklaerung, nutzungsbedingungen, etc.)
========================================================= */
.text-section {
  background: var(--pastel-grey);
  border-radius: 15px;
  box-shadow: 0 1px 7px var(--shadow);
  padding: 22px 18px;
  margin-bottom: 16px;
}
.text-section h2 {
  font-size: 1.17rem;
  color: var(--brand-secondary);
  margin-top: 14px;
}
.text-section ul {
  margin-bottom: 16px;
  margin-left: 14px;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 6px;
  background: none;
  border-radius: 0;
  padding: 0 0 0 8px;
  color: #53575b;
}
.text-section a {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* =========================================================
  MICRO-ANIMATIONS & INTERACTIONS
========================================================= */
.cta-primary, .cta-secondary, .read-more, .main-nav a, .mobile-nav a {
  transition: background 0.18s, box-shadow 0.18s, color 0.15s, transform 0.13s;
}
.card,
.service-card,
.case-studies > div,
.blog-list article,
.team-list > div {
  transition: box-shadow 0.13s, transform 0.18s;
}
.card:hover, .service-card:hover, .case-studies > div:hover, .blog-list article:hover, .team-list > div:hover {
  box-shadow: 0 4px 18px rgba(33,50,61,0.16);
  transform: translateY(-2px) scale(1.011);
}

/* =========================================================
  RESPONSIVE DESIGN
========================================================= */
@media (max-width: 768px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.05rem; }
  main, .container {
    padding: 0 4px;
  }
  .footer-nav {
    gap: 8px;
  }
  .card, .testimonial-card, .service-card, .team-list > div {
    padding: 14px 7px;
  }
}

/* =========================================================
  COOKIE CONSENT BANNER & MODAL
========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  background: rgba(230,248,245,0.95);
  box-shadow: 0 -1px 24px var(--shadow);
  border-top: 2.5px solid var(--brand-secondary);
  padding: 21px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.2s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
}
.cookie-banner__message {
  font-size: 1rem;
  color: #233142;
  max-width: 520px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
  border-radius: 22px;
  font-size: 1rem;
  padding: 7px 22px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
  box-shadow: 0 1px 6px var(--shadow);
}
.btn-cookie-accept {
  background: var(--brand-secondary);
  color: #fff;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #28b3f9;
}
.btn-cookie-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1.2px solid var(--brand-primary);
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: var(--pastel-petal);
  color: var(--brand-secondary);
}
.btn-cookie-settings {
  background: var(--pastel-blue);
  color: var(--brand-primary);
  border: none;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 17px 4px 16px 8px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(74, 130, 183, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  max-width: 380px;
  box-shadow: 0 6px 28px var(--shadow);
  padding: 32px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-width: 240px;
}
.cookie-modal__header {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 7px;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.52rem;
  color: var(--brand-secondary);
  cursor: pointer;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: var(--pastel-grey);
  position: relative;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
  position: absolute;
  left: 0; top: 0;
}
.cookie-switch__slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--brand-secondary);
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-switch input:checked + .cookie-switch__slider {
  left: 18px;
  background: var(--brand-primary);
}
.cookie-modal__desc {
  font-size: 0.98rem;
  color: #374151;
  margin-bottom: 8px;
}
.cookie-modal__category[disabled], .cookie-switch[disabled], .cookie-switch input[disabled] {
  opacity: 0.66;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 7px;
  margin-top: 11px;
}
.cookie-modal__actions button {
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  background: var(--pastel-blue);
  color: var(--brand-primary);
  font-weight: 600;
  transition: background 0.15s;
}
.cookie-modal__actions button:focus,
.cookie-modal__actions button:hover {
  background: var(--brand-secondary);
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal__content {
    max-width: 96vw;
    padding: 24px 8px 14px 8px;
  }
}

/* =========================================================
  SOFT & DREAMY VISUAL EFFECTS
========================================================= */
.card,
.service-card,
.case-studies > div,
.values-list li,
.team-list > div,
.features-list li {
  /* All cards and pastel containers */
  background: linear-gradient(120deg, #fff, var(--pastel-blue) 65%, var(--pastel-petal));
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: 18px;
  border: 1px solid #eaf5ef;
  /* Soft dreamy effect */
}
.accent-bg {
  background: linear-gradient(120deg, #F9FBE7 70%, #CBF1F5 100%);
}

/* Subtle header fade border for dreamy look */
header, footer {
  border-bottom: 1.5px solid var(--pastel-blue);
  border-top-left-radius: 0.9em;
  border-top-right-radius: 0.9em;
}

/* Soft shadows for dreamy atmosphere */
.card, .testimonial-card, .service-card, .values-list li, .team-list > div, .features-list li {
  box-shadow: 0 4px 20px 2px rgba(108, 156, 182, 0.13);
}

/* =========================================================
  TYPOGRAPHY
========================================================= */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary, .main-nav a, .mobile-nav a, .footer-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section h2, .section h1 {
  text-shadow: 0 1px 10px #f2fbfb77;
}
h1, h2 {
  color: #1B5E20;
}

/* Subtle effects for dreamy feel */
p, li, span, .service-price, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* =========================================================
  ACCESSIBILITY: FOCUS STYLES
========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2.5px solid var(--brand-secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #BEE3F8;
}

/* =========================================================
  Z-INDEX & STACKING (Banner, Menu, Modals)
========================================================= */
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 1300; }
.cookie-modal { z-index: 2001; }
header { z-index: 12; }

/* ========== END ENERGYWENDEPLUS SOFT-PASTEL STYLE ========== */
