/* ---------- 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 {
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F5F3EE;
  color: #23292E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  margin-left: 2em;
}

/* ---------- FONT IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ---------- CSS VARS ---------- */
:root {
  --color-primary: #23292E;
  --color-secondary: #B5A892;
  --color-accent: #F5F3EE;
  --color-electric1: #ff3b3f;
  --color-electric2: #00ddeb;
  --color-electric3: #ffc324;
  --color-electric4: #24db5b;
  --color-electric5: #7c3afd;
  --color-bg: #F5F3EE;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ---------- CONTAINER LAYOUTS ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/***** SPACING AND ALIGNMENT MANDATORY PATTERNS *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(35, 41, 46, .13);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 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;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(35,41,46,.11);
  margin-bottom: 20px;
  max-width: 700px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** UTILITY CLASSES *****/
.brand-motto {
  font-style: italic;
  color: var(--color-electric5);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1.06em;
}

/***** HEADER STYLES *****/
header {
  width: 100%;
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 14px rgba(35,41,46,.05);
  position: relative;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px;
}
header img[alt="Specto Wave Möbel"] {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .25px;
  position: relative;
  line-height: 1.4;
  padding: 0 2px 3px 2px;
  transition: color .18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-electric1);
  border-radius: 2px;
  transition: width .22s cubic-bezier(.42, .16, 0, 1.46);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-electric2);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.cta.primary {
  background: linear-gradient(90deg, var(--color-electric1) 65%, var(--color-electric2) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07em;
  padding: 12px 32px 14px 32px;
  border-radius: 2em;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background .16s, transform .11s;
  margin-left: 20px;
  box-shadow: 0 2px 22px 0 rgba(0,221,235,.26);
  cursor: pointer;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--color-electric2) 60%, var(--color-electric1) 100%);
  transform: scale(1.045);
  color: #fff;
}
.cta {
  background: var(--color-electric3);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .8px;
  border-radius: 2em;
  padding: 12px 28px;
  border: none;
  margin-top: 8px;
  transition: background .17s, color .12s, box-shadow .22s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .99em;
  box-shadow: 0 1px 6px rgba(252, 195, 36, .12);
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--color-electric4);
  color: #fff;
  box-shadow: 0 4px 22px rgba(36,219,91,.13);
}

/***** MOBILE NAVIGATION ******/
.mobile-menu-toggle {
  display: none;
  background: var(--color-electric5);
  color: #fff;
  border: none;
  font-size: 2.1em;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 30;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(124, 58, 253, .11);
  transition: background .15s, box-shadow .18s, color .15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-electric1);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: #23292ee0;
  color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .41s cubic-bezier(.81,.02,.24,.98), opacity .31s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.3em;
  align-self: flex-end;
  margin: 20px 22px 18px 0;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-electric1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin: 18px 0 0 0;
  width: 100%;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.9px;
  padding: 18px 28px;
  border-radius: 0 36px 36px 0;
  transition: background .16s, color .15s;
  margin-right: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-electric2);
  color: #23292E;
}

/***** HERO STYLES *****/
.hero {
  background: linear-gradient(108deg, var(--color-electric3) 59%, var(--color-electric4) 100%);
  padding: 56px 0 36px 0;
  margin-bottom: 40px;
}
.hero .container {
  align-items: center;
  flex-direction: column;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.45em;
  font-weight: 900;
  color: var(--color-electric1);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 1.8px;
  word-break: break-word;
  text-shadow: 0 2px 12px rgba(255,59,63,0.08);
}
.hero p {
  color: var(--color-primary);
  font-size: 1.23em;
  margin-bottom: 20px;
  max-width: 680px;
}

/***** FEATURES STYLES *****/
.features, .features .content-wrapper, .feature-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.features h2 {
  font-family: var(--font-display);
  color: var(--color-electric5);
  font-size: 2em;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin-bottom: 18px;
}
.features ul, .features ol {
  margin-bottom: 24px;
  font-size: 1.12em;
  color: var(--color-primary);
}
.features li {
  margin-bottom: 14px;
  line-height: 1.55;
}
/* Feature Cards */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  margin: 22px 0 12px 0;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 221, 235, .09);
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .19s, transform .13s;
  border: 2.5px solid transparent;
  position: relative;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px rgba(0, 221, 235, .18);
  border: 2.5px solid var(--color-electric2);
  transform: translateY(-6px) scale(1.035);
  z-index: 1;
}
.feature img {
  height: 46px;
  width: 46px;
  margin-bottom: 8px;
}
.feature h3 {
  font-family: var(--font-display);
  font-color: var(--color-electric1);
  font-size: 1.19em;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.feature p {
  font-size: 1.07em;
  color: var(--color-primary);
}

/***** SERVICE LIST *****/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}
.service-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.09em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(181,168,146,0.08);
  padding: 16px 17px 16px 12px;
}
.service-list img {
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

/***** TESTIMONIALS *****/
.testimonials {
  width: 100%;
  background: var(--color-accent);
  padding: 40px 0 40px 0;
  margin-bottom: 50px;
}
.testimonials h2 {
  font-family: var(--font-display);
  color: var(--color-electric1);
  font-weight: 900;
  font-size: 2em;
  margin-bottom: 26px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(35,41,46,.11);
  margin-bottom: 20px;
  max-width: 700px;
  border-left: 6px solid var(--color-electric5);
  position: relative;
  transition: box-shadow .19s, border-color .14s;
  z-index: 2;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 6px solid var(--color-electric2);
  box-shadow: 0 12px 38px rgba(0,221,235,0.14);
  z-index: 3;
}
.text-section p {
  color: var(--color-primary);
  font-size: 1.09em;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 1em;
  margin-top: 8px;
  font-weight: 600;
}
.star-rating {
  margin-top: 7px;
  font-size: 1.21em;
  color: #FFC324;
  letter-spacing: 2px;
  font-weight: 900;
  font-family: var(--font-display);
}

/***** CONTACTINFO *****/
.contactinfo ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 18px 0;
  font-size: 1.07em;
}
.contactinfo li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.contactinfo img {
  width: 26px;
  height: 26px;
  opacity: .90;
}
.contactinfo a {
  color: var(--color-electric1);
  font-weight: 600;
}

/***** FOOTER *****/
footer {
  background: #23292E;
  color: #fff;
  padding: 32px 0 18px 0;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
}
.footer-brand .brand-motto {
  color: var(--color-electric2);
  font-family: var(--font-display);
  font-size: 1.05em !important;
  letter-spacing: .8px;
  font-style: normal;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 10px 0 2px 0;
}
.footer-menu a {
  color: var(--color-electric3);
  font-size: .99em;
  font-family: var(--font-body);
  transition: color .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-electric1);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 8px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: brightness(1.02) contrast(1.18) drop-shadow(0 2px 6px rgba(181,168,146,0.18));
  transition: filter .14s, transform .13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.03) contrast(1.19) drop-shadow(0 2px 16px var(--color-electric2));
  transform: scale(1.075) rotate(-6deg);
}

/***** PRIVACY/LEGAL PAGES *****/
.privacy {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(35,41,46,.09);
  margin: 42px 0 48px 0;
  padding: 38px 20px 38px 20px;
}
.privacy h1 {
  font-family: var(--font-display);
  font-size: 2em;
  color: var(--color-electric1);
  font-weight: 900;
  letter-spacing: 1.1px;
  margin-bottom: 16px;
}
.privacy h2 {
  font-family: var(--font-display);
  color: var(--color-electric5);
  font-weight: 800;
  margin: 32px 0 10px 0;
}
.privacy ul {
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.05em;
}

/***** GENERAL TYPOGRAPHY *****/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
}
h1 {
  font-size: 2.4em;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
}
h2 {
  font-size: 2em;
  margin: 20px 0 16px 0;
  letter-spacing: 1.1px;
}
h3 {
  font-size: 1.25em;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
h4 {
  font-size: 1.1em;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
p {
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/***** BUTTONS & LINKS *****/
button, .cta, .cta.primary {
  appearance: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: 3px solid var(--color-electric5);
}

/***** ANIMATIONS & EFFECTS *****/
.card, .feature, .cta, .cta.primary, .testimonial-card, .service-list li {
  transition:
    box-shadow .17s,
    background .16s,
    border-color .16s,
    transform .13s;
}
.card:hover {
  box-shadow: 0 10px 34px rgba(35, 41, 46, 0.16);
  transform: translateY(-4px) scale(1.025);
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #23292E;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 20px 28px 22px;
  width: 100%;
  z-index: 3000;
  box-shadow: 0 -4px 36px 0 rgba(0,221,235, .09);
  transition: transform .38s cubic-bezier(.59,.01,.25,.96), opacity .25s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  max-width: 80vw;
  gap: 9px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: var(--color-electric2);
  color: #23292E;
  border: none;
  border-radius: 2em;
  font-size: 1em;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 28px;
  letter-spacing: .7px;
  cursor: pointer;
  transition: background .13s, color .11s;
}
.cookie-btn.accept {
  background: var(--color-electric1);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-electric5);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-electric2);
  color: #23292E;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.07) saturate(1.25);
  transform: scale(1.045);
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4001;
  inset: 0 0 0 0;
  background: rgba(35,41,46,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #23292E;
  border-radius: 16px;
  padding: 38px 30px 30px 30px;
  min-width: 320px;
  max-width: 430px;
  box-shadow: 0 10px 46px rgba(35,41,46,.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.35em;
  color: var(--color-electric5);
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 1.02em;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 30px;
  height: 18px;
  background: #ddd;
  border-radius: 9px;
  position: relative;
  outline: none;
  margin-right: 6px;
  transition: background .19s;
}
.cookie-category .cookie-toggle:checked {
  background: var(--color-electric2);
}
.cookie-category .cookie-toggle:disabled {
  background: #aaa;
  opacity: .8;
}
.cookie-toggle[type=checkbox] {
  accent-color: var(--color-electric2);
  height: 18px;
  width: 30px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal-close {
  background: transparent;
  color: var(--color-electric1);
  border: none;
  font-size: 1.44em;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-electric2);
}

/***** MEDIA QUERIES: RESPONSIVE DESIGN *****/
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 992px) {
  .container { max-width: 750px; }
  .feature-grid { justify-content: flex-start; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
  }
  .main-nav {
    display: none !important;
  }
  .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    min-width: 60vw;
    max-width: 98vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 30px 8px;
  }
  .container {
    padding: 0 7px;
  }
  .testimonials {
    padding: 20px 0 22px 0;
    margin-bottom: 30px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px 13px;
    gap: 9px;
    max-width: 97vw;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
    align-items: center;
  }
  .footer-social {
    gap: 13px;
    margin-top: 3px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  .privacy {
    margin: 22px 0 25px 0;
    padding: 18px 8px 22px 8px;
  }
  .hero {
    padding: 40px 0 20px 0;
  }
  .hero h1 {
    font-size: 1.34em;
  }
  .hero p {
    font-size: 1.08em;
  }
  .service-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .card, .feature {
    padding: 18px 10px 16px 12px;
    min-width: 90vw;
    max-width: 99vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 19px 9px;
    font-size: 1em;
  }
  .cookie-banner-content { max-width: unset; }
}
@media (max-width: 486px) {
  .feature {
    min-width: 96vw;
    max-width: 99vw;
    padding: 10px 4vw;
  }
  .card {
    min-width: 97vw;
    padding: 14px 3vw;
  }
  .cookie-modal {
    min-width: 90vw;
    max-width: 99vw;
    padding: 17px 4vw;
  }
}

/***** VIBRANT, ENERGETIC VISUAL ELEMENTS *****/
.card, .feature, .testimonial-card, .privacy {
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 221, 235, .04), 0 6px 24px rgba(35,41,46,0.05);
}
.cta.primary, .cta, .feature {
  box-shadow: 0 2.5px 12.5px rgba(0,221,235,.10), 0 1.5px 12px rgba(255, 59, 63, 0.08);
}
.cta.primary {
  background: linear-gradient(90deg, var(--color-electric1) 55%, var(--color-electric5) 100%);
}
.cta.primary:hover,
.cta.primary:focus {
  background: linear-gradient(90deg, var(--color-electric2) 60%, var(--color-electric1) 100%);
}

/***** MICRO-INTERACTIONS *****/
.cta, .cta.primary {
  position: relative;
  overflow: hidden;
}
.cta.primary::after, .cta::after {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  top: 0;
  width: 80%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background: rgba(255,255,255,.22);
  transition: opacity .23s;
  z-index: 1;
}
.cta.primary:active::after, .cta:active::after {
  opacity: 1;
}

/***** FOCUS VISIBLE (Accessibility) *****/
:focus-visible {
  outline: 2.5px dashed var(--color-electric4);
  outline-offset: 3px;
}

/***** CLEAR Z-INDEX MANAGEMENT FOR CRITICAL ELEMENTS *****/
header { z-index: 20; position: relative; }
.mobile-menu { z-index: 99; }
.cookie-banner { z-index: 3000; }
.cookie-modal-backdrop { z-index: 4001; }

/***** VISUAL HIERARCHY (COLORFUL BARS, DECOS) *****/
.features h2, .testimonials h2, .about h2, .services h2, .cta h2, .privacy h1 {
  border-left: 7px solid var(--color-electric2);
  padding-left: 18px;
}

/***** CUSTOM RADIO/CHECKBOX FOR COOKIE MODAL *****/
input[type=checkbox].cookie-toggle {
  display: inline-block;
  width: 34px;
  height: 18px;
  position: relative;
  appearance: none;
  background: #ccc;
  border-radius: 9px;
  transition: background .19s;
  cursor: pointer;
}
input[type=checkbox].cookie-toggle:checked {
  background: var(--color-electric5);
}
input[type=checkbox].cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
}
input[type=checkbox].cookie-toggle:checked:before {
  left: 18px;
}
input[type=checkbox][disabled].cookie-toggle {
  opacity: .65;
  cursor: not-allowed;
}

/***** MISCELLANEOUS COMPONENTS *****/
::-webkit-scrollbar {
  width: 11px;
  background: #e5e3db;
}
::-webkit-scrollbar-thumb { background: var(--color-electric2); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-electric1); }

/***** PRINT STYLING: Hide nav & cookie on print *****/
@media print {
  .main-nav, .mobile-menu, .footer-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}
