/* =====================================================
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { width:100vw; min-height:100vh; overflow-x: hidden; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
a { text-decoration: none; color: inherit; }
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

/* ======================
   VARIABLE FALLBACKS
   ====================== */
:root {
  --brand-primary: #24304A;
  --brand-secondary: #46A879;
  --brand-accent: #F2E9DB;
  --brand-playful1: #F7CB36;
  --brand-playful2: #FF4E81;
  --brand-playful3: #62C6F2;
  --brand-playful4: #FFB540;
  --brand-white: #fff;
  --brand-black: #151B26;
  --shadow-playful: 0 4px 20px 0 rgba(36,48,74,0.12);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ======================
   BASE TYPOGRAPHY
   ====================== */
body {
  font-family: var(--font-body);
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-playful2);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--brand-playful1);
  letter-spacing: -0.02em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.subtitle {
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--brand-playful3);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 500;
}
p, ul, ol, li { font-size: 1rem; }
strong { font-weight: 700; }
.center { text-align: center; justify-content: center; align-items: center; }

/* ======================
   LAYOUT CONTAINERS
   ====================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.text-section {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: var(--shadow-playful);
  padding: 36px 24px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.text-section ul, .text-section ol {
  margin-top: 8px;
  margin-bottom: 8px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
  padding-left: 0.5em;
  position: relative;
}
.text-section ul li:before {
  content: "\25CF";
  color: var(--brand-playful2);
  font-size: 0.9em;
  margin-right: 7px;
  vertical-align: middle;
}
.text-section ol li {
  list-style-type: decimal;
  margin-left: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-card {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: var(--shadow-playful);
  flex: 1 1 250px;
  padding: 24px 20px 20px 20px;
  transition: transform 0.19s cubic-bezier(.67,.11,.32,1), box-shadow 0.22s cubic-bezier(.51,.09,.41,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 240px;
  max-width: 300px;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
}
.feature-card:hover {
  transform: translateY(-5px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(70,168,121,0.15);
  background: var(--brand-playful1);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 260px;
  background: var(--brand-white);
  border-radius: 15px;
  box-shadow: var(--shadow-playful);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 240px;
  max-width: 310px;
  border-left: 7px solid var(--brand-playful2);
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(98,198,242,0.11);
  border-left: 7px solid var(--brand-secondary);
  transform: scale(1.035);
}
.service-price {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--brand-playful4);
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--brand-accent);
  border-radius: 7px;
  padding: 2px 9px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 17px;
  box-shadow: var(--shadow-playful);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(70,168,121,0.13);
}
.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: 14px;
  padding: 22px 30px 22px 30px;
  background: var(--brand-white);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(70,168,121,0.09);
  margin-bottom: 23px;
  min-width: 250px;
  max-width: 450px;
  border-left: 6px solid var(--brand-playful3);
  font-size: 1.08em;
  transition: transform 0.16s, box-shadow 0.18s;
}
.testimonial-card span {
  font-size: 1em;
  color: var(--brand-playful4);
  font-weight: 700;
  margin-top: 3px;
  font-family: var(--font-display);
}
.testimonial-card p {
  color: var(--brand-primary);
  font-family: var(--font-body);
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
  box-shadow: 0 12px 40px 0 rgba(98,198,242,0.17);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

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

.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.case-study {
  background: var(--brand-playful1);
  border-radius: 14px;
  color: var(--brand-primary);
  padding: 22px 16px;
  min-width: 210px;
  box-shadow: 0 4px 16px rgba(247,203,54,0.19);
  flex: 1 1 200px;
  margin-bottom: 20px;
}

/* ======================
   BLOG CARDS
   ====================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.blog-preview {
  background: var(--brand-white);
  border-radius: 14px;
  padding: 22px 16px 24px 18px;
  box-shadow: 0 4px 18px rgba(255,78,129,0.08);
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  border-left: 5px solid var(--brand-playful2);
  position: relative;
  transition: transform 0.13s, box-shadow 0.16s;
}
.blog-preview:hover {
  box-shadow: 0 8px 24px 0 rgba(247,203,54,0.19);
  border-left: 5px solid var(--brand-secondary);
  transform: scale(1.03);
}
.read-more {
  color: var(--brand-playful3);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.04em;
  margin-top: 6px;
  transition: color 0.16s;
  display:inline-block;
}
.read-more:hover { color: var(--brand-playful2); text-decoration: underline; }

/* ======================
   BUTTONS & CTAs
   ====================== */
.cta, .btn, .cookie-btn {
  display: inline-block;
  background: var(--brand-playful2);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 11px;
  padding: 14px 34px;
  font-size: 1.12em;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 12px 0 rgba(255,78,129,0.12);
  transition: background 0.19s, box-shadow 0.19s, transform 0.13s;
  cursor: pointer;
  margin: 3px 0 0 0;
  position: relative;
  outline: none;
}
.cta:hover, .btn:hover, .cookie-btn:hover {
  background: var(--brand-playful1);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 22px 0 rgba(98,198,242,0.13);
}
.cta:active, .btn:active { background: var(--brand-secondary); }

/* Fancy animated stripe underline for CTAs*/
.cta:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: var(--brand-playful3);
  border-radius: 2px;
  margin-top: 5px;
  transition: width 0.3s cubic-bezier(.5,1.7,.32,.83);
}
.cta:hover:after {
  width: 100%;
}

/* ======================
   HEADER & NAV BAR
   ====================== */
header {
  background: var(--brand-white);
  box-shadow: 0 6px 25px 0 rgba(36,48,74,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px 14px 20px;
}
header img { height: 42px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.03em;
  border-radius: 6px;
  padding: 8px 15px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a.cta {
  background: var(--brand-secondary);
  color: var(--brand-white);
  box-shadow: 0 2px 8px rgba(70,168,121,0.12);
  font-weight: 800;
}
.main-nav a.cta:hover {
  background: var(--brand-playful1);
  color: var(--brand-primary);
}
.main-nav a:hover {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

/* ====================== 
   MOBILE NAV
   ====================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  padding: 6px 12px;
  background: var(--brand-secondary);
  color: var(--brand-white);
  border-radius: 8px;
  margin-left: 18px;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(70,168,121,0.12);
  z-index: 150;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-playful2);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-white);
  box-shadow: 0 0 64px 0 rgba(36,48,74,0.20);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,.01,.35,.99);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: var(--brand-playful2);
  color: var(--brand-white);
  align-self: flex-end;
  margin: 18px 28px 8px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
  padding: 2px 13px 2px 13px;
  z-index: 300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  margin-left: 36px;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 0 12px 4px;
  color: var(--brand-primary);
  border-radius: 5px;
  width: 96%;
  transition: background 0.18s, color 0.17s;
  margin: 0 0 2px 0;
}
.mobile-nav a:hover {
  background: var(--brand-playful1);
  color: var(--brand-playful2);
}
.mobile-menu.active { opacity: 1; pointer-events: auto; transition-delay: 0s; }


@media(max-width: 980px) {
  .main-nav {
    gap: 11px;
  }
  .feature-card, .service-card, .blog-preview {
    max-width: 100%;
  }
  .features-grid, .services-list, .card-container, .blog-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer-cols {
    flex-wrap: wrap;
    gap: 26px;
  }
  .footer-logo, .footer-links, .footer-legal, .footer-social {
    min-width: 180px;
    max-width: 40vw;
  }
}
@media(max-width: 768px) {
  header .container {
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .testimonial-slider, .features-grid, .services-list, .content-grid, .card-container, .blog-list, .case-studies {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-card, .service-card, .blog-preview {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
  .footer-cols {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo, .footer-links, .footer-legal, .footer-social {
    min-width: unset;
    max-width: unset;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 37px;
  }
  .text-section {
    padding: 25px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 17px 12px 17px 12px;
    min-width: 90%;
    max-width: 100%;
  }
  .case-studies, .services-list, .blog-list {
    margin-top: 6px;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  .container { padding-left: 10px; padding-right: 10px; }
  h1, .h1 {font-size: 1.45rem;}
  h2, .h2 {font-size: 1.13rem;}
  h3, .h3 {font-size: 0.98rem;}
  .cta, .btn, .cookie-btn {padding: 12px 18px; font-size: 1em;}
  .main-nav a, .mobile-nav a {font-size: 1.12em !important;}
}

/* ======================
   FOOTER
   ====================== */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 44px 0 0 0;
  margin-top: 60px;
  width: 100%;
}
.footer-cols {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-logo p, .footer-links a, .footer-legal a, .footer-social a, .footer-links h4, .footer-legal h4, .footer-social h4 {
  color: var(--brand-accent);
  font-family: var(--font-body);
}
.footer-links, .footer-legal, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
  font-size: 1rem;
}
.footer-links a, .footer-legal a {
  transition: color 0.18s, text-decoration 0.14s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: var(--brand-playful3);
  text-decoration: underline;
}
.footer-social a img {
  height: 28px;
  margin: 5px 6px 0 0;
  opacity: 0.93;
  transition: opacity 0.14s, transform 0.12s;
}
.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.16) rotate(-6deg);
}
.footer-bottom {
  margin-top: 34px;
  text-align: left;
  font-size: 1em;
  opacity: 0.84;
  padding-bottom: 21px;
}

/* =========================
   CONTACT DETAILS
   ========================= */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 23px;
  margin: 14px 0 18px 0;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
}
.contact-details img {
  height: 24px;
  width: 24px;
}

.map-placeholder {
  border-radius: 11px;
  background: var(--brand-playful3);
  color: var(--brand-white);
  padding: 12px 15px;
  margin-top: 11px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.map-placeholder .small-text { font-size: 0.94em; color: var(--brand-accent); }
.info-box {
  background: var(--brand-playful4);
  color: var(--brand-primary);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--font-display);
}

/* ======================
   MICRO-INTERACTIONS
   ====================== */
.feature-card, .service-card, .blog-preview, .testimonial-card, .cta, .btn, .cookie-btn {
  transition: transform 0.14s, box-shadow 0.16s, background 0.18s;
}
@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.feature-card:hover, .service-card:hover, .blog-preview:hover, .cta:hover {
  animation: bounce 0.19s;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-accent);
  z-index: 3000;
  box-shadow: 0 -2px 30px 0 rgba(36,48,74,0.18);
  padding: 20px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1em;
  animation: cookieIn 0.6s cubic-bezier(.27,.91,.47,.96);
}
@keyframes cookieIn {
  0% { transform: translateY(120%); opacity:0; }
  80% { transform: translateY(-12px); opacity:0.96; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner-text {
  font-size: 1em;
  line-height: 1.5;
  font-family: var(--font-body);
  max-width: 650px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-playful2);
  color: var(--brand-white);
  border: none;
  border-radius: 7px;
  padding: 10px 23px;
  font-size:1em;
  font-family: var(--font-display);
  margin-right: 6px;
  margin-top: 0;
}
.cookie-btn.settings { background: var(--brand-playful3); color: var(--brand-primary); }
.cookie-btn.reject { background: var(--brand-white); color: var(--brand-primary); border: 2px solid var(--brand-playful2); }
.cookie-btn:focus, .cookie-btn:hover { background: var(--brand-playful1); color:var(--brand-primary); }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 6px 18px 12px;
    font-size: 1em;
  }
  .cookie-banner-buttons { width: 100%; justify-content: flex-start; gap: 8px; }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 400px;
  min-width: 280px;
  background: var(--brand-white);
  border-radius: 19px;
  box-shadow: 0 6px 52px 0 rgba(36,48,74,0.23);
  transform: translate(-50%,-48%) scale(0.92);
  opacity: 0;
  z-index: 4000;
  padding: 35px 24px;
  transition: opacity 0.3s, transform 0.28s;
  animation: cookieModalIn 0.44s cubic-bezier(.32,1.61,.44,1);
}
.cookie-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
@keyframes cookieModalIn {
  0% { transform: translate(-50%,-38%) scale(0.82); opacity: 0; }
  80%{ transform: translate(-50%,-53%) scale(1.02); opacity:0.97; }
  100%{ transform: translate(-50%,-50%) scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.1em; font-family: var(--font-display); color: var(--brand-primary); margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 9px;
}
.cookie-category input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--brand-playful2);
}
.cookie-category label {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-size: 1em;
}
.cookie-category .cookie-essential {
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 1em;
}
.modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5em;
  background: var(--brand-playful2);
  color: var(--brand-white);
  border-radius: 8px;
  padding: 0 12px;
  z-index: 5000;
  transition: background 0.17s;
}
.modal-close:hover, .modal-close:focus { background: var(--brand-secondary); color: var(--brand-primary); }

/* =========================
   ANIMATIONS
   ========================= */
@keyframes playfulFadeIn {
  0% { opacity: 0; transform: scale(0.93) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.feature-card, .service-card, .blog-preview, .testimonial-card {
  animation: playfulFadeIn 0.45s cubic-bezier(0.60, 0.01, 0.41, 1.03) both;
}

/* ======================
   UTILITY CLASSES
   ====================== */
.mt-20 {margin-top:20px!important}
.mb-20 {margin-bottom:20px!important}
.mt-40 {margin-top:40px!important}
.mb-40 {margin-bottom:40px!important}
.big {font-size:1.22em;font-weight:700}
.small-text {font-size:0.94em; opacity: 0.75;}
.align-center {justify-content:center!important; align-items:center!important;}
.bg-playful1 { background-color: var(--brand-playful1); }
.bg-playful2 { background-color: var(--brand-playful2); }
.bg-playful3 { background-color: var(--brand-playful3); }
.bg-white { background: var(--brand-white); }

/* =========================
   PLAYFUL BACKGROUND SHAPES
   ========================= */
.section:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 360px;
  opacity: 0.07;
  pointer-events: none;
}
.section:nth-child(odd):before {
  width: 330px; height: 160px;
  left: 22px; top: 35px;
  background: var(--brand-playful3);
  transform: rotate(-8deg);
}
.section:nth-child(even):before {
  width: 240px; height: 130px;
  right: 25px; top: 19px;
  background: var(--brand-playful2);
  transform: rotate(7deg);
}
.section {
  position: relative;
  z-index: 1;
}
.section > * { position: relative; z-index: 2; }

@media(max-width:599px){
  .section:before { display: none; }
}

/* ======================
   A11Y & FOCUS
   ====================== */
a:focus, button:focus, .cta:focus, .btn:focus, .cookie-btn:focus {
  outline: 2.5px dashed var(--brand-playful2);
  outline-offset: 2px;
  background:var(--brand-playful1);
  color:var(--brand-primary);
}

/* ======================
   PRINT STYLES
   ====================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .section { box-shadow: none !important; background: #fff !important; }
}
