/* ======================================================================
   Lucid Volt Grooming – gradient_modern design style CSS Framework
   Mobile-first, flexbox-only, modern gradients, brand font/colors, all features
   ====================================================================== */

/* CSS RESET & NORMALIZATION (minimal, safe selectors) */
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-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #B9E4C9 0%, #FAFAFA 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #22577A;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}

/* Brand Font Imports (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #22577A;
  --secondary: #B9E4C9;
  --accent: #FAFAFA;
  --text-dark: #22577A;
  --bg-bright: #FAFAFA;
  --bg-gradient1: #B9E4C9;
  --bg-gradient2: #FAFAFA;
  --shadow: 0 4px 24px rgba(34, 87, 122, 0.09);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.25s cubic-bezier(0.4,0.1,0.43,0.98);
  --button-gradient: linear-gradient(90deg,#22577A 0%,#B9E4C9 100%);
}

body, input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
p, ul, ol {
  margin-bottom: 16px;
  color: var(--text-dark);
}
strong {
  color: var(--primary);
}
ul,ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
blockquote {
  border-left: 5px solid var(--primary);
  padding-left: 18px;
  margin: 20px 0;
  font-style: italic;
  color: #33637f;
  background: #f5faf9;
  border-radius: var(--radius-sm);
  font-size: 1.07rem;
  line-height: 1.6;
}
blockquote span {
  display: block;
  font-size: 1rem;
  font-style: normal;
  margin-top: 8px;
  color: #2b3c42;
  font-weight: 700;
}

/* Layout Containers (Flexbox only, never grid or columns) */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--bg-bright);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition), box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(34,87,122,0.13);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 18px 24px;
}
.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;
  flex: 1 1 280px;
  background: #f6fafb;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(34,87,122,0.048);
  margin-bottom: 20px;
  border: 1px solid #EAF5F1;
  flex-direction: column;
  min-width: 220px;
}
.testimonial-card p {
  color: #11394d;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.testimonial-card span {
  color: #22577a;
  font-weight: 700;
  font-size: 0.98rem;
  align-self: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 18px;
  background: #e8f8f2;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34, 87, 122, 0.04);
}
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.icon-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2f9f7;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 1rem;
  color: #22577a;
}
.icon-list img {
  width: 28px;
  height: 28px;
}

/* Table styles (Preis-Tabelle) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fafb;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(34,87,122,0.045);
  overflow: hidden;
}
thead {
  background: #e4f5ef;
}
thead th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #22577a;
  text-align: left;
  padding: 14px 10px;
  border-bottom: 2px solid #B9E4C9;
}
tbody td {
  padding: 12px 10px;
  font-size: 1rem;
  color: #2b3c42;
  border-bottom: 1px solid #eaf5f1;
}
.pricing-note {
  font-size: 0.92rem;
  color: #527e87;
  margin-bottom: 20px;
}

/* Header and Navigation */
header {
  width: 100%;
  background: linear-gradient(90deg, #B9E4C9 0%, #FAFAFA 100%);
  box-shadow: 0 2px 12px rgba(34,87,122,0.05);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 0;
}
header img {
  height: 44px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22577a;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
nav a:not(.cta-button):hover, nav a:not(.cta-button):focus {
  background: #e8f8f2;
  color: #22577a;
}
.cta-button {
  background: var(--button-gradient);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 28px;
  margin-left: 17px;
  border: none;
  text-align: center;
  font-size: 1.12rem;
  box-shadow: 0 2px 8px rgba(34,87,122,0.14);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #22577a 30%, #3cbb97 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(34,87,122,0.18);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22577a;
  cursor: pointer;
  margin-left: 18px;
  z-index: 1021;
  border-radius: 8px;
  padding: 5px 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #b9e4c934;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #B9E4C9 15%, #fff 100%);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 24px 28px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.46, 0.03, 0.52, 0.96), opacity 0.2s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #22577a;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e8f8f2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #22577a;
  font-size: 1.24rem;
  font-weight: 700;
  padding: 14px 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #b9e4c934;
  color: #22577a;
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Hide navigation on mobile, only show toggle */
@media (max-width: 1024px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* Main & Section Layout */
main {
  flex: 1;
  width: 100%;
  margin-top: 0;
}
/* Section and content spacing */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, main > section {
    padding: 28px 7px;
    margin-bottom: 40px;
  }
}

.text-section {
  padding: 0;
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-top: 4px;
}
.text-section img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #B9E4C9 0%, #FAFAFA 100%);
  border-top: 2px solid #eaf5f1;
  box-shadow: 0 -2px 12px rgba(34,87,122,0.07);
  padding: 40px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #22577A;
  font-size: 1rem;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #e8f8f2;
}
footer img {
  height: 42px;
  display: block;
  margin-bottom: 8px;
}
footer .text-section {
  font-size: 0.98rem;
  color: #213d59;
  margin: 0;
}
footer a {
  color: #22577a;
  text-decoration: underline;
}

/* Responsive Typography Scale */
@media (max-width: 1280px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.13rem; }
}

/* Flexbox Responsives & Mobile-first Rules */
@media (max-width: 900px) {
  .footer .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .text-image-section, .content-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 14px;
    align-items: stretch !important;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* Animations & Micro-interactions */
button, .cta-button, input, a {
  transition: var(--transition);
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.2s, transform 0.23s;
}
.card:active, .testimonial-card:active, .feature-item:active, .cta-button:active {
  transform: scale(0.98);
}
.icon-list div, .feature-item {
  transition: box-shadow 0.17s;
}
.icon-list div:hover, .feature-item:hover {
  box-shadow: 0 5px 16px rgba(34,87,122,0.10);
}

/* Images responsive & styled */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#B9E4C9 0%,#FAFAFA 100%);
  color: #22577a;
  padding: 18px 18px 14px 18px;
  z-index: 3500;
  box-shadow: 0 -2px 24px rgba(34, 87, 122, 0.13);
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  font-size: 1rem;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  animation: cbanner-fadein 0.65s cubic-bezier(0.63,0.23,0.44,0.98);
}
@keyframes cbanner-fadein {
  from { transform: translateY(100px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0 0 10px 0;
  color: #22577a;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--button-gradient);
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(34,87,122,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #22577a 30%, #3cbb97 100%);
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.reject {
  background: #EAF5F1;
  color: #22577a;
  border: 1px solid #22577a;
}
.cookie-btn.reject:hover {
  background: #b9e4c9;
  color: #22577a;
}
.cookie-btn.settings {
  background: #f6fafb;
  color: #22577a;
  border: 1px solid #22577a;
}
.cookie-btn.settings:hover {
  background: #b9e4c9;
  color: #22577a;
}

.cookie-modal-backdrop {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(34,87,122,0.17);
  z-index: 3600;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cbanner-fadein 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(34,87,122,0.13);
  min-width: 320px;
  max-width: 92vw;
  padding: 34px 30px 24px 30px;
  position: relative;
  color: #22577a;
  animation: cbanner-fadein 0.24s;
}
.cookie-modal h3 {
  font-size: 1.13rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.cookie-switch {
  display: inline-block;
  width: 42px;
  height: 24px;
  position: relative;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #b9e4c9;
  border-radius: 24px;
  transition: var(--transition);
}
.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(90deg, #22577A 60%, #B9E4C9 100%);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-category.essential {
  filter: grayscale(20%);
  opacity: 0.7;
}
.cookie-category .cookie-switch {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #22577a;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 10px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e8f8f2;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 24px 10px 16px 10px;
    min-width: 0;
  }
  .cookie-buttons {
    gap: 10px;
  }
}

/* Accessibility Focus Styles */
a:focus-visible, button:focus-visible, .cta-button:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #22577a;
  outline-offset: 4px;
  filter: brightness(1.08);
}

/* Custom Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* Extra: Hide scroll while mobile menu or modal open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}

/* Hide elements visually only */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  border: 0; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* -------------------- End of style.css -------------------- */
