/* PULSE ZENITH – playful_dynamic CSS STYLE ===============================
   Bright, playful, animated, modern, flexbox-only, responsive, brand-matched.
*/

/* === CSS RESET === */
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F8F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223349;
  line-height: 1.64;
  min-height: 100vh;
}
a {
  color: #38BCA7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #1f8e7c; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}
button { cursor: pointer; border: none; background: none; }

/* === BRAND 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: #223349;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
h1 { font-size: 2.6rem; line-height: 1.13; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.18; margin-top: 40px; }
h3 { font-size: 1.35rem; line-height: 1.22; margin-top: 24px; }
h4 { font-size: 1.18rem; }
p, ul, li { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; }
p { margin-bottom: 10px; }

/* === LAYOUT UTILS & CONTAINERS === */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgb(56 188 167 / 0.18);
  background: #fff;
}
.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: 18px;
  box-shadow: 0 4px 24px 0 rgb(56 188 167 / 0.18);
  margin-bottom: 20px;
  min-width: 0;
  animation: popCard 0.38s cubic-bezier(.21,.68,.58,1.09);
  transition: transform 0.2s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 38px 0 rgb(56 188 167 / 0.22);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@keyframes popCard {
  0% { transform: scale(0.96) translateY(24px); opacity: 0.2; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* === HERO SECTIONS === */
.hero {
  background: #38BCA7;
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  animation: bgpop 1.5s cubic-bezier(.74,.18,.36,.75) 0.2s 1;
}
@keyframes bgpop {
  0% { background: #223349; }
  100% { background: #38BCA7; }
}
.hero .content-wrapper {
  align-items: flex-start;
  color: #fff;
  gap: 18px;
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 2px 12px #22334922;
}
.hero a.btn-primary {
  box-shadow: 0 4px 36px 0 #ffca3225;
  margin-top: 16px;
}

/* === MAIN NAVIGATION (Desktop) === */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  background: #fff;
  padding: 16px 0 16px 0;
  min-height: 76px;
  border-bottom: 2px solid #38BCA7;
  z-index: 101;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  color: #223349;
  font-size: 1.1rem;
  transition: background 0.19s, color 0.22s, transform 0.13s;
}
.main-nav a:hover, .main-nav .btn-primary:focus {
  background: #38BCA7;
  color: #fff;
  transform: translateY(-2px) scale(1.06) skewX(-2deg);
}
.main-nav .btn-primary {
  background: #38BCA7;
  color: #fff;
  font-weight: 800;
  transition: background 0.22s, box-shadow 0.2s, color 0.19s;
  box-shadow: 0 2px 10px 0 rgba(34,51,73, 0.06);
  border-radius: 32px;
  padding: 10px 26px;
  margin-left: 12px;
  letter-spacing: 0.5px;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #38BCA7;
  color: #fff;
  font-size: 2.3rem;
  border-radius: 50%;
  padding: 6px 17px;
  border: none;
  box-shadow: 0 2px 12px 0 #38bca729;
  z-index: 2002;
  transition: background 0.13s;
  position: absolute;
  right: 18px; top: 16px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #223349;
  color: #ffce59;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #38BCA7;
  z-index: 3001;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.19,1,.22,1);
  box-shadow: 2px 0 42px 0 #2233491a;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 14px 18px 0 0;
  font-family: inherit;
  border: none;
  padding: 0;
  z-index: 5012;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 95%;
  margin: 28px 0 0 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.36rem;
  border-radius: 12px;
  padding: 12px 10px 12px 0;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.14s, box-shadow 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22334922;
  color: #ffe44b;
  box-shadow: 0 2px 18px 0 #fff19b29;
}
@media (max-width: 998px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 999px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === SECTIONS SHARED === */
.features, .services, .about, .team, .cta, .contact, .form, .blog-list, .newsletter, .policy, .confirmation, .footer {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul, .services ul, .about ul, .team ul, .blog-list ul, .newsletter ul, .contact ul, .form ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}
.features li, .services li, .about li, .team li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgb(56, 188, 167, 0.11);
  padding: 20px 22px;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  transition: transform 0.15s, box-shadow 0.19s;
}
.features li img, .services li img, .about li img, .team li img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 7px #38bca729);
  margin-right: 7px;
}
.features li strong, .services li strong, .about li strong, .team li strong, .blog-list li strong {
  color: #38BCA7;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.features li:hover, .services li:hover, .about li:hover, .team li:hover {
  transform: scale(1.018) rotate(-0.7deg);
  box-shadow: 0 8px 38px 0 #38bca733;
  background: #e9fcf7;
}

.cta, .confirmation {
  background: #FFE44B;
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 #f9cb3827;
  min-width: 0;
  margin: 40px 0 0 0;
  animation: vibrate .9s cubic-bezier(.45,.57,.78,1.4) 1;
}
@keyframes vibrate {
  0% { transform: scale(.98) rotate(-0.5deg); }
  20% { transform: scale(1.02) rotate(1deg); }
  87% { transform: scale(1.01) rotate(-1.6deg); }
  100% { transform: scale(1) rotate(0); }
}
.cta .btn-primary, .confirmation .btn-primary {
  margin-top: 10px;
}

/* === BUTTONS === */
.btn-primary, button.btn-primary {
  background: #38BCA7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 100px;
  padding: 13px 38px;
  box-shadow: 0 5px 32px 0 #38bca74e;
  font-size: 1.18rem;
  letter-spacing: .5px;
  transition: background 0.21s, color 0.13s, box-shadow 0.2s, transform 0.16s;
  cursor: pointer;
  margin-top: 12px;
}
.btn-primary:hover, .btn-primary:focus, button.btn-primary:active {
  background: #223349;
  color: #ffe44b;
  box-shadow: 0 8px 48px 0 #38bca78c;
  transform: scale(1.038) rotate(-1deg);
}

/* Secondary/fun/general buttons e.g. cookie banner */
.btn-secondary {
  background: #FFE44B;
  color: #223349;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  font-size: 1rem;
  margin-right: 10px;
  border: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 #ffe44b5f;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffc533;
  color: #223349;
  box-shadow: 0 3px 18px 0 #ffe44bf3;
}
.btn-tertiary {
  background: #fff;
  color: #38BCA7;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1rem;
  border: 2px solid #38BCA7;
  transition: background 0.13s, color 0.13s, border 0.14s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #e9fcf7;
  color: #223349;
  border: 2px solid #223349;
}

/* === FORMS (newsletter, contact) === */
input, textarea {
  font-size: 1rem;
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 2px solid #38BCA7;
  background: #fff;
  box-shadow: 0 1px 8px 0 #38bca714;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223349;
  transition: border 0.18s, background 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus {
  border: 2px solid #223349;
  background: #f8f9fb;
  box-shadow: 0 2px 18px 0 #38bca73f;
}
label {
  font-size: 1rem;
  color: #223349;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
button[type=submit], .newsletter button, .blog-list button {
  margin-top: 3px;
}


/* === BLOG LIST & SEARCH === */
.blog-list ul {
  gap: 24px;
}
.blog-list li {
  background: #fff;
  box-shadow: 0 2px 10px 0 #38bca729;
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-list li h3 {
  font-size: 1.25rem;
  color: #223349;
}
.blog-list li a {
  color: #38BCA7;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
  display: inline-block;
}
.search-bar {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
}
.search-bar input[type="text"] {
  flex: 1;
  border-radius: 14px;
  background: #e9fcf7;
}
.tags-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.tags-filter a {
  background: #223349;
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-right: 6px;
  transition: background 0.13s, color 0.14s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.tags-filter a:hover {
  background: #38bca7;
  color: #FFE44B;
}

/* === NEWSLETTER === */
.newsletter {
  background: #223349;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 #22334933;
  padding: 40px 20px;
  margin-bottom: 28px;
}
.newsletter h2, .newsletter p, .newsletter label, .newsletter input {
  color: #fff;
}
.newsletter input {
  background: rgba(255,255,255,0.2);
  border: 2px solid #38BCA7;
  color: #fff;
}
.newsletter input:focus {
  background:rgba(255,255,255,0.26);
  border: 2px solid #ffe44b;
}
.newsletter button[type=submit] {
  background: #FFE44B;
  color: #223349;
  font-family: 'Montserrat';
  padding: 14px 38px;
  font-weight: 700;
  border-radius: 30px;
  margin-top: 7px;
  transition: background 0.18s, color 0.16s;
}
.newsletter button[type=submit]:hover, .newsletter button[type=submit]:focus {
  background: #fff;
  color: #38BCA7;
}

/* === FOOTER === */
.footer {
  background: #223349;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 24px 0 #22334933;
  margin-top: 38px;
  padding: 48px 20px 30px 20px;
  font-size: 1rem;
}
.footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer img {
  margin-bottom: 10px;
  width: 160px;
  height: auto;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #FFE44B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.17s, color 0.16s;
}
.footer-links a:hover {
  background: #FFE44B;
  color: #223349;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
}
.footer-contact img { width: 20px; height: 20px; margin-right: 7px; vertical-align: middle; }
.footer-contact span {
  color: #fff;
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
}

/* === POLICY PAGES (privacy, cookies, rodo, rules) === */
.policy {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 #38bca71c;
}
.policy h1 { color: #38BCA7; }
.policy .text-section h2 { color: #223349; font-size: 1.3rem; }
.policy .text-section ul { margin-bottom: 18px; gap: 6px; }
.policy .text-section a { color: #38BCA7; text-decoration: underline; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero { padding: 34px 0 22px 0; min-height: 180px; }
  .container { padding: 0 8px; }
  .footer .content-wrapper { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .features ul, .services ul, .about ul, .team ul {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .cta, .confirmation, .newsletter, .policy {
    padding: 24px 8px;
    border-radius: 15px;
  }
  .footer { padding: 30px 8px 16px 8px; border-radius: 10px 10px 0 0; }
  .card { margin-bottom: 18px; }
  .testimonial-card { flex-direction: column; gap: 8px; padding: 12px; }
  .main-nav { padding: 12px 0; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.12rem; }
  .btn-primary, .btn-secondary, .btn-tertiary {
    font-size: 1rem;
    padding: 10px 14vw;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  z-index: 7001;
  background: #223349;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 26px 10vw 14px 10vw;
  box-shadow: 0 -2px 24px 0 #22334933;
  animation: bannerSlideUp 0.7s cubic-bezier(.44,1.26,.64,.98);
}
@keyframes bannerSlideUp { from {transform: translateY(100%);} to {transform: translateY(0);} }
.cookie-banner p { flex: 5 1 220px; font-size: 1rem; color: #fff; margin-bottom: 10px; }
.cookie-banner .cookie-actions {
  flex: 3 1 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-banner .btn-primary {
  background: #38BCA7;
  color: #fff;
  padding: 8px 25px;
  font-size: 1rem;
  border-radius: 80px;
}
.cookie-banner .btn-secondary {
  background: #FFE44B; color: #223349;
  padding: 8px 19px;
  font-size: 1rem;
}
.cookie-banner .btn-tertiary {
  background: #fff; color: #38BCA7; border: 2px solid #223349;
  padding: 8px 19px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 16px 6vw 12px 6vw; gap: 15px; }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 9px; justify-content: flex-start; align-items: flex-start; width: 100%; }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed; z-index: 10040;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,51,73,0.68);
  display: flex; align-items: center; justify-content: center;
  animation: modalFadeIn 0.3s cubic-bezier(.41,.96,.56,1.19);
}
@keyframes modalFadeIn { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  color: #223349;
  border-radius: 18px;
  width: 94vw;
  max-width: 410px;
  padding: 34px 25px 22px 25px;
  box-shadow: 0 4px 38px 0 #38bca746;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: modalPopUp 0.4s cubic-bezier(.51,.18,.11,.89);
}
@keyframes modalPopUp { 0% { transform: scale(.91) translateY(20px); opacity: 0.3;} 100% {transform: none; opacity:1;} }
.cookie-modal h2 {
  color: #38BCA7; font-size: 1.18rem; margin-bottom: 5px;
}
.cookie-modal .preferences-section {
  padding-left: 6px;
  margin-bottom: 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-modal .cookie-category {
  font-size: 1rem; display: flex; align-items: center; gap: 8px; font-family: 'Roboto';
  margin: 4px 0;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 34px; height: 20px;
  background: #e9fcf7;
  border-radius: 11px;
  box-shadow: 0 1px 4px 0 #38bca719;
  position: relative;
  outline: none;
  transition: background 0.21s;
}
.cookie-modal .cookie-toggle:checked {
  background: #38BCA7;
}
.cookie-modal .cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px 0 #38bca74c;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle:checked:after {
  left: 17px;
}
.cookie-modal .required {
  color: #ccc; font-size: 0.97rem; margin-left: 2px;
}
.cookie-modal .modal-actions {
  display: flex; gap: 14px; margin-top: 11px;
}
.cookie-modal .modal-close {
  position: absolute; right: 14px; top: 9px; background: none; border: none; color: #38BCA7; font-size: 1.7rem; z-index: 12021; cursor: pointer;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1rem;
  padding: 8px 28px;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 19px 6vw 14px 6vw; }
  .cookie-modal .modal-actions { flex-direction: column; gap: 10px; }
}

/* === ANIMATIONS FOR FUN === */
.btn-primary, .btn-secondary, .btn-tertiary {
  animation: btn-bounce-in 0.5s cubic-bezier(.18,.89,.57,1.15);
}
@keyframes btn-bounce-in {
  0% { transform: scale(.92); }
  60% { transform: scale(1.14) rotate(-1deg); }
  100% { transform: scale(1); }
}

/* === MICRO-INTERACTIONS === */
h1, h2, .btn-primary, .testimonial-card, .card {
  will-change: transform, box-shadow;
}
.card:hover { transform: scale(1.028) rotate(-1.5deg); background: #e9fcf7; box-shadow:0 8px 42px 0 #38bca73b; }

/* === ACCESSIBILITY/CONTRAST FOR TESTIMONIAL CARDS === */
.testimonial-card p, .testimonial-card span { color: #223349; }
.testimonial-card strong { color: #38BCA7; }
.testimonial-card img { margin-left: 7px; }

/* === SPACING Utility === */
.mt-0 { margin-top: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.pb-0 { padding-bottom: 0 !important; }

/* TOOLTIP for accessibility (future-proofing) */
[data-tooltip] {
  position: relative;
  cursor: help;
}
[data-tooltip]:hover::after, [data-tooltip]:focus::after {
  content: attr(data-tooltip);
  position: absolute; left: 100%; top: 0;
  background: #223349;
  color: #FFE44B;
  font-size: 0.97rem;
  padding: 7px 18px;
  z-index:100000;
  border-radius: 8px;
  white-space: nowrap;
  margin-left: 10px;
}

/* === STYLE–SPECIFIC ON BRAND FOCUS === */
::-webkit-input-placeholder { color: #ccc; opacity:1; }
::-moz-placeholder { color: #ccc; opacity:1; }
:-ms-input-placeholder { color: #ccc; opacity:1; }
::placeholder { color: #ccc; opacity:1; }

/* === Z-INDEX SAFE — for overlays, modals, nav === */
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 6500;
}

/* === PRINT SAFETY === */
@media print {
  .main-nav, .mobile-menu, .footer, .cookie-banner, .cookie-modal-overlay { display:none!important; }
  body { background: #fff; }
}
