/* 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7FBFC;
  color: #184C63;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #25A18E; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #184C63; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

/* Font Faces (Google Fonts)*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,500,400|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184C63;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 24px; }
h3 { font-size: 1.375rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, li, table, th, td { font-size: 1rem; margin-bottom: 12px; }
strong, b { font-weight: 600; }
.text-link {
  display: inline-block;
  color: #184C63;
  position: relative;
  font-weight: 700;
  transition: color 0.2s;
}
.text-link:after {
  content: '';
  display: block;
  margin-top: 3px;
  width: 100%;
  height: 3px;
  background: #25A18E;
  border-radius: 10px;
  transition: width 0.2s;
}
.text-link:hover,
.text-link:focus {
  color: #15705D;
}
.text-link:hover:after,
.text-link:focus:after {
  width: 35%;
}

/* Brand Color Palette */
:root {
  --primary: #184C63;
  --secondary: #F7FBFC;
  --secondary-light: #FFFFFF;
  --accent: #25A18E;
  --accent-dark: #15705D;
  --contrast: #FFD247;
  --info: #32B1FF;
  --danger: #FF4270;
  --bg-card: #FFFFFF;
  --shadow1: 0 4px 16px rgba(24,76,99, 0.08);
}


/*****************
  Layout Containers
*****************/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*****************
  Header & Navigation
*****************/
header {
  background: var(--secondary-light);
  box-shadow: 0 2px 12px rgba(24,76,99,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
}
.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 16px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.25s, color 0.22s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(37,161,142,0.08);
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  margin-left: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(100deg, #25A18E 75%, #15705D 100%);
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(24,76,99,0.11);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  position: relative;
  transition: background 0.18s, transform 0.18s, box-shadow .22s;
  outline: none;
  gap: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD247 75%, #25A18E 100%);
  color: #184C63;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,76,99,0.21);
}

/*****************
  Hamburger Mobile Nav
*****************/
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow .18s;
  z-index: 55;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD247;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(24,76,99,0.23);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,76,99, 0.93);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: var(--primary);
  font-size: 2.3rem;
  width: 52px;
  height: 52px;
  align-self: flex-end;
  border-radius: 50%;
  border: none;
  margin: 22px 22px 0 0;
  transition: background 0.18s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(24,76,99,0.16);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFD247;
  color: var(--accent-dark);
}
.mobile-nav {
  margin: 36px 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  color: #FFD247;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: block;
  padding: 18px 38px;
  width: 95vw;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 2px;
  transition: background 0.13s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #184C63;
  color: #fff;
}

/*****************
  Hero
*****************/
.hero {
  background: linear-gradient(100deg, #FFD247 10%, #25A18E 90%);
  border-bottom-left-radius: 100% 6vw;
  border-bottom-right-radius: 100% 5vw;
  padding-top: 48px;
  padding-bottom: 64px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(24,76,99,0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  max-width: 620px;
}
.hero h1 {
  color: #184C63;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.7em;
  text-shadow: 0 3px 8px rgba(255,255,255,.13);
  /* Fun playful bounce */
  animation: hero-bounce 2.2s cubic-bezier(.53,1.74,.46,-0.15) 1;
}
@keyframes hero-bounce {
  0% {transform: translateY(-35px); opacity:0;}
  40%{transform: translateY(0); opacity:1;}
  55%{transform: translateY(-10px);}
  70%{transform: translateY(0);}
  100%{transform: none;}
}
.hero p {
  color: #184C63;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}

/*****************
Features section
*****************/
.features {
  background: var(--secondary-light);
}
.features .content-wrapper {
  align-items: stretch;
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 220px;
  min-width: 190px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(24,76,99,0.11);
  padding: 28px 22px 18px 22px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.23s, box-shadow .18s;
  border: 3px dashed #FFD247;
  will-change: transform;
  cursor: pointer;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 8px #25A18E44);
  /* playful wiggle animation */
  animation: feature-wiggle 6.5s infinite linear;
}
@keyframes feature-wiggle {
  0%, 100% {transform: rotate(-4deg);}
  3% {transform: rotate(8deg);}
  6% {transform: rotate(-2deg);}
  9% {transform: rotate(6deg);}
  15% {transform: rotate(-4deg);}
}
.feature-grid li h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: var(--accent-dark);
}
.feature-grid li p, .feature-grid li span {
  color: var(--primary);
  font-size: 1rem;
}
.feature-grid li:hover {
  transform: translateY(-8px) scale(1.048);
  box-shadow: 0 10px 32px rgba(24,76,99,0.17);
  border-color: #25A18E;
}

/*****************
Cards, Services, Content blocks
*****************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  transition: transform 0.17s, box-shadow 0.17s;
  flex: 1 1 260px;
  max-width: 400px;
  min-width: 235px;
  will-change: transform;
  border: 1.5px solid #F7FBFC;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 18px rgba(24,76,99,.18);
  border-color: #FFD247;
}

.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 8px 0;
}
.service-list li {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(24,76,99,0.10);
  margin-bottom: 20px;
  padding: 28px 24px 20px 22px;
  min-width: 210px;
  min-height: 180px;
  flex: 1 1 200px;
  border-left: 6px solid #25A18E;
  position: relative;
  transition: border-color .17s, box-shadow .17s;
  will-change: border;
}
.service-list li:hover {
  border-left: 6px solid #FFD247;
  box-shadow: 0 7px 19px rgba(24,76,99,0.14);
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184C63;
  font-weight: 700;
  background: #FFD247;
  padding: 3px 13px;
  border-radius: 14px;
  font-size: 1.14rem;
  margin-top: 10px;
  display: inline-block;
}

/*****************
Other flex patterns
*****************/
.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: 23px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(37,161,142,.12);
  border-left: 7px solid #25A18E;
  transition: border-color .13s, background .10s, box-shadow .11s;
}
.testimonial-card:hover {
  border-left: 7px solid #FFD247;
  background: #F7FBFC;
  box-shadow: 0 8px 22px rgba(24,76,99,0.18);
}
.testimonial-card p {
  color: #184C63;
  font-size: 1.05rem;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: bold;
  color: #15705D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*****************
  About & Team Section
*****************/
.about-preview, .about, .team {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(37,161,142,0.07);
  margin-bottom: 60px;
  padding: 32px 24px;
}
.usp-list, .team-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.usp-list li, .team-highlights li {
  font-size: 1.05rem;
  color: #184C63;
  background: #F7FBFC;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 1px 4px rgba(24,76,99,0.07);
}

/*************************
  Articles & Ratgeber
*************************/
.articles .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.articles .article-list li a {
  background: #FFD247;
  border-radius: 16px;
  padding: 11px 22px;
  color: #184C63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .16s, color .14s;
  display: block;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(24,76,99,0.10);
}
.articles .article-list li a:hover {
  background: #25A18E;
  color: #fff;
}
.topic-filters strong {
  color: #184C63;
  font-weight: bold;
}
.topic-filters span {
  color: #15705D;
  margin-left: 6px;
  font-size: 1.05rem;
}

/*************************
  Comparison & Pricing Table
*************************/
.pricing-table table, .pricing-table th, .pricing-table td {
  border-collapse: collapse;
  padding: 10px 14px;
  font-size: 1rem;
  color: #184C63;
}
.pricing-table th {
  background: #25A18E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.pricing-table td {
  background: #fff;
  border-bottom: 2px solid #F7FBFC;
}

/*****************
  FAQ
*****************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 24px 0 0 0;
}
.faq-item {
  padding: 24px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 9px rgba(24,76,99,0.08);
  margin-bottom: 8px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #25A18E;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
  color: #184C63;
}

/*****************
  CTA Section
*****************/
.cta {
  background: linear-gradient(120deg,#25A18E 60%,#FFD247 100%);
  border-radius: 36px;
  padding: 48px 22px 54px 22px;
  margin-bottom: 60px;
  box-shadow: 0 6px 18px rgba(37,161,142,0.09);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  text-shadow: 0px 4px 18px #184C6332;
}
.cta p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.cta .cta-btn {
  background: #FFD247;
  color: #184C63;
  font-weight: 800;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(24,76,99,0.16);
}
.cta .cta-btn:hover {
  background: #25A18E;
  color: #fff;
}

/*****************
  Contact Details
*****************/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 20px 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  background: #fff;
  border-radius: 12px;
  padding: 10px 22px;
  box-shadow: 0 2px 10px rgba(24,76,99,0.09);
}
.contact-details img {
  width: 28px;
  height: 28px;
}
.address-block {
  background: #F7FBFC;
  border-left: 5px solid #FFD247;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 25px 0 12px 0;
  font-size:1.1rem;
}
.map img { width: 100%; max-width: 420px; border-radius: 16px; box-shadow: 0 2px 10px rgba(24,76,99,0.13); }

/*****************
   Legal section
*****************/
.legal {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(24,76,99,0.08);
  margin-bottom: 60px;
  padding: 32px 18px;
}

/*****************
Footer
*****************/
footer {
  background: #184C63;
  color: #fff;
  padding-top: 44px;
  padding-bottom: 20px;
  margin-top: 44px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -4px 32px rgba(24,76,99,.13);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-logo img { height: 50px; }
.footer-contact h4 {
  color: #FFD247;
  font-size: 1.18rem;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  filter: brightness(1.2) drop-shadow(0 1px 4px #FFD24711);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.footer-links a {
  color: #FFD247;
  font-size: 1rem;
  padding: 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-copy {
  font-size: 0.95rem;
  color: #fff;
  text-align: right;
  margin-top: 6px;
}

/*****************
  Confirmation / Thank you
*****************/
.confirmation {
  background: #F7FBFC;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(37,161,142,.09);
  padding: 42px 18px 54px 18px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.next-steps-text {
  margin: 24px 0;
  color: #184C63;
  font-size: 1.1rem;
}

/*****************
  COOKIE CONSENT BANNER
*****************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 5px solid #FFD247;
  box-shadow: 0 -5px 24px rgba(24,76,99,0.21);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: row;
  padding: 24px 32px;
  transition: transform .6s cubic-bezier(.71,0,.29,1.08), opacity .17s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #184C63;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #FFD247;
  color: #184C63;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background .14s, color .14s, transform .09s;
  box-shadow: 0 2px 10px rgba(24,76,99,0.13);
}
.cookie-btn.accept {
  background: #25A18E;
  color: #fff;
}
.cookie-btn.accept:hover { background: #FFD247; color: #184C63; }
.cookie-btn.reject {
  background: #FFD247;
  color: #184C63;
}
.cookie-btn.reject:hover { background: #25A18E; color: #fff; }
.cookie-btn.settings {
  background: #F7FBFC;
  color: #15705D;
  border: 2px dashed #25A18E;
}
.cookie-btn.settings:hover { background: #25A18E; color: #fff; }

/*****************
COOKIE MODAL
*****************/
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,76,99, 0.8);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 410px;
  width: 92vw;
  padding: 38px 30px 32px 30px;
  box-shadow: 0 8px 32px rgba(24,76,99,0.23);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-popin .7s cubic-bezier(.56,1.34,.45,-0.14);
}
@keyframes modal-popin {
  0% { transform: scale(.70); opacity: 0; }
  81%{transform:scale(1.04);}
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .modal-title {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #184C63;
  margin-bottom: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 10px;
  background: #F7FBFC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #15705D;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .modal-close:hover { background: #FFD247; color: #fff; }
.cookie-category-list {
  display: flex; flex-direction: column; gap: 24px; }
.cookie-category {
  display: flex; align-items: flex-start; gap: 18px;
  background: #F7FBFC;
  border-radius: 13px;
  padding: 14px 15px;
}
.cookie-category-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #25A18E;
  margin-bottom: 4px;
}
.cookie-category-desc {
  font-size: .99rem;
  color: #184C63;
  margin-bottom: 4px;
}
.cookie-switch {
  margin-left: auto;
  margin-right: 6px;
  width: 44px; height: 28px;
  border-radius: 16px;
  background: #25A18E;
  position: relative;
  transition: background .18s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(24,76,99,0.11);
  transition: left .18s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 18px;
  background: #FFD247;
}
.cookie-category.essential .cookie-switch { background: #184C63; opacity: 0.55; }
.cookie-category.essential .cookie-switch {
  pointer-events: none;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 95px;
}

/*****************
  Animations & Micro-Interactions
*****************/
.card, .feature-grid li, .service-list li, .testimonial-card {
  transition: box-shadow .18s, transform .21s, border-color .14s, background .13s;
}
.cta-btn, .cookie-btn, .main-nav a, .mobile-nav a {
  transition: background .18s, color .14s, box-shadow .13s, transform .11s;
}
.cta-btn:active, .cookie-btn:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/*****************
  Spacing and Minimums (Critical Rules)
*****************/
.section, .about-preview, .about, .team, .legal, .confirmation, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-grid li, .service-list li, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .service-list, .content-grid, .team-highlights, .usp-list, .articles .article-list {
  gap: 20px;
}

/*****************
  Media Queries (Mobile First)
*****************/
@media (max-width: 1100px) {
  .feature-grid li, .service-list li { min-width: 150px; }
  header .container { padding: 0 8px; }
  .container { max-width: 970px; }
}
@media (max-width: 850px) {
  header .container { gap: 13px; }
}
@media (max-width: 820px) {
  .content-wrapper, .card-container, .feature-grid, .service-list, .content-grid {
    flex-direction: column;
    gap: 22px !important;
  }
  .feature-grid li, .service-list li, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    height: 68px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 7px;
  }
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .section, .about-preview, .about, .team, .legal, .confirmation, .cta {
    padding: 27px 7px 37px 7px;
  }
  .hero { border-bottom-left-radius: 22vw 7vw; border-bottom-right-radius: 22vw 7vw;
    padding-top: 22px; padding-bottom: 30px; }
  .footer-main { flex-direction: column; gap: 28px; }
  .footer-copy { text-align: left; }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .footer-main, .container { padding: 0 5px; }
  .cta {
    padding: 20px 8px 30px 8px;
  }
  .card, .feature-grid li, .service-list li {
    padding: 13px 8px 10px 8px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 18px 10px; }
  .cookie-banner .cookie-actions { gap: 10px; flex-direction: row; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.45rem; }
  nav, .main-nav, .footer-links { gap: 5px; }
  .address-block { padding: 11px 6px; font-size: .92rem; }
  .contact-details li { font-size: .89rem; padding: 12px 7px; }
  .footer-contact h4 { font-size: 1.02rem; }
  .footer-logo img { height: 33px; }
  .logo img { height: 32px; }
  .footer-links a { font-size: .93rem; }
}

/*****************
  Utility
*****************/
.hidden { display: none !important; }

/*****************
  Playful: Fun animated accent bubble decor (absolute for decor only)
*****************/
.hero:after {
  content: '';
  position: absolute;
  right: 2vw;
  bottom: -30px;
  width: 116px;
  height: 116px;
  background: #FFD247;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
  animation: hero-bubble 6.2s infinite forwards cubic-bezier(.66,0,.43,1);
}
@keyframes hero-bubble{
  0%{ transform: scale(.85) translateY(0); opacity:.2;}
  40%{ transform: scale(1.08) translateY(-30px); opacity:.36; }
  90%{ transform: scale(.65) translateY(10px); opacity:.1; }
  100%{transform: scale(.85) translateY(0);opacity:.2;}
}

/*****************
  Accessibility
*****************/
:focus { outline: 2.5px solid #FFD247; outline-offset: 1px; }
