/* ---------------------------
  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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #163060;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #00A1B7;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.77,.06,.3,1), background 0.2s;
}
a:hover, a:focus {
  color: #163060;
  background: #00A1B722;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* -------------------------------------
  BRAND COLORS & CUSTOM PROPERTIES
-------------------------------------- */
:root {
  --color-primary: #163060;
  --color-secondary: #00A1B7;
  --color-accent: #F5F7FA;
  --color-fun-yellow: #FFE066;
  --color-fun-pink: #FB498C;
  --color-fun-mint: #3CF6E1;
  --color-fun-orange: #FFA552;
  --radius: 18px;
  --shadow: 0 4px 18px 0 rgba(20,74,100,0.08);
  --shadow-pop: 0 2px 14px 0 rgba(251,73,140,0.16);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* -------------
TYPOGRAPHY
-------------- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.11;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  h1, .hero h1 {
    font-size: 3rem;
  }
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 18px;
  letter-spacing: 0.015em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--color-fun-pink);
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
}
p, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
em {
  color: var(--color-fun-mint);
}
.text-section ul, .feature-list, .service-list, .usp-list ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 0;
  color: var(--color-primary);
}
.text-section ul li, .feature-list li, .service-list li, .usp-list ul li {
  margin-bottom: 8px;
}

/* -------------
CONTAINER + SPACING
-------------- */
.container {
  width: 100%;
  max-width: 1164px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 36px;
  }
}

.card-container, .feature-grid, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
  box-shadow: var(--shadow-pop);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* -------------
HEADER & NAV
-------------- */
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(20,74,100,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 102;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 74px;
  width: 100%;
}
.logo img {
  height: 38px;
  transition: filter 0.2s;
}
.logo img:hover {
  filter: brightness(1.1) drop-shadow(0 4px 6px #FFA55233);
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 7px;
  border-radius: 8px;
  background: none;
  transition: color 0.18s, background 0.18s;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cta-primary {
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(90deg, var(--color-secondary) 60%, var(--color-fun-yellow));
  color: #fff;
  border: none;
  border-radius: 44px;
  padding: 11px 34px;
  font-size: 1.04rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00A1B744;
  transition: transform 0.14s, box-shadow 0.14s, background 0.18s;
  margin-left: 22px;
  text-align: center;
  letter-spacing: 0.01em;
}
.cta-primary:hover, .cta-primary:focus {
  transform: scale(1.06) rotate(-1deg);
  background: linear-gradient(100deg, var(--color-fun-yellow) 60%, var(--color-fun-pink));
  box-shadow: 0 4px 18px 0 #FB498C22;
}

.cta-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-fun-pink);
  color: #fff;
  border: none;
  border-radius: 44px;
  padding: 10px 28px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 #FB498C18;
  transition: background 0.2s, transform 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  transform: scale(1.05) rotate(1deg);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 201;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00A1B744;
  transition: background 0.18s, transform 0.16s;
}
.mobile-menu-toggle:active {
  background: var(--color-fun-pink);
  transform: scale(0.96);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 400;
  transform: translateX(100vw);
  transition: transform 0.44s cubic-bezier(.95,.14,.35,1.05);
  box-shadow: -2px 0 24px 0 #00A1B733;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-fun-yellow);
  color: #163060;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 2rem;
  margin: 18px 0 22px 18px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 #FFA55255;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 410;
}
.mobile-menu-close:active {
  background: var(--color-fun-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 34px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  padding: 11px 0 11px 12px;
  color: var(--color-primary);
  border-radius: 10px;
  background: none;
  transition: background 0.2s, color 0.2s;
  min-width: 174px;
  letter-spacing: 0.02em;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* -------------
HERO, SECTION, CTA
-------------- */
.hero {
  background: linear-gradient(120deg, var(--color-fun-yellow) 0 18%, #fff 100%);
  padding: 44px 0 32px 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 280px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 230px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 710px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero p {
  color: #243a6c;
  font-size: 1.12rem;
  margin-bottom: 20px;
}
.hero .cta-primary {
  margin-left: 0;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .hero {
    padding: 60px 0 46px 0;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 640px) {
  .hero .container {
    min-height: unset;
  }
  .hero {
    padding: 32px 0 26px 0;
  }
  .hero h1 {
    font-size: 1.42rem;
  }
}

.cta {
  background: linear-gradient(100deg, var(--color-secondary) 28%, var(--color-fun-mint) 100%);
  border-radius: var(--radius);
  margin: 44px auto 0 auto;
  box-shadow: 0 2px 10px 0 #00A1B733;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 16px 0;
}
.cta h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.cta .cta-primary, .cta .cta-secondary {
  margin-top: 0;
}

/* -------------
FEATURES & SERVICES
-------------- */
.features {
  margin-bottom: 70px;
}
.features .feature-grid {
  gap: 28px;
  flex-wrap: wrap;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 24px 20px;
  text-align: left;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: transform 0.18s, box-shadow 0.15s;
  margin-bottom: 20px;
  position: relative;
}
.features .feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 8px #3CF6E125);
  animation: playful-pop 1.1s cubic-bezier(.6,.01,.76,.96) infinite alternate-reverse;
}
@keyframes playful-pop {
  0% { transform: rotate(-8deg) scale(0.98) }
  80% { transform: rotate(7deg) scale(1.06); }
  100% { transform: rotate(0deg) scale(1.03); }
}
.features .feature-grid > div:hover {
  transform: translateY(-7px) scale(1.04) rotate(-1.5deg);
  box-shadow: var(--shadow-pop);
  background: var(--color-fun-yellow);
}
.features h3 {
  color: var(--color-fun-pink);
  margin-bottom: 10px;
  font-size: 1.19rem;
  text-shadow: 0 1px 0 #fff9, 0 2px 10px #fb498c16;
}

@media (max-width: 1023px) {
  .features .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .features .feature-grid > div {
    max-width: 98%;
    flex-basis: 46%;
  }
}
@media (max-width: 640px) {
  .features .feature-grid > div {
    flex-basis: 100%;
    min-width: unset;
    margin-bottom: 16px;
    padding: 19px 10px;
  }
}

.service-list {
  margin-bottom: 25px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list li {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 0;
  color: #163060;
  font-size: 1.07rem;
  position: relative;
  border-left: 6px solid var(--color-fun-pink);
  transition: box-shadow 0.17s, border-color 0.14s;
}
.service-list li em {
  color: var(--color-fun-mint);
  font-weight: 500;
  font-style: normal;
}
.service-list li:hover {
  box-shadow: 0 4px 14px 0 #00A1B744;
  border-left: 8px solid var(--color-fun-yellow);
}
.usp-list {
  margin-bottom: 18px;
}
.usp-list ul li {
  color: var(--color-fun-pink);
  background: #FFFBEA;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1.03rem;
}

/* -------------
TESTIMONIALS
-------------- */
.testimonials {
  margin-bottom: 70px;
}
.testimonials h2 {
  margin-bottom: 22px;
  color: var(--color-fun-pink);
  font-size: 1.44rem;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  margin-bottom: 20px;
  color: #18253D;
  font-size: 1.1rem;
  position: relative;
  min-width: 0;
  transition: box-shadow 0.15s, background 0.20s;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  color: #18253D;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--color-fun-mint);
  font-weight: 700;
  letter-spacing: 0.025em;
}
.testimonial-card::before {
  content: '★';
  position: absolute;
  top: 20px; left: 16px;
  font-size: 1.6rem;
  color: var(--color-fun-yellow);
  opacity: 0.6;
  animation: testimonial-star 1.2s infinite alternate;
}
@keyframes testimonial-star {
  0% { transform: scale(1.12) rotate(-6deg); opacity:0.63; }
  100% { transform: scale(0.97) rotate(6deg); opacity:0.83; }
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 #FFE06644;
  background: #FFFBEE;
}
@media (max-width: 620px) {
  .testimonial-card {
    padding: 21px 12px;
  }
}

/* -------------
FOOTER
-------------- */
footer {
  background: #fff;
  border-top: 3px solid var(--color-fun-mint);
  margin-top: 40px;
  padding: 34px 0 14px 0;
  font-size: 0.97rem;
  color: #18253D;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px 32px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--color-fun-pink);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-fun-pink);
  color: #fff;
}
.footer-info {
  color: #888a99;
  font-size: 0.96rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-info span {
  white-space: nowrap;
}
@media (max-width: 690px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px 0;
  }
  .footer-info {
    flex-direction: column;
    gap: 7px;
  }
}

/* ---------------------------
  LEGAL, TEXT BLOCKS
---------------------------- */
.legal, .about, .contact, .location {
  background: #FFF;
  border-radius: var(--radius);
  margin: 36px auto 36px auto;
  box-shadow: var(--shadow);
}
.legal .content-wrapper, .about .content-wrapper, .contact .content-wrapper, .location .content-wrapper {
  gap: 14px;
  padding: 38px 18px;
}
.legal h1, .about h1, .contact h1, .location h2 {
  margin-bottom: 19px;
  color: var(--color-fun-pink);
}
.legal h2, .about h2, .contact h2, .location h2 {
  color: var(--color-secondary);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.legal h3, .about h3, .contact h3, .location h3 {
  margin-bottom: 5px;
  font-size: 1.07rem;
}
.text-section {
  margin-bottom: 14px;
}
.text-section a {
  color: var(--color-fun-pink);
}
.text-section a:hover,
.text-section a:focus {
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .legal .content-wrapper, .about .content-wrapper, .contact .content-wrapper, .location .content-wrapper {
    padding: 19px 7px;
  }
}

/* -----------------------------
  COOKIE CONSENT BANNER & MODAL
------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe9;
  box-shadow: 0 -2px 30px #16306023;
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 34px;
  border-radius: 20px 20px 0 0;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: all 0.48s cubic-bezier(.35,1.10,.9,.98);
  font-size: 1rem;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-consent-banner p {
  color: #18253D;
  flex: 1 1 230px;
  font-size: 1.03rem;
  font-family: var(--font-body);
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 9px 24px;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.11s;
  box-shadow: 0 2px 6px #00A1B733;
  outline: none;
}
.cookie-btn.accept {
  background: var(--color-fun-mint);
  color: var(--color-primary);
}
.cookie-btn.accept:hover {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fb498c33;
  color: var(--color-fun-pink);
}
.cookie-btn.reject:hover {
  background: var(--color-fun-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-fun-yellow);
  color: var(--color-primary);
}
.cookie-btn.settings:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Cookie Preferences Modal */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 3100;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,74,96,0.68);
  align-items: center;
  justify-content: center;
  padding: 22px;
  animation: fadein 0.21s;
}
#cookie-modal.open {
  display: flex;
}
@keyframes fadein {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 16px 50px 0 #00A1B744;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalpop 0.42s cubic-bezier(.15,.98,.18,1.32);
}
@keyframes modalpop {
  from { transform: scale(0.88) translateY(72px); opacity:0; }
  to   { transform: scale(1)   translateY(0);     opacity:1; }
}
.cookie-modal-content h3 {
  color: var(--color-fun-pink);
  font-size: 1.31rem;
  margin-bottom: 10px;
  margin-top:0;
  font-family: var(--font-display);
}
.cookie-category {
  background: #F5F7FA;
  border-radius: 13px;
  padding: 18px 15px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category.essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-toggle {
  width: 51px; height: 28px;
  border-radius: 14px;
  background: #dfeff7;
  border: none;
  transition: background 0.18s;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.cookie-modal-toggle.enabled {
  background: var(--color-fun-mint);
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 6px; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #aaa8;
  transition: left 0.22s;
}
.cookie-modal-toggle.enabled:before {
  left: 27px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 7px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #bbb;
  font-size: 2.1rem;
  position: absolute;
  right: 15px; top: 8px;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: var(--color-fun-pink);
}
@media (max-width:480px) {
  .cookie-modal-content { padding: 19px 7px 19px 7px; min-width: 0; }
}

/* -------------
RESPONSIVE LAYOUTS (Mobile-first)
-------------- */
@media (max-width: 1023px) {
  .container { padding: 0 7px; }
  .features .feature-grid > div {
    max-width: 99vw;
    min-width: 130px;
    flex-basis: calc(50% - 13px);
  }
  .main-nav, .footer-nav { gap: 12px; }
}
@media (max-width: 768px) {
  .header-flex,
  .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features .feature-grid > div {
    flex-basis: 100%;
    max-width: 98vw;
  }
}
@media (max-width: 498px) {
  .footer-nav { gap: 6px; }
}

/* -------------
SCROLLBAR (for color pop!)
--------------- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-fun-yellow);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 6px;
}

/* -------------
MISC: playful accents
-------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Animated bubbles for energy */
.hero::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  background: var(--color-fun-mint);
  border-radius: 50%;
  right: 2vw; top: -70px;
  opacity: 0.12;
  z-index: 0;
  animation: bubble1 7s infinite alternate ease-in-out;
}
@keyframes bubble1 {
  0%   { right: 2vw; top: -70px; opacity: 0.12; }
  50%  { right: 8vw; top: -42px; opacity: 0.15; }
  100% { right: 2vw; top: -100px; opacity: 0.10; }
}
.hero::before {
  content: '';
  position: absolute;
  width: 90px; height: 90px;
  background: var(--color-fun-pink);
  border-radius: 50%;
  left: -60px; bottom: -38px;
  opacity: 0.08;
  z-index: 0;
  animation: bubble2 6s infinite alternate-reverse ease-in-out;
}
@keyframes bubble2 {
  0%   { left: -60px; bottom: -38px; }
  50%  { left: -30px; bottom: 0px; }
  100% { left: -60px; bottom: -60px; }
}


/* -------------
TRANSITIONS
-------------- */
.card, .features .feature-grid > div, .testimonial-card, .cta-primary, .cta-secondary, .cookie-btn {
  transition: box-shadow 0.15s, background 0.19s, color 0.18s, transform 0.14s;
}

/* -------------
ACCESSIBILITY
-------------- */
:focus {
  outline: 2px solid var(--color-fun-mint);
  outline-offset: 1px;
  z-index: 9000;
}


/* -------------
PRINT (minimal)
-------------- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  main { padding: 0; }
}
