/* ===================================================
   Shimmer Limiter - Minimalist Brand Styles
   Modern, minimalist, clean, flexbox-only responsive CSS
   =================================================== */
/* ===== CSS Reset & Normalize ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #29405B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #29405B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB400;
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #F2F2F2;
}
th {
  background: #F2F2F2;
  color: #29405B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat',Arial,sans-serif;
  color: #29405B;
  line-height: 1.15;
  margin-bottom: 0.8em;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 0.5em;
}
p {
  font-size: 1rem;
  margin-bottom: 1.25em;
}
/* ===== Containers & Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(41,64,91,0.04), 0 1.5px 6px rgba(41,64,91,0.07);
  position: relative;
  padding: 28px 24px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(41,64,91,0.12),0 2.5px 12px rgba(41,64,91,0.08);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(41,64,91,0.06),0 1.5px 6px rgba(41,64,91,0.05);
  padding: 28px 20px 20px 20px;
  min-width: 230px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-card .price {
  color: #FFB400;
  background: #F2F2F2;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 9px;
  margin-left: 6px;
}
.feature-card:hover {
  box-shadow: 0 6px 18px rgba(41,64,91,0.10),0 4px 14px rgba(41,64,91,0.06);
  transform: translateY(-4px) scale(1.015);
}
.feature-cta {
  margin-top: 24px;
}
.availability-badge {
  display: inline-block;
  background: #FFB400;
  color: #29405B;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F2F2F2;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(41,64,91,0.04);
  color: #29405B;
  min-width: 230px;
  max-width: 380px;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  margin-top: 8px;
  font-size: 0.98rem;
  color: #29405B;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(41,64,91,0.09);
}
.star-rating {
  color: #FFB400;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.section .faq-list {
  margin-top: 10px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.faq-list li {
  margin-bottom: 18px;
  font-size: 1rem;
}
.note {
  background: #FFFBF1;
  border-left: 4px solid #FFB400;
  padding: 16px 18px;
  border-radius: 7px;
  font-size: 0.97rem;
  margin: 24px 0 0 0;
}

.map-embed-placeholder {
  background: #F2F2F2;
  color: #aaa;
  border-radius: 8px;
  padding: 44px 0;
  text-align: center;
  margin-top: 18px;
  font-size: 1.1rem;
}

/* ===== Header ===== */
header {
  background: #fff;
  border-bottom: 1px solid #F2F2F2;
  padding: 0;
  width: 100%;
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.main-navigation a {
  color: #29405B;
  font-weight: 500;
  padding: 6px 2px;
  border-radius: 4px;
  transition: background 0.1s, color 0.15s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #F2F2F2;
  color: #FFB400;
}
.primary-cta {
  background: #29405B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 26px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(41,64,91,0.08);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  text-align: center;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #FFB400;
  color: #29405B;
  box-shadow: 0 4px 16px rgba(255,180,0,0.13);
  text-decoration: none;
}

button, .mobile-menu-toggle, .mobile-menu-close {
  appearance: none;
  background: none;
  border: none;
  color: #29405B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.13s, color 0.12s;
}
.mobile-menu-toggle {
  display: none;
  padding: 5px 8px;
  border-radius: 6px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F2F2F2;
  color: #FFB400;
}

/* ===== Footer ===== */
footer {
  background: #fff;
  border-top: 1px solid #F2F2F2;
  padding: 36px 0 18px 0;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-navigation a {
  color: #29405B;
  opacity: 0.84;
  border-radius: 4px;
  padding: 2px 5px;
  transition: background 0.1s, color 0.12s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #F2F2F2;
  color: #FFB400;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  opacity: 0.95;
}
.footer-contact img {
  width: 44px;
  height: 44px;
}
.footer-contact a {
  color: #29405B;
  text-decoration: underline;
  font-weight: 400;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  margin: 24px 0 20px 0;
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(41,64,91,0.04);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #F2F2F2;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #29405B;
}

/* ===== AVAILABILITY BADGE / NOTFALLSERVICE ===== */
.availability-badge {
  margin-top: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ===== MODALS & ANIMATIONS ===== */
.fade-slide-in {
  animation: fadeSlideIn 0.32s cubic-bezier(.52,.23,.45,1) both;
}
@keyframes fadeSlideIn {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-slide-up {
  animation: fadeSlideUp 0.32s cubic-bezier(.52,.23,.45,1) both;
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

/* =============== Responsive Layouts (Flexbox Only) =============== */
@media (max-width: 1050px) {
  .feature-card, .card {
    flex: 1 1 40%;
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .feature-card, .card {
    flex: 1 1 100%;
    min-width: 90%;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  header .container {
    flex-wrap: wrap;
    min-height: 60px;
  }
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .primary-cta {
    margin-left: 5px;
    padding: 11px 15px;
    font-size: 1rem;
  }
  .footer-navigation {
    gap: 11px;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid, .content-grid, .card-container, .content-wrapper{
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .feature-card, .card {
    flex: 1 1 100%;
    min-width: 80vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .feature-card, .card {
    min-width: 96vw;
    padding: 18px 6px 15px 10px;
  }
  .container {
    padding: 0 5px;
  }
  .footer-contact img {
    width: 34px;
    height: 34px;
  }
}

/* =============== MOBILE NAVIGATION =============== */
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.72,.14,.17,.85);
  box-shadow: 0 4px 24px rgba(41,64,91,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.3rem;
  color: #29405B;
  background: none;
  border: none;
  z-index: 310;
  outline: none;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFB400;
  background: #F2F2F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 85px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #29405B;
  padding: 15px 6px;
  border-radius: 7px;
  background: none;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB400;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 500;
  background: #fff;
  border-top: 1px solid #F2F2F2;
  box-shadow: 0 -2px 16px rgba(41,64,91,0.05);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px 18px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 300px;
  color: #29405B;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  background: #F2F2F2;
  color: #29405B;
  transition: background 0.13s, color 0.14s, box-shadow 0.12s;
}
.cookie-btn.primary {
  background: #29405B;
  color: #fff;
  box-shadow: 0 1px 4px rgba(41,64,91,0.08);
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #FFB400;
  color: #29405B;
  box-shadow: 0 4px 14px rgba(255,180,0,0.11);
}
.cookie-btn.secondary {
  background: #FFB400;
  color: #29405B;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #29405B;
  color: #fff;
}
.cookie-btn.outline {
  background: #fff;
  color: #29405B;
  border: 1.5px solid #29405B;
}
.cookie-btn.outline:hover, .cookie-btn.outline:focus {
  background: #F2F2F2;
  color: #FFB400;
  border-color: #FFB400;
}

@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 20px 10px 12px 10px;
  }
  .cookie-banner__actions {
    gap: 7px;
    width: 100%;
  }
  .cookie-btn {
    font-size: 0.96rem;
    padding: 10px 13px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,64,91,0.10);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  width: 95vw;
  max-width: 420px;
  border-radius: 13px;
  box-shadow: 0 4px 40px rgba(41,64,91,0.10);
  padding: 36px 26px 22px 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: fadeSlideIn 0.28s cubic-bezier(.52,.23,.45,1);
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #29405B;
}
.cookie-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #29405B;
  cursor: pointer;
  z-index: 1010;
  border-radius: 5px;
  padding: 2px 7px;
  transition: background 0.12s, color 0.11s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F2F2F2;
  color: #FFB400;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 0 0;
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #FFB400;
}
.cookie-category label {
  font-size: 1rem;
  color: #29405B;
}
.cookie-category .cookie-essential {
  color: #aaa;
  font-size: 0.98rem;
  padding-left: 4px;
}

.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-modal__content {
    padding: 24px 8px 13px 8px;
    max-width: 98vw;
  }
}

/* =============== Accents & Micro-interactions =============== */
.feature-card img,
.card img {
  filter: grayscale(0.45) brightness(1.07);
  opacity: 0.91;
  transition: filter 0.15s, opacity 0.13s;
}
.feature-card:hover img,
.card:hover img {
  filter: none;
  opacity: 1;
}
.primary-cta:active { transform: scale(0.98); }
button:active, .cookie-btn:active { transform: scale(0.98); }

/* Hide visually when needed for JS accessibility hooks */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ==== Utility Spacings & Alignment Patterns ===== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===== Misc Styles ==== */
hr {
  border: none;
  border-top: 1px solid #F2F2F2;
  margin: 42px 0;
}

/* END: Minimalist Brand CSS */
