/* =========================
   TierGlück Experten CSS
   Style: tech_futuristic
   Flexbox ONLY | Responsive | Cookie Consent | Mobile Menu
========================= */

/* 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.45;
  background: #1A2423;
  color: #F7F3EE;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #161d1c;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Nunito:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* COLOR VARIABLES (FALLBACKS) */
:root {
  --color-primary: #23524A;
  --color-secondary: #F7F3EE;
  --color-accent: #F3AC36;
  --color-bg-dark: #1A2423;
  --color-bg-light: #202A29;
  --color-fg: #F7F3EE;
  --color-fg-dark: #211e1b;
  --color-success: #45e187;
  --color-error: #ff176b;
  --color-info: #49d8fb;
  --color-neon: #22ffe7;
  --color-muted: #b6cad0;
}

/* TYPOGRAPHY */
h1, .display {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px #241d13a6;
}
h2 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-neon);
  margin-bottom: 18px;
  line-height: 1.18;
  text-shadow: 0 1px 8px #1be5d6aa;
}
h3 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.14;
}
h4, h5, h6 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  color: var(--color-neon);
}
p, li, td, th {
  font-size: 1rem;
  color: var(--color-fg);
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent);
}
blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-fg-dark);
  background: var(--color-secondary);
  padding: 18px 22px;
  border-left: 3px solid var(--color-accent);
  border-radius: 8px;
  margin-bottom: 12px;
  font-style: italic;
  box-shadow: 0 4px 22px 0 #1a18138c;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--color-neon);
  font-weight: 400;
  margin-bottom: 28px;
}

/* CONTAINER BASE */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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;
  background: #fff;
  color: #1A2423;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 6px 44px 0 #07e0ab2b, 0 2px 18px #191a1e0d;
  min-width: 240px;
  max-width: 520px;
  transition: transform .18s cubic-bezier(.4,0,.2,1), box-shadow .22s;
  border: 1.5px solid var(--color-accent);
}
.testimonial-card:hover { 
  box-shadow: 0 8px 52px 0 #16f9c03a, 0 4px 22px #221c2521;
  transform: translateY(-5px) scale(1.02);
  border-color: var(--color-neon);
}

.testimonial-card blockquote{
  color: #1A2423;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #13ab8b;
  font-style: italic;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg,#1F2827 50%,#23524A 100%);
  box-shadow: 0 4px 24px 0 #1be5d657;
  z-index: 101;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
}
.logo img{
  height: 42px;
  width: auto;
  filter: drop-shadow(0 1px 6px #0ef1cab6);
  transition: filter .22s;
}
.logo:hover img{
  filter: drop-shadow(0 2px 14px #f3ac3646);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--color-neon);
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.019em;
  padding: 4px 10px;
  position: relative;
  transition: color .21s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-accent);
  text-shadow: 0 1px 14px #f3ac3699, 0 1px 4px #1be5d699;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border-radius: 42px;
  background: linear-gradient(90deg,#23524A 75%,#22ffe7 100%);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: 0 4px 28px #181f18bb, 0 0px 7px #22ffe7ab;
  transition: background .18s, color .15s, transform .14s, box-shadow .2s;
  border: 2px solid var(--color-accent);
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#22ffe7 0%,#23524A 100%);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 44px #16f9c062,0 0px 10px #f3ac366c;
  border-color: var(--color-neon);
}

/* ==============
   MOBILE MENU
================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-neon);
  color: #16302a;
  font-size: 2.2rem;
  border: none;
  border-radius: 9px;
  margin-left: 18px;
  padding: 2px 12px;
  box-shadow: 0 1px 6px #22ffe782;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 255, 231, 0.13);
  backdrop-filter: blur(7px);
  z-index: 1500;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  margin: 22px 32px 0 0;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 18px #fae483ab;
  cursor: pointer;
  padding: 1px 22px 4px 22px;
  z-index: 11;
  transition: background .23s, color .18s;
}
.mobile-menu-close:hover {
  background: var(--color-neon);
  color: var(--color-bg-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Nunito',Arial,sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--color-primary);
  background: #fffbe2;
  border-radius: 8px;
  padding: 10px 18px;
  margin-left: 0;
  min-width: 220px;
  box-shadow: 0 2px 22px #f3ac3622;
  transition: background .17s, color .16s;
}
.mobile-nav a:hover {
  background: var(--color-neon);
  color: #16302a;
}

/* Hide desktop nav on mobile, enable burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .btn-primary {
    margin-left: 6px;
    font-size: 1rem;
    padding: 9px 16px;
  }
  header .container {
    gap: 12px;
    height: 64px;
  }
}

/* ===============
 HERO SECTIONS
================ */
.hero, .about-hero, .services-hero, .tips-hero, .pricing-hero, .contact-hero, .thank-you {
  background: linear-gradient(99deg,#202a29 0%,#23524A 70%,#22ffe7 230%);
  box-shadow: 0 10px 84px 0 #1be5d624, 0 1px 2px #0001;
  padding: 52px 0 46px 0;
  border-radius: 0 0 54px 54px;
}
.hero h1, .about-hero h1, .services-hero h1, .tips-hero h1, .pricing-hero h1, .contact-hero h1, .thank-you h1 {
  color: var(--color-neon);
  text-shadow: 0 2px 25px #22ffe769;
  font-size: 2.2rem;
}
.hero .btn-primary, .about-hero .btn-primary, .services-hero .btn-primary, .thank-you .btn-primary {
  margin-top: 28px;
  font-size: 1.12rem;
}

/* ===============
 FEATURES
================ */
.features {
  background: #202a29;
  border-radius: 44px;
  margin: 38px 0 60px 0;
  box-shadow: 0 4px 24px #05171524;
}
.features h2 {
  color: var(--color-neon);
  text-align: left;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 200px;
  background: #1d2827;
  border-radius: 16px;
  box-shadow: 0 2px 16px #08e0ab23;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 16px 20px 16px;
  min-width: 200px;
  max-width: 270px;
  transition: transform .16s, box-shadow .19s, background .21s;
  border: 1px solid #3edfa3;
}
.feature img {
  width: 48px; height: 48px;
  filter: drop-shadow(0 2px 16px #21fce299);
  margin-bottom: 15px;
}
.feature:hover {
  background: #202a29;
  transform: translateY(-7px) scale(1.041);
  box-shadow: 0 10px 44px #24ffc650, 0 2px 10px #1be5d649;
  border-color: var(--color-accent);
}
.feature h3 {
  font-size: 1.05rem;
  color: var(--color-accent);
  font-weight: 700;
}
.feature p {
  color: #b6cad0;
  font-size: .98rem;
}

/* ===============
 ABOUT/USP / TEAM / PHILOSOPHY / BRAND STORY
================ */
.about-usps, .team-overview, .philosophy, .brand-story {
  background: #161d1c;
  border-radius: 38px;
  margin-bottom: 62px;
  box-shadow: 0 2px 20px #44ba74a9;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.04rem;
}
.text-section ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 13px;
}
.text-section li {
  list-style: disc inside;
  color: var(--color-neon);
}

/* ===============
 TESTIMONIALS
================ */
.testimonials {
  background: #f7f3ee;
  border-radius: 44px;
  margin: 0 0 60px 0;
  box-shadow: 0 10px 44px #16f9c02b;
}
.testimonials h2 { color: var(--color-primary); text-shadow: none; }
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.testimonial-card {
  background: #fff;
  color: #202a29;
}
.testimonial-card blockquote,
.testimonial-card .testimonial-meta {
  color: #202a29;
  background: none;
}
.testimonial-card .testimonial-meta { color: #23524A; }

/* ===============
 CTA
================ */
.cta {
  background: linear-gradient(99deg,#23524A 60%,#22ffe7 220%);
  border-radius: 40px;
  margin-bottom: 62px;
  color: #fff;
  box-shadow: 0 8px 40px #22ffe71c;
  padding-bottom: 32px;
}
.cta .btn-primary {
  font-size: 1.06rem;
}
.contact-shortinfo p, .contact-shortinfo a {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 7px;
}

/* ===============
 FOOTER
================ */
footer {
  margin-top: 60px;
  background: #191f1d;
  border-top: 2.5px solid var(--color-accent);
  box-shadow: 0 -3px 18px #1A242355;
  font-size: 0.98rem;
  padding-top: 8px;
  min-height: 80px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-neon);
  font-weight: 600;
  transition: color .14s;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1px 7px #fad94451);
}
.footer-brand span {
  color: #b6cad0;
}

/* =====================
  PRICING TABLES
===================== */
.preisliste {
  background: #202a29;
  border-radius: 32px;
  margin-bottom: 56px;
  box-shadow: 0 2px 22px #fae48311;
}
.service-pricing {
  width: 100%;
  font-size: 1rem;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  color: #221;
  box-shadow: 0 8px 33px #22ffe720;
}
.service-pricing th {
  background: #22ffe7;
  color: #195348;
  padding: 10px 16px;
  font-size: 1.08rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
.service-pricing td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5f4f1;
}
.service-pricing tr:last-child td {
  border-bottom: none;
}
.comparison-table {
  background: #fff;
  border-radius: 12px;
  margin-top: 18px;
  padding: 18px 19px;
  box-shadow: 0 1.5px 10px #13ab8b28;
  color: #172624;
}
.comparison-table h3 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.comparison-table ul {
  color: #16a082;
}
.preisliste h2 {
  color: var(--color-neon);
}

.value-included {
  background: #1d2827;
  border-radius: 26px;
  box-shadow: 0 2px 8px #22ffe71f;
  margin-bottom: 48px;
}

.value-included ul {
  gap: 7px;
}
.value-included li {
  color: var(--color-neon);
  font-size: 1rem;
}

/* ===============
 TIPS LIST & EXPERT INSIGHTS
================ */
.tips-list,
.expert-insights {
  background: #1d2827;
  border-radius: 32px;
  box-shadow: 0 4px 20px #22ffe712;
  margin-bottom: 56px;
}
.tips-list .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.tip-category {
  flex: 1 1 220px;
  background: #202a29;
  border-radius: 10px;
  padding: 16px 14px 10px 18px;
  min-width: 170px;
  max-width: 240px;
  box-shadow: 0 1.5px 7px #faf2b030;
  transition: box-shadow .19s, background .17s;
}
.tip-category h3 {
  color: var(--color-accent);
}
.tip-category ul li {
  color: #fffbe2;
  margin-bottom: 4px;
}
.quick-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.quick-links a {
  color: var(--color-neon);
  font-weight: bold;
  border-bottom: 2px dashed var(--color-accent);
  padding-bottom: 2px;
  transition: color .14s;
}
.quick-links a:hover {
  color: var(--color-accent);
  border-color: var(--color-neon);
}

.expert-quote {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  color: #23524A;
  border-radius: 10px;
  box-shadow: 0 2px 8px #fae48323;
  padding: 18px 17px 11px 17px;
}
.expert-quote blockquote {
  color: #23524A;
  background: none;
  border: none;
  margin-bottom: 2px;
}
.expert-quote span {
  color: #F3AC36;
  font-size: 1.02rem;
  font-style: italic;
  margin-top: 0;
}
.call-for-consultation {
  margin-top: 12px;
}
.call-for-consultation a {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-neon);
  font-weight: 700;
  transition: color .14s;
}
.call-for-consultation a:hover {
  color: var(--color-neon);
}

/* ==============
 LEGAL TEXT PAGES
============== */
.legal-text, .contact-form-info, .contact-infos, .faq {
  background: #161d1c;
  border-radius: 26px;
  box-shadow: 0 1.5px 8px #13ab8b13;
  margin-bottom: 48px;
}
.legal-text h1 {
  color: var(--color-accent);
  font-size: 2rem;
}
.legal-text .text-section h2 {
  color: var(--color-neon);
  font-size: 1.28rem;
  margin: 18px 0 5px 0;
}
.legal-text .text-section ul li{
  color: #fffbe2;
  margin-bottom: 3px;
}

.faq {
  padding: 40px 24px 32px 24px;
}
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq li {
  color: var(--color-neon);
  font-size: 1rem;
  line-height: 1.6;
}
.privacy-note {
  font-size: .96rem;
  color: #fae483;
  margin-top: 13px;
}

/* ==============
 THANK YOU PAGE
============== */
.thank-you {
  background: linear-gradient(99deg, #202a29 0%, #23524A 60%, #22ffe7 220%);
  border-radius: 36px;
  margin: 42px 0 64px 0;
  box-shadow: 0 8px 42px #11a7a742;
  color: #fff;
  padding: 64px 0 48px 0;
}
.thank-you .btn-primary {
  margin-top: 32px;
  font-size: 1.11rem;
}

/* Util Spacing (Ensure adequate room to avoid overlapping) */
section, .section, .about-usps, .philosophy, .brand-story, .team-overview,
.tips-list, .expert-insights, .faq, .contact-infos, .contact-form-info, .cta, .testimonials, .preisliste,
.value-included,.legal-text {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .tips-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  gap: 15px;
}

/* Code for price highlighting*/
.preis {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.03em;
}

/* Input, Button Accessibility */
button, .btn-primary, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
}
button:focus, .btn-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Micro-interactions */
a, .btn-primary {
  transition: color .16s, border .13s, background .15s, box-shadow .16s, transform .13s;
}

/* ====================
 RESPONSIVENESS
==================== */
@media (max-width:1050px) {
  .feature-grid, .tips-grid,.content-grid, .testimonials .content-wrapper, .card-container {
    gap: 18px;
  }
  .feature,.tip-category {
    max-width: 240px;
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  section, .section, .about-usps, .philosophy, .brand-story, .team-overview, .tips-list, .expert-insights, .faq, .contact-infos, .contact-form-info, .cta, .testimonials, .preisliste, .value-included, .legal-text {
    padding: 28px 4vw;
    border-radius: 25px;
  }
  .feature, .tip-category {
    min-width: 120px;
    max-width: 98vw;
  }
  .feature-grid, .tips-grid, .content-grid, .card-container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 2vw;
  }
  .content-wrapper, .content-grid, .feature-grid, .card-container, .tips-grid {
    flex-direction: column;
    gap: 16px;
  }
  .about-hero h1, .services-hero h1, .pricing-hero h1, .contact-hero h1, .tips-hero h1, .thank-you h1 {
    font-size: 1.52rem;
  }
  .hero, .about-hero, .services-hero, .pricing-hero, .contact-hero, .tips-hero, .thank-you {
    padding: 38px 0 26px 0;
    border-radius: 0 0 28px 28px;
    margin-bottom: 40px;
  }
  .logo img{
    height: 36px;
    width: auto;
  }
  footer .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 5px;
  }
  .footer-brand {
    margin-top: 7px;
  }
  .about-usps, .team-overview, .philosophy, .brand-story, .testimonials, .cta, .preisliste, .value-included, .tips-list, .expert-insights, .legal-text, .faq, .contact-form-info, .contact-infos {
    margin-bottom: 36px;
    padding: 24px 2vw;
    border-radius: 16px;
  }
  .testimonial-card {
    min-width: 140px;
    max-width: 95vw;
    padding: 15px;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  h1, .display {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.06rem;
    margin-bottom: 9px;
  }
  .btn-primary, header .btn-primary {
    padding: 9px 10px;
    font-size: .98rem;
    margin-left: 4px;
  }
  .testimonial-card blockquote {
    font-size: .99rem;
  }
}

/* =====================
 COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  min-height: 68px;
  background: rgba(19,83,72,0.97);
  color: #fff;
  box-shadow: 0 -2px 20px #14ffb281,0 2px 10px #1be5d67a;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 44px 16px 24px;
  font-size: 1rem;
  flex-wrap: wrap;
  opacity: 1;
  transition: transform .39s cubic-bezier(.61,-0.5,.17,1.66), opacity .39s;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(160px);
}
.cookie-banner-msg {
  flex: 1 1 210px;
  color: #fffbe2;
  margin-right: 16px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--color-neon);
  color: #23524A;
  border-radius: 24px;
  font-size: .97rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 22px;
  cursor: pointer;
  border: none;
  transition: background .13s, color .17s, box-shadow .13s;
  box-shadow: 0 0.5px 7px #22ffe74d;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-neon);
  padding: 7px 17px;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--color-neon);
  color: #23524A;
}

/* Cookie Modal Popup*/
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-52%) scale(0.98);
  background: #fff;
  color: #23524A;
  z-index: 5000;
  width: 96vw;
  max-width: 440px;
  min-height: 220px;
  border-radius: 16px;
  box-shadow: 0 6px 54px #21fce259,0 1px 6px #1be5d669;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: opacity .23s, transform .21s;
  padding: 32px 26px 22px 26px;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,20%) scale(0.98);
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  cursor: pointer;
  accent-color: var(--color-neon);
}
.cookie-category label {
  color: #23524A;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type='checkbox'] {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  accent-color: var(--color-accent);
}
.cookie-category input[disabled] + label {
  color: #b6cad0;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .close-cookie-modal {
  background: #22ffe7;
  color: #23524A;
  border-radius: 22px;
  border: none;
  padding: 6px 17px;
  margin-left: auto;
  margin-top: -29px;
  margin-bottom: 2px;
  font-size: 1rem;
  box-shadow: 0 1px 7px #22ffe739;
}
.cookie-modal .close-cookie-modal:hover {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width:520px){
  .cookie-banner {
    padding: 10px 8px 7px 8px;
    flex-direction: column;
    gap: 12px;
    font-size: .97rem;
  }
  .cookie-modal {
    padding: 18px 7px 15px 11px;
    border-radius: 9px;
    max-width: 97vw;
    min-width: 120px;
  }
}

/* Hide elements added by JS (default state) */
.mobile-menu, .cookie-modal, .cookie-banner {
  display: none;
}
.mobile-menu.active,
.cookie-banner.show {
  display: flex;
}
.cookie-modal.show {
  display: flex;
}
