/* ---------------------------
   CSS RESET & NORMALIZATION
--------------------------- */
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,
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 {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background: #F6F6F0;
  color: #232018;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  transition: background 0.2s;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ---------------------------
     BRAND COLORS & FONTS
--------------------------- */
:root {
  --primary: #377F4C;
  --primary-dark: #26603a;
  --secondary: #F6F6F0;
  --accent: #E8B940;
  --vibrant-pink: #E54D97;
  --vibrant-blue: #1DAEFF;
  --vibrant-orange: #FF8618;
  --vibrant-green: #30C47E;
  --surface: #fff;
  --base-text: #232018;
  --muted-gray: #D8D7CA;
  --shadow: rgba(34,34,46,0.08);
  --shadow-solid: 0 4px 24px 0 rgba(90, 123, 71, 0.12);
}

body {
  background: var(--secondary);
  color: var(--base-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 18px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  color: var(--vibrant-pink);
}
h2 {
  font-size: 1.7rem;
  color: var(--primary);
}
h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--base-text);
}
h4 {
  font-size: 1.05rem;
  color: var(--primary);
}
p, li, blockquote {
  color: var(--base-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  color: var(--primary);
  font-weight: bold;
}

blockquote {
  font-size: 1.1rem;
  padding-left: 14px;
  border-left: 3px solid var(--vibrant-pink);
  color: var(--vibrant-pink);
  background: var(--secondary);
  margin-bottom: 16px;
}

/* 
---------------------------
   CONTAINER & LAYOUTS 
--------------------------- 
*/
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .feature-grid, .plan-overview, .icon-grid, .service-cards, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-solid);
  padding: 32px 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;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(56, 52, 67, 0.09);
  background: #fff;
  min-width: 270px;
  max-width: 370px;
  flex: 1 1 270px;
  z-index: 1;
}

.star-rating {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 4px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline, .founder-story, .customer-examples, .science-section, .legal-section, .confirmation-section, .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 20px 12px 20px;
  box-shadow: var(--shadow-solid);
}

ul.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 10px;
}
ul.category-list li {
  font-weight: 700;
  color: var(--vibrant-blue);
  font-size: 1.1rem;
}

.plan-overview > div {
  background: var(--secondary);
  border-radius: 13px;
  padding: 22px 18px 14px 18px;
  margin-bottom: 12px;
  min-width: 210px;
  flex: 1 1 210px;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 16px;
}

.customer-examples p {
  font-size: 1rem;
  color: var(--vibrant-orange);
  background: #fff7e6;
  border-left: 4px solid var(--vibrant-orange);
  border-radius: 0 12px 12px 0;
  padding: 10px 18px;  
}

.founder-story {
  background: #f4eafc;
  border-left: 5px solid var(--vibrant-pink);
}

/* -----------------------------------
      HEADER & NAVIGATION
------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(91,139,81,0.08);
  border-bottom: 2px solid var(--muted-gray);
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--vibrant-pink);
  color: #fff;
}
.cta-button {
  background: var(--vibrant-blue);
  color: #fff;
  border-radius: 18px;
  padding: 11px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-shadow: 0 2px 12px rgba(29,174,255,0.08);
  box-shadow: 0 4px 15px 0 rgba(29,174,255, 0.15);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 30px 0 rgba(232, 185, 64, 0.18);
}

.logo-footer img {
  height: 42px;
  margin-top: 12px;
}

/* -----------------------------------
      HERO SECTIONS
------------------------------------ */
.hero {
  background: linear-gradient(105deg, var(--vibrant-blue) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 60px 0 40px 0;
  color: #fff;
  margin-bottom: 0;
}
.hero .container, .hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.hero h1, .hero h2, .hero p{
  color: #fff;
}
.hero .cta-button {
  background: var(--vibrant-pink);
  color: #fff;
  margin-top: 15px;
  box-shadow: 0 2px 15px 0 rgba(229, 77, 151, 0.11);
}
.hero .cta-button:hover {
  background: #fff;
  color: var(--vibrant-pink);
  box-shadow: 0 8px 32px 0 rgba(229, 77, 151, 0.15);
}

.cta {
  background: linear-gradient(85deg, var(--vibrant-green) 0%, var(--vibrant-orange) 100%);
  color: #fff;
  text-align: center;
  border-radius: 18px;
  margin: 48px 0 0 0;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
}
.cta .cta-button {
  box-shadow: 0 4px 15px rgba(255, 134, 24, 0.24);
  background: #fff;
  color: var(--vibrant-orange);
}
.cta .cta-button:hover {
  color: #fff;
  background: var(--primary);
}

/* -----------------------------------
      FEATURE/CARD/GRID LAYOUTS
------------------------------------ */
.feature-grid {
  gap: 24px;
  margin: 16px 0 0 0;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-solid);
  padding: 24px 18px 18px 18px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px 0 rgba(39,55,64,0.13);
  z-index: 2;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
}
.feature-grid blockquote {
  color: var(--vibrant-pink);
  border-left: 4px solid var(--vibrant-pink);
  background: transparent;
  padding-left: 15px;
  font-style: italic;
}

.service-cards {
  gap: 24px;
}
.service-cards > div {
  background: #fff;
  padding: 22px 20px;
  border-radius: 13px;
  box-shadow: 0 2px 15px 0 rgba(55,127,76,0.07);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  transition: transform 0.17s, box-shadow 0.17s;
  margin-bottom: 12px;
}
.service-cards > div:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 24px 0 rgba(39,55,64,0.09);
}

.testimonial-row {
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  color: #212121;
  border-radius: 18px;
  padding: 24px 22px 24px 22px;
  min-width: 250px;
  max-width: 400px;
  flex: 1 1 250px;
  box-shadow: 0 6px 26px 0 rgba(39, 55, 64, 0.12);
  transition: box-shadow 0.16s, transform 0.14s;
  border-left: 6px solid var(--accent);
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(39, 55, 64, 0.16);
  transform: scale(1.02);
}
.testimonial-card .star-rating {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 3px;
}
.testimonial-card p {
  color: #232018;
  margin-bottom: 0;
}

/* -----------------------------------
      LIST STYLES
------------------------------------ */
section ul, section ol {
  padding-left: 20px;
  margin-bottom: 8px;
}
section ul li::before {
  content: "• ";
  color: var(--vibrant-blue);
  font-size: 1.32em;
  margin-right: 4px;
}
section ol li {
  padding-left: 8px;
  margin-bottom: 7px;
}
section ol li img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

/* -----------------------------------
      FOOTER
------------------------------------ */
footer {
  border-top: 2px solid var(--muted-gray);
  background: #fff;
  padding: 32px 0 14px 0;
  font-size: 1rem;
  color: var(--primary-dark);
  z-index: 20;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
footer nav a {
  color: var(--primary);
  font-weight: 600;
  padding: 0;
  background: none;
  font-size: .99rem;
  border-radius: 0;
  transition: color 0.13s;
}
footer nav a:hover { color: var(--vibrant-pink); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: .96rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info img {
  width: 18px;
  height: 18px;
}
.logo-footer {
  margin-top: 12px;
}

/* ---------------------------
   MOBILE MENU
---------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 20px;
  background: var(--vibrant-blue);
  color: #fff;
  border-radius: 9px;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  z-index: 200;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 14px 0 rgba(29,174,255,0.13);
  outline: none;
}
.mobile-menu-toggle:active {
  background: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(27,24,20,0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 0 0 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.87,0,0.13,1), opacity 0.22s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 23px;
  right: 28px;
  background: var(--vibrant-pink);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 80px 0 0 40px;
  z-index: 50;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 13px 20px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant-blue);
  color: #fff;
}

/* ---------------------------
    COOKIE CONSENT BANNER
--------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232018;
  color: #fff;
  padding: 28px 20px 24px 20px;
  z-index: 10300;
  box-shadow: 0 -6px 40px rgba(60,60,60,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: slide-cookiein .6s cubic-bezier(0.77,0,0.18,1);
}
@keyframes slide-cookiein {
  from {transform: translateY(80%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 26px;
  margin-left: 12px;
  margin-right: 0;
  outline: none;
  border: none;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 12px rgba(34, 32,24, 0.10);
}
.cookie-banner .accept {
  background: var(--vibrant-green);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--vibrant-pink);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--vibrant-blue);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--accent);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30, 30, 38, 0.92);
  z-index: 20001;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--base-text);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 48px 0 rgba(91,139,81,0.15);
  padding: 38px 28px 24px 28px;
  min-width: 340px;
  max-width: 98vw;
  margin-bottom: 0;
  animation: modal-smootin .25s cubic-bezier(0.75,0,0.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
@keyframes modal-smootin {
  from{ transform: translateY(60px); opacity: 0;}
  to{transform: translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 22px;
  background: var(--vibrant-pink);
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.cookie-modal-close:hover {
  background: var(--primary);
}
.cookie-modal-content h3 {
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  font-weight: 700;
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
  margin-right: 9px;
}
.cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 21px;
  appearance: none;
  background: var(--muted-gray);
  border-radius: 12px;
  outline: none;
  transition: background 0.18s;
  position: relative;
}
.cookie-switch input[type="checkbox"]:checked {
  background: var(--vibrant-blue);
}
.cookie-switch input[type="checkbox"]::before {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
}
.cookie-switch input[type="checkbox"]:checked::before {
  left: 17px;
}
.cookie-modal .essential[disabled], .cookie-modal .essential:checked {
  background: #b2ead1 !important;
}
.cookie-modal .special-info {
  font-size: 0.92rem;
  color: var(--vibrant-pink);
  margin-bottom: 8px;
}

/* -----------------------------------
      UTILITIES & SPECIALS
------------------------------------ */
@media (max-width: 1200px) {
  .container {max-width: 990px;}
}
@media (max-width: 900px) {
  .container {max-width: 94vw;}
}
@media (max-width: 840px) {
  .feature-grid > div,.plan-overview > div,.service-cards > div {min-width: 170px; padding: 20px 10px;}
  .testimonial-card {min-width: 210px; max-width: 99vw;}
  .card {padding: 20px 12px;}
  .plan-overview > div {padding: 17px 8px;}
}
@media (max-width: 768px) {
  .container, header .container{padding: 0 12px;}
  header .container{gap: 12px;}
  nav {display: none;}
  .cta-button {font-size: 1.05rem; padding: 8px 17px;}
  .logo-footer img, header img {height: 36px;}
  .feature-grid,
  .plan-overview,
  .service-cards,
  .icon-grid,
  .testimonial-row,
  .content-grid {flex-direction: column; gap: 18px;}
  .hero {padding: 32px 0 28px 0;}
  .hero h1{font-size: 1.34rem;}
  .hero .cta-button{margin-top: 9px;}
  .section{margin-bottom: 38px; padding: 28px 6px;}
  .testimonial-card{padding:16px 10px;}
  .contact-info span{font-size: .92rem;}
  .category-list{gap: 12px;}
  .cta{padding: 20px 2px; margin-top:28px; border-radius:10px;}
  .timeline, .founder-story, .customer-examples, .science-section, .legal-section, .confirmation-section, .text-section {padding: 12px 7px 8px 7px;}
}
@media (max-width: 690px) {
  .container, header .container{padding:0 5vw;}
  .logo-footer img{height:27px;}
  footer .container{gap:12px;}
}
@media (max-width:530px){
  .container, header .container{padding:0 1.5vw;}
  .cookie-modal-content{padding:19px 7px 18px 7px; min-width:215px;}
  .cookie-banner{flex-direction:column;gap:13px;padding:18px 8px 14px 8px;}
  .mobile-menu.close{top: 7px; right: 12px;}
  .mobile-menu-toggle{top:9px; right:10px;width:36px;height:36px;font-size:1.5rem;}
  .mobile-nav{margin:60px 0 0 12px;gap:13px;}
}

/* ---------------------------
   FLEX/CARD SPACING ENFORCE
---------------------------- */
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ---------------------------
   SHOW/HIDE MOBILE MENU
---------------------------- */
@media (max-width: 1024px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Last responsive tweaks (no element overlap & min gaps)  */
.card, .testimonial-card, .plan-overview > div,
.feature-grid > div, .service-cards > div {
  min-width: 180px;
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child),
.section > *:not(:last-child),
.card-container > *:not(:last-child),
.feature-grid > *:not(:last-child),
.plan-overview > *:not(:last-child),
.service-cards > *:not(:last-child),
.testimonial-row > *:not(:last-child) {
  margin-right: 20px;
}

/* Z-index layering for overlays */
.mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { z-index: 9999 !important;}

/* Micro-interactions: focus/active for buttons */
button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2.5px solid var(--vibrant-pink);
  box-shadow: 0 0 0 3px var(--vibrant-blue), 0 2px 12px rgba(55,127,76,0.10);
}

/* Scrollbar styling for overlays */
.mobile-menu::-webkit-scrollbar, .cookie-modal-content::-webkit-scrollbar {width:.8em;}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal-content::-webkit-scrollbar-thumb{background:var(--muted-gray); border-radius: 9px;}

/* Vibrant bullet color for all legal/lists */
.legal-section ul li::before, .science-section ul li::before{
  content: "• ";
  color: var(--accent);
  font-size: 1.24em;
  margin-right: 3px;
}

/* --- VIBRANT EFFECT: Button Vibrancy --- */
.cta-button, .cookie-btn {
  box-shadow: 0 2px 18px 0 rgba(29,174,255,0.09), 0 1.5px 6px 0 rgba(229,77,151,0.07);
  transition: box-shadow 0.13s, transform .11s;
}
.cta-button:active, .cookie-btn:active {
  box-shadow: 0 2px 8px 0 rgba(55,127,76,0.12);
  transform: scale(0.98);
}

/* Hide scroll on overlays when open */
body.menu-open, body.cookie-modal-open { overflow: hidden; }
