/* ==== VIVID BRAINS – style.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, input, button, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }
body { line-height: 1; background: #fff; color: #23263D; }
ol, ul { list-style: none; }
a { background: transparent; text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; display: inline-block; height: auto; }
*, *:before, *:after { box-sizing: border-box; }
:root {
  --primary: #1C2331;
  --secondary: #F5A623;
  --accent: #F7F7F7;
  --electric-blue: #26B7FF;
  --hot-pink: #FF3B7C;
  --lime: #C5FF23;
  --success: #3FE179;
  --error: #FF3860;
}
/* ==== TYPOGRAPHY ==== */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: #fff;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.5px;
}
h1 { 
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
p, blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #32374D;
}
blockquote {
  display: block;
  border-left: 5px solid var(--secondary);
  margin: 20px 0;
  padding: 16px 24px;
  font-size: 1.2rem;
  font-style: italic;
  background: var(--accent);
  color: var(--primary);
}
strong, b { font-weight: 700; }
small { font-size: 0.925em; }
a { color: var(--electric-blue); transition: color .2s; }
a:hover { color: var(--secondary); text-decoration: underline; }

/* ==== GENERAL CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ==== SPACING & FLEX LAYOUTS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(38,183,255,0.12), 0 2px 5px 0 rgba(245,166,35,0.08);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 2px 32px 0 rgba(255,59,124,0.13), 0 2px 10px 0 rgba(38,183,255,0.17);
}
.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: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(28,35,49,0.09);
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 400px;
  min-width: 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === VIBRANT ENERGETIC CORE COLORS ==== */
.electric {
  color: var(--electric-blue);
}
.hotpink {
  color: var(--hot-pink);
}
.lime {
  color: var(--lime);
}

/* ==== HEADER ==== */
header {
  background: #fff;
  border-bottom: 2.5px solid var(--electric-blue);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header img {
  height: 40px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
header nav a {
  padding: 6px 0;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  transition: border 0.22s, color 0.18s;
}
header nav a:hover,
header nav a.active {
  color: var(--electric-blue);
  border-bottom: 2.5px solid var(--secondary);
}

/* CTA BUTTON */
.cta-btn {
  padding: 13px 30px 13px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  background: var(--electric-blue);
  color: #fff;
  border-radius: 6em;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(38,183,255,0.08);
  transition: background 0.18s, box-shadow 0.2s, transform 0.1s;
  margin-left: 18px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--hot-pink);
  color: #fff;
  box-shadow: 0 4px 32px 0 rgba(255,59,124,0.08);
  transform: translateY(-1px) scale(1.04);
}

/* ==== BURGER MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 19px;
  background: var(--hot-pink);
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--hot-pink, #ff3b7c26);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--electric-blue); }

.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: #fff;
  box-shadow: 0 4px 32px 0 rgba(28,35,49,0.19);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.44,1.14,.71,1.06);
  padding: 36px 24px 24px 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(245,166,35,0.09);
  transition: background 0.18s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  padding: 10px 2px;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.2s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--secondary) 100%);
  padding: 56px 0 44px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.07);
  border-radius: 21px;
  padding: 36px 28px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 8px 34px 0 rgba(28,35,49,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.18rem;
  text-align: center;
}
.hero p {
  color: #fff;
  margin: 20px 0 32px 0;
  text-align: center;
}
.hero .cta-btn { margin-top: 0px; margin-left: 0; }

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 18px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(38,183,255,0.10);
  padding: 32px 28px;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.14s, box-shadow 0.19s;
  position: relative;
  flex: 1 0 220px;
}
.feature:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(38,183,255,0.16);
}
.feature img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 2px 6px var(--lime));
}
.feature h3 {
  color: var(--electric-blue);
  font-size: 1.2rem;
}
.feature p {
  color: #23263D;
  font-size: 1.06rem;
}

/* ==== ARTICLE/STORY/INTERVIEW LISTS ==== */
.article-list, .interview-list, .story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.article-preview, .interview-snippet, .story-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(38,183,255,0.10);
  padding: 28px 22px 24px 22px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.12s;
}
.article-preview:hover, .interview-snippet:hover, .story-preview:hover {
  box-shadow: 0 8px 22px 0 rgba(255,59,124,0.09);
  transform: translateY(-2px) scale(1.018);
}
.article-preview h3, .interview-snippet h3, .story-preview h3 {
  font-size: 1.15rem;
  color: var(--hot-pink);
  margin-bottom: 4px;
}
.article-preview p, .interview-snippet p, .story-preview p {
  color: #32374D;
  margin-bottom: 9px;
}
.article-preview a, .interview-snippet a, .story-preview a {
  display: inline-block;
  color: var(--electric-blue);
  font-weight: 700;
  margin-top: 6px;
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.article-preview a:hover, .interview-snippet a:hover, .story-preview a:hover {
  color: var(--hot-pink);
}
.story-preview .profile {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.lessons-learned li {
  margin-bottom: 4px;
  padding-left: 18px;
  position: relative;
  color: #32374D;
  font-size: 1em;
}
.lessons-learned li:before {
  content: "✔";
  color: var(--success);
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0;
}

/* ==== TESTIMONIALS ==== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  min-width: 230px;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38,183,255,0.08);
  font-size: 1.06rem;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px 0 rgba(38,183,255,0.14);
  transform: translateY(-2px) scale(1.016);
}
.testimonial-card .stars {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1.2px;
}
.testimonial-card p {
  color: var(--primary);
  margin-bottom: 13px;
  font-size: 1.09rem;
}
.testimonial-card .reader {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  color: #75799B;
  font-weight: 600;
}

/* ==== NEWSLETTER & CALLOUT SECTIONS ==== */
.newsletter-block, .callout, .confirmation-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--electric-blue);
  border-radius: 23px;
  box-shadow: 0 4px 32px 0 rgba(38,183,255,0.08);
  color: #fff;
  padding: 36px 22px 30px 22px;
  gap: 18px;
  margin: 34px 0 0 0;
}
.callout, .confirmation-block {
  background: var(--hot-pink);
  box-shadow: 0 4px 22px 0 rgba(255,59,124,0.11);
}
.newsletter-block h2, .callout h2, .confirmation-block h1, .confirmation-block h2 {
  color: #fff;
}
.newsletter-block p, .callout p, .confirmation-block p {
  color: #fff;
  font-size: 1.12rem;
}

/* ==== TOPIC/FAQ/KNOWLEDGE LISTS ==== */
.topic-list, .faq-list, .rights-summary {
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.topic-list li, .faq-list li, .rights-summary li {
  background: var(--accent);
  color: var(--primary);
  border-radius: 13px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px 0 rgba(245,166,35,0.04);
  position: relative;
  font-size: 1.07rem;
}
.faq-list strong, .rights-summary strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--electric-blue);
  font-weight: 700;
}
.accordion-faqs > strong {
  cursor: pointer;
  display: block;
  margin: 12px 0 0 0;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.accordion-faqs p {
  padding-left: 0px;
  padding-bottom: 8px;
  margin-bottom: 0;
  color: #33374D;
  font-size: 1.06rem;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0;
}
.resource-links a {
  font-weight: 700;
  color: var(--hot-pink);
  border-bottom: 2px solid var(--hot-pink);
  transition: color 0.15s, border 0.15s;
}
.resource-links a:hover {
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}

/* ==== TEAM LIST ==== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.team-list li {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(38,183,255,0.07);
  padding: 22px 18px;
  max-width: 330px;
  min-width: 220px;
  flex: 1 0 220px;
  margin-bottom: 12px;
}
.team-list h3 { color: var(--hot-pink); margin-bottom: 8px; font-size: 1.11rem; }
.team-list p { color: #32374D; font-size: 1.04rem; }

/* ==== FOOTER ==== */
footer {
  background: #181B22;
  color: #fff;
  margin-top: 80px;
  padding: 54px 0 32px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer img { height: 32px; margin-bottom: 12px; }
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--lime);
  text-decoration: underline dotted;
  transition: color 0.16s;
  font-weight: 550;
}
footer nav a:hover { color: var(--hot-pink); }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  color: #EAEFFC;
  font-size: 1rem;
  align-items: center;
}
.footer-contact img { height: 1.14em; width: 1.14em; margin-right: 3px; vertical-align: middle; }
.footer-bottom {
  margin-top: 12px;
  font-size: 0.95em;
  color: #A4A8C3;
  width: 100%;
}

/* ==== CONTACT DETAILS/QUICK LINKS ==== */
.contact-details {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.08rem;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0 0;
  font-size: 1.03rem;
  color: var(--electric-blue);
}
.quick-links a {
  color: var(--secondary);
  border-bottom: 1.8px solid var(--secondary);
  transition: color 0.13s, border 0.14s;
}
.quick-links a:hover { color: var(--hot-pink); border-color: var(--hot-pink); }

/* ==== TEXT-SECTION ==== */
.text-section {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== UTILITY ==== */
.hide { display: none !important; }
.nowrap { white-space: nowrap; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1020px) {
  .container { max-width: 97vw; }
  .feature-grid, .card-container, .article-list, .interview-list, .testimonial-list, .story-list, .team-list { gap: 16px; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; }
  nav { gap: 12px; }
  .feature-grid, .card-container, .article-list, .interview-list, .testimonial-list, .story-list, .team-list { flex-direction: column; gap: 0; }
  .feature, .article-preview, .interview-snippet, .story-preview, .team-list li, .testimonial-card { max-width: 99vw; min-width: 0; width: 100%; }
  .resource-links, .footer-contact { flex-direction: column; gap: 9px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .hero .content-wrapper { padding: 22px 7px; }
  .hero h1, .hero h2 { font-size: 1.38rem; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.22rem; }
  header nav, header .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .footer-contact { flex-direction: column; gap: 5px; align-items: flex-start; }
  .section { padding-left: 7px; padding-right: 7px; }
  .content-grid, .feature-grid, .team-list, .article-list, .interview-list, .testimonial-list, .story-list { flex-direction: column; gap: 0; }
  .testimonial-card { min-width: 0; max-width: 100%; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 520px) {
  .section { margin-bottom: 42px; padding: 18px 2px; }
  .newsletter-block, .callout, .confirmation-block { border-radius: 15px; padding: 18px 5px; }
  footer { padding-left: 10px; padding-right: 10px; }
  .footer-bottom { font-size: 0.87em; }
}

/* ==== MICRO INTERACTIONS ==== */
.cta-btn,
.feature,
.card,
.article-preview,
.interview-snippet,
.story-preview,
.testimonial-card,
.team-list li {
  transition: box-shadow 0.18s, background 0.13s, color 0.15s, transform 0.11s;
}
.cta-btn:active { transform: scale(0.98); }

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #23263D;
  color: #fff;
  z-index: 1101;
  box-shadow: 0 -2px 24px rgba(28,35,49,0.11);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  font-size: 1.04rem;
  animation: slideInBanner 0.75s cubic-bezier(.65,-0.15,.37,1.12);
}
@keyframes slideInBanner {
  0% { transform: translateY(90%); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0%); }
}
.cookie-banner__message {
  max-width: 480px;
  color: #fff;
  margin-right: 0;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .accept-btn,
.cookie-banner .reject-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 9px 26px;
  margin: 0 4px;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(38,183,255,0.08);
  transition: background 0.13s, color 0.1s;
}
.cookie-banner .accept-btn { background: var(--success); color: #1B2A19; }
.cookie-banner .accept-btn:hover { background: var(--lime); color: #1C2331; }
.cookie-banner .reject-btn { background: var(--error); color: #fff; }
.cookie-banner .reject-btn:hover { background: var(--hot-pink); color: #fff; }
.cookie-banner .cookie-settings-btn {
  background: var(--secondary);
  color: #23263D;
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background 0.13s, color 0.12s;
  box-shadow: 0 1px 6px 0 rgba(245,166,35,0.11);
}
.cookie-banner .cookie-settings-btn:hover { background: var(--electric-blue); color: #fff; }

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    padding: 14px 8px;
  }
  .cookie-banner__message { margin-bottom: 5px; }
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,38,58,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1103;
  transition: opacity 0.25s;
}
.cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal__dialog {
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 6px 44px 0 rgba(255,59,124,0.12), 0 1px 12px 0 rgba(28,35,49,0.18);
  max-width: 426px;
  padding: 32px 20px 24px 28px;
  position: relative;
  animation: scaleIn 0.25s cubic-bezier(.57,1.77,.43,.88) forwards;
}
@keyframes scaleIn { 0% { transform: scale(0.8); opacity: 0;} 100% { transform: scale(1); opacity:1;} }
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: var(--hot-pink);
  margin-bottom: 12px;
}
.cookie-modal__categories {
  margin-bottom: 20px;
}
.cookie-modal__category {
  margin-bottom: 11px;
}
.cookie-modal__category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 2px;
  color: var(--primary);
}
.cookie-modal__category .switch {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
.cookie-modal__category .switch input[type=checkbox] {
  display: none;
}
.cookie-modal__category .slider {
  width: 40px; height: 22px; background: #E0E6EF;
  border-radius: 14px;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal__category .slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  transition: transform 0.18s, background 0.15s;
}
.cookie-modal__category input:checked + .slider {
  background: var(--electric-blue);
}
.cookie-modal__category input:checked + .slider:before {
  background: var(--hot-pink);
  transform: translateX(18px);
}
.cookie-modal__category .desc {
  color: #75799B;
  font-size: 0.98em;
  margin-left: 2px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  background: var(--error);
  color: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  border: none;
  position: absolute;
  right: 15px; top: 15px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.14s;
  box-shadow: 0 1px 9px var(--error, #ff3860, 0.13);
}
.cookie-modal .close-modal:hover { background: var(--hot-pink); }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--hot-pink);
  outline-offset: 1px;
}

/* ========== END OF style.css ========== */