/* === 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, menu, 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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section { display: block; }
body { line-height: 1.5; background: #F2F7FA; }
ol, ul { list-style: none; }
a { background: transparent; color: inherit; text-decoration: none; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

/* === BRAND VARIABLES === */
:root {
  --primary: #23415A;
  --secondary: #4CB992;
  --accent: #F2F7FA;
  --brand-yellow: #FFD44B;
  --brand-hotpink: #F672A7;
  --brand-violet: #7E6BF6;
  --brand-blue: #68C7FA;
  --text-dark: #1A2C3B;
  --text-light: #FFF;
  --gray: #E6EAF0;
  --box-radius: 20px;
  --transition-time: 0.25s;
  --header-height: 70px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* === TYPOGRAPHY === */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--accent);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
}
h1 { font-size: 2.125rem; line-height: 1.12; margin-bottom: 16px; }
h2 { font-size: 1.625rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.22; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.125rem; }

p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}
strong { color: var(--brand-violet); font-weight: 700; }

@media (min-width:700px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}

/* === CONTAINER/SECTION LAYOUTS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--box-radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width:900px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* === HEADER & NAV === */
header {
  background: #fff;
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 998;
  border-bottom: 4px solid var(--brand-yellow);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 18px;
}
.logo img { height: 48px; transition: transform .2s; }
.logo:hover img { transform: rotate(-6deg) scale(1.05); }

.main-nav {
  display: none;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-hotpink);
  color: var(--text-light);
}

.cta-btn {
  font-family: var(--font-display);
  display: inline-block;
  background: var(--brand-violet);
  color: #fff;
  padding: 13px 30px;
  border-radius: 28px;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 3px 12px 0 rgba(124,85,237,0.13);
  transition: background .22s, transform .17s, box-shadow .2s;
  margin-left: 14px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-hotpink);
  color: #fff;
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
  box-shadow: 0 7px 20px 0 rgba(240,87,173,0.13);
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  font-size: 2rem;
  color: var(--brand-hotpink);
  background: none;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left: 8px;
  z-index: 1001;
  box-shadow: 0 3px 8px rgba(124,85,237,0.07);
  transition: background .18s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-violet);
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.42,1.03,.71,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 0 20px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: var(--brand-yellow);
  border: none;
  align-self: flex-end;
  margin-bottom: 24px;
  margin-right: 30px;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-hotpink);
  color: #fff;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90vw;
  padding-left: 10px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 20px;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
@media (max-width:899px) {
  .main-nav { display: none; }
  .cta-btn {
    margin-left: 0;
  }
}

/* === HERO SECTION === */
.hero {
  min-height: 300px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-violet) 100%);
  border-radius: var(--box-radius);
  margin: 24px 0 54px 0;
  box-shadow: 0 8px 32px rgba(34,65,90,0.09);
  padding-top: 42px;
  padding-bottom: 42px;
  animation: slideInHero .75s cubic-bezier(.57,1.68,.82,.84) 0.1s 1 both;
}
@keyframes slideInHero {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
}
.hero h1 { color: var(--text-light); text-align: center; text-shadow: 0 3px 8px #1a2c3b38; }
.hero p  { color: #fff; text-align: center; font-size: 1.15rem; max-width: 650px; }
.hero .cta-btn {
  margin-top: 18px;
  background: var(--brand-yellow);
  color: var(--primary);
  font-size: 1.22rem;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--brand-hotpink);
  color: #fff;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 22px; padding-bottom: 22px;
    min-height: auto;
  }
}

/* === FLEX LAYOUTS === */
/* core section, cards etc. */
.card-container, .feature-grid, .app-grid, .guide-grid, .article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: 0 4px 16px 0 rgba(44,73,134,.09);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  transition: box-shadow .23s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(122,107,246,0.18);
  transform: translateY(-3px) scale(1.025) rotate(-1deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(34,65,90,.09);
  margin-bottom: 20px;
  padding: 20px;
  max-width: 500px;
  min-width: 220px;
  border-left: 7px solid var(--brand-yellow);
  animation: popCard .7s cubic-bezier(.38,1.45,.54,.99) .1s 1 both;
}
@keyframes popCard {
  0% { transform: scale(.94) translateY(35px); opacity:0; }
  100% { transform: none; opacity:1; }
}
.testimonial-card .stars {
  color: var(--brand-yellow);
  font-size: 1.08rem;
  letter-spacing: 1px;
}
.testimonial-card p {
  margin-bottom: 4px;
  color: var(--primary);
}
.testimonial-card strong {
  color: var(--brand-violet);
}
/* proper contrast: dark text on light bg ensured */

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

@media (max-width: 899px) {
  .feature-grid, .app-grid, .guide-grid, .article-previews, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card { min-width: 0; max-width: 100%; }
}

/* === VALUES & SERVICES === */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 12px 0;
}
.values-list li {
  flex: 1 1 230px;
  min-width: 170px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: 0 3px 11px rgba(124,85,237,0.09);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .24s, transform .17s;
}
.values-list li:hover {
  box-shadow: 0 7px 26px rgba(34,65,90,0.13);
  transform: scale(1.04) rotate(-2deg);
}
.values-list img {
  width: 38px; height: 38px;
  margin-bottom: 6px;
}
.values-list strong {
  color: var(--brand-hotpink);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.service-list li {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(44,73,134,.06);
  margin-bottom: 8px;
  font-size: 1.09rem;
}

/* === FEATURE & APP LISTS === */
.feature-grid > div, .app-grid > div, .guide-grid > div, .article-previews > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: 0 3px 14px 0 rgba(34,65,90,0.09);
  padding: 24px 18px 18px 18px;
  position: relative;
  transition: box-shadow .21s, transform .15s;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: popCard .7s cubic-bezier(.38,1.45,.54,.99) .09s 1 both;
}
.feature-grid > div:hover, .app-grid > div:hover, .guide-grid > div:hover, .article-previews > div:hover {
  box-shadow: 0 7px 26px rgba(124,85,237,0.15);
  transform: scale(1.025) rotate(1deg);
}
.feature-grid img, .values-list img {
  width: 38px; height: 38px;
}
.feature-grid h3,
.app-grid h3,
.guide-grid h3,
.article-previews h3 {
  color: var(--brand-hotpink);
  font-size: 1.17rem;
  margin-bottom: 8px;
}
.guide-grid .topic-tag { font-size: 0.93rem; background: var(--brand-yellow); color: var(--primary); font-weight: 700; border-radius: 13px; padding: 3px 14px; display: inline-block; margin: 6px 0 4px; }
.read-more {
  color: var(--brand-violet);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.97rem;
  margin-top: 8px;
  align-self: flex-end;
  transition: color .16s;
}
.read-more:hover, .read-more:focus { color: var(--brand-hotpink); }

.category-filters {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 10px 0 20px 0;
}
.category-filters a {
  color: var(--primary);
  font-family: var(--font-display);
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--gray);
  transition: background .18s, color .16s;
  font-size: 0.98rem;
}
.category-filters a:hover { background: var(--brand-yellow); color: var(--brand-hotpink); }

/* === TABLE STYLES === */
table {
  width: 100%;
  margin: 18px 0 24px 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 9px rgba(22,47,81,0.08);
}
th, td {
  padding: 14px 10px;
  text-align: center;
  font-size: 1rem;
}
th {
  background: var(--brand-yellow);
  color: var(--primary);
}
td {
  border-bottom: 1px solid var(--gray);
}
tr:last-child td { border-bottom: none; }

/* === FAQ === */
.faq-list li {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 3px 10px 0 rgba(124,85,237,.08);
  margin-bottom: 20px;
}

/* === CALL TO ACTION SECTION === */
.cta {
  text-align: center;
  background: linear-gradient(93deg, var(--brand-violet) 15%, var(--brand-yellow) 90%, var(--brand-blue) 100%);
  color: var(--text-light);
  border-radius: var(--box-radius);
  margin-bottom: 40px;
  padding: 40px 18px 50px 18px;
  animation: popCard .75s cubic-bezier(.27,1.25,.67,1.1) .13s 1 both;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 2px 8px #23415a1c;
}
.cta .cta-btn {
  margin: 26px 0 0 0;
  background: var(--brand-hotpink);
  color: #fff;
  font-size: 1.22rem;
}
.cta .cta-btn:hover { background: var(--brand-yellow); color: var(--primary); }

/* === LEGAL & FOOTER === */
footer {
  background: #23415A;
  color: #fff;
  font-size: 1rem;
  padding-top: 40px;
  padding-bottom: 24px;
  margin-top: 44px;
  box-shadow: 0 -2px 12px rgba(44,73,134,0.06);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-content .logo img {
  width: 48px; height: 48px;
}
.footer-content p{
  color: #fff;
}
.footer-menu {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.93;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 12px;
  background: none;
  transition: background .15s, color .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--brand-hotpink);
  color: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 0.98rem;
}
.contact-info img { width: 19px; height: 19px; margin-right: 6px; vertical-align: middle; }
.contact-info a { color: var(--brand-yellow); text-decoration: underline; }
.legal-notice {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
  width: 100%;
}

@media (min-width: 800px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .contact-info, .legal-notice {
    margin-left: 34px;
  }
  .footer-menu { gap: 24px; }
}

/* === FORM / SUCCESS MESSAGE etc. === */
.contact-form .success-message {
  background: var(--brand-blue);
  color: var(--primary);
  border-radius: 15px;
  padding: 12px 16px;
  font-weight: bold;
  margin-bottom: 14px;
  animation: popCard .6s cubic-bezier(.28,1.25,.63,1.15) .07s 1 both;
}

/* === STEPS, HOW-IT-WORKS etc. === */
.steps, .step-by-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  counter-reset: item;
}
.steps li, .step-by-step li {
  position: relative;
  padding-left: 46px;
  min-height: 42px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px 0 rgba(232,212,75,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  transition: background .14s, box-shadow .13s;
}
.steps li::before, .step-by-step li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 15px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--brand-hotpink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px 0 rgba(34,65,90,0.06);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--brand-violet);
  color: #fff;
  font-size: 1.09rem;
  line-height: 1.2;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 1px 4px #6c51be22;
  margin-right: 10px;
}
.callout {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--primary);
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: bold;
  padding: 3px 11px;
  margin-left: 14px;
}

/* === THANK YOU === */
.thank-you-message {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(124,85,237,0.08);
  padding: 28px 18px;
  text-align: center;
  animation: popCard .8s cubic-bezier(.38,1.45,.54,.97) .13s 1 both;
}
.thank-you-message ul.next-steps {
  margin: 14px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.thank-you-message .cta-btn { margin-top: 24px; }

/* === MAP/EMBEDDED === */
.embedded-map {
  background: #e6eaf0;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(34,65,90,0.06);
  padding: 30px 16px;
  margin-bottom: 19px;
  text-align: center;
  color: var(--primary);
}

/* === LEGAL PAGES === */
.legal {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: 0 3px 11px rgba(124,85,237,0.09);
  padding: 36px 18px 36px 18px;
  margin-bottom: 40px;
}

/* === RESPONSIVE QUERIES === */
@media (max-width:700px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .cta h2 { font-size: 1.23rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 32px 6px; }
}

/* === MICRO-INTERACTIONS & ANIMATIONS === */
a, .cta-btn, button, .read-more {
  transition: color .18s, background .18s, box-shadow .16s, transform .14s;
}
.feature-grid > div, .guide-grid > div, .app-grid > div, .article-previews > div, .card {
  cursor: pointer;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: var(--primary);
  box-shadow: 0 -2px 19px rgba(232,212,75,0.11);
  border-top: 3px solid var(--brand-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 18px 12px 18px 12px;
  z-index: 1300;
  animation: slideUpBanner .47s cubic-bezier(.41,1,.64,1) 0.13s 1 both;
}
@keyframes slideUpBanner {
  from { transform: translateY(70px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner-content { text-align: center; font-size: 1.08rem; }
.cookie-banner-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner-btns button {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 2px 7px #FFD44B48;
  margin-bottom: 0;
  transition: background .15s, color .14s;
}
.cookie-banner-btns button:hover, .cookie-banner-btns button:focus {
  background: var(--brand-hotpink);
  color: #fff;
}
.cookie-banner-btns .cookie-settings-btn {
  background: var(--brand-hotpink);
  color: #fff;
}
.cookie-banner-btns .cookie-settings-btn:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed; top: 0; left:0; width: 100vw; height: 100vh;
  background: rgba(35,65,90,0.38);
  z-index: 1400;
  animation: fadeIn .23s cubic-bezier(.35,1.4,.7,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed; bottom: 50%; left: 50%; transform: translate(-50%,50%);
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 8px 32px #23415a29;
  max-width: 420px;
  width: 93vw;
  padding: 32px 20px 20px 20px;
  z-index: 1450;
  animation: popCard .45s cubic-bezier(.27,1.11,.86,1.02) 0s 1 both;
}
.cookie-modal h3 {
  color: var(--brand-hotpink);
  font-size: 1.33rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  padding: 14px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: var(--gray);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  accent-color: var(--brand-violet);
}
.cookie-modal .category-essential label {
  color: var(--secondary); font-weight: 700;
}
.cookie-modal .cookie-modal-btns {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btns button {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 18px;
  font-size: 1rem;
  background: var(--brand-hotpink);
  color: #fff;
  border-radius: 18px;
}
.cookie-modal .cookie-modal-btns button:disabled {
  opacity: 0.6;
}
.cookie-modal .cookie-modal-btns button:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}

@media (max-width:620px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 20px 6px 14px 6px;
  }
}

/* === SCROLLBAR (playful dynamic) === */
::-webkit-scrollbar { width: 10px; background: #e6eaf0; }
::-webkit-scrollbar-thumb {
  background: var(--brand-violet);
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-hotpink);
}

/* === PLAYFUL DYNAMIC VISUALS === */
h1, h2, h3 {
  text-shadow:
    0 2px 5px #FFD44B33,
    0 1px 0 #fff6,
    0 4px 12px #7e6bf62b;
}
always use fun curve/round in .cta-btn, .testimonial-card, .card, .feature-grid > div

/* === UTILS === */
.hide { display: none !important; }

/* === FOCUS STYLES === */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed var(--brand-hotpink);
  outline-offset: 2px;
  z-index: 2;
}

/* === Z-INDEXS === */
header       { z-index: 998; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1300; }
.cookie-modal, .cookie-modal-backdrop { z-index: 1450; }

/* Ensure NO display:grid, grid-*, column-*, columns, break-inside, absolute positioning for content, only for decor strictly. */
