/* PrismVolt Schönheit Style – playful_dynamic – responsive mobile-first flexbox layout – NO GRID! */

/* --------------------
   CSS RESET & BASELINE
--------------------- */
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, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8F9FA;
  color: #414F6B;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #414F6B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #E2B772;
  outline: none;
}

/* Remove list styles */
ol, ul {
  list-style: none;
}
/* ----------------------
   CUSTOM BRAND VARIABLES
---------------------- */
:root {
  --primary: #414F6B;
  --primary-dark: #374266;
  --secondary: #F8F9FA;
  --secondary-light: #FFFFFF;
  --accent: #E2B772;
  --accent-bright: #FFDA87;
  --card-bg: #FFFFFF;
  --card-border: #eaeaea;
  --shadow: 0 2px 16px 2px rgba(65,79,107,0.07);
  --radius: 24px;
  --playful-blue: #6FC3DF;
  --playful-pink: #FF94C2;
  --playful-green: #97ED8A;
  --playful-yellow: #FFE18F;
}

/* -----------
   TYPOGRAPHY
-------------*/
h1, .hero h1 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 0 var(--accent), 2px 4px 12px rgba(255,218,135, 0.14);
  text-wrap: balance;
  animation: popIn 1s cubic-bezier(.56,-0.02,.35,1.34) 0.15s both;
}
@keyframes popIn {
  0% {opacity:0; transform: scale(0.9) translateY(30px);}
  100% {opacity:1; transform: none;}
}

h2 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  line-height: 1.26;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
}
p {
  line-height: 1.6;
  margin-bottom: 12px;
}

strong {
  font-weight: 700;
}

.text-section li,
.text-section p {
  font-size: 1rem;
  color: #323d52;
  margin-bottom: 8px;
}

.text-section {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 0;
}
.text-section li {
  margin-left: 0;
  margin-bottom: 10px;
}

/* --------------
   CONTAINERs
---------------*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* -----------
   HEADER
-----------*/
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 1px 4px rgba(65,79,107,0.08);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
  padding: 12px 18px;
}
.logo-link img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background .18s, color .16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: var(--accent-bright);
  box-shadow: 0 1px 6px 0 rgba(255,148,194,0.10);
}

.cta-btn {
  background: linear-gradient(90deg, var(--accent) 60%, var(--playful-pink));
  color: #232942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 10px 28px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 16px 0 rgba(255,218,135,.14); 
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.13s, box-shadow 0.14s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--playful-pink) 40%, var(--playful-green));
  color: var(--primary);
  box-shadow: 0 6px 22px 0 rgba(255,148,194,0.18), 0 1.5px 6px 0 rgba(151,237,138,0.12);
}

/* ------------
   HERO SECTION
-------------*/
.hero {
  background: var(--playful-blue);
  background: linear-gradient(90deg, var(--playful-blue) 68%, var(--playful-pink) 100%);
  padding: 56px 0 44px 0;
  position: relative;
  min-height: 270px;
  margin-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  color: var(--primary-dark);
  filter: drop-shadow(0 2px 0 var(--accent));
  text-shadow: 0 3px 0 var(--secondary), 2px 2px 24px rgba(151,237,138,0.12);
  font-size: 2.2rem;
}
.hero .subheadline {
  font-size: 1.08rem;
  color: #253442;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 16px;
  animation: bounceFadeIn 1.2s cubic-bezier(.71,-0.12,.5,1.51) 0.33s both;
}
@keyframes bounceFadeIn {
  0% {opacity:0; transform: scale(.89) translateY(42px);}
  80% {transform: scale(1.04) translateY(-6px);}
  100% {opacity:1; transform: none;}
}

/* -------------
   SECTION SPACING
---------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius);
}
section:last-child {
  margin-bottom: 0;
}

/* ---------------------------------
 FLEX CONTAINERS & LAYOUT MANDATORY
--------------------------------- */
.card-container,
.card-grid,
.feature-grid,
.content-grid,
.testimonial-list,
.service-list,
.download-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.card,
.feature-item,
.service-item,
.testimonial-card,
.download-list li,
.faq-item {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 245px;
}

.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;
}

/****************
  CARD DESIGNS
****************/
.card, .feature-grid li, .service-item, .testimonial-card, .faq-item, .download-list li{
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px 22px 20px 22px;
  border: 2px solid transparent;
  transition: box-shadow 0.15s, border 0.16s, transform 0.16s;
  position: relative;
}
.card:hover, .feature-grid li:hover, .service-item:hover, .download-list li:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px 0 rgba(239, 147, 225,0.08), 0 2px 10px 0 rgba(151, 237, 138, 0.11);
  transform: translateY(-4px) scale(1.025);
}

/*******************
   FEATURE GRID
********************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 210px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--secondary-light);
  padding: 22px 16px 20px;
  margin-bottom: 20px;
}
.feature-grid img{
  width: 48px;
  margin-bottom: 10px;
  animation: floatIcon 2.3s infinite ease-in-out alternate;
}
@keyframes floatIcon {
  from {transform: translateY(0px);}
  to {transform: translateY(-12px);}
}
.feature-grid h3 {
  font-size: 1.03rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.feature-grid p {
  font-size: 0.97rem;
  color: #4b5869;
}

/******************
   SERVICE LIST
******************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
}
.service-item {
  background: var(--secondary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 245px;
  min-width: 240px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border: 2px solid transparent;
  transition: border .16s;
}
.service-item h3 {
  font-size: 1.08rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.service-item span {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  margin-left: 7px;
}
.service-item p {
  color: #395176;
  font-size: 0.98rem;
}
.service-item:hover{
  border-color: var(--playful-blue);
}

/**********************
  TESTIMONIALS SECTION
***********************/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
}
.testimonial-card {
  background: #FFFBEF;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px 0 rgba(65,79,107,0.07);
  border: 2px solid var(--accent);
  flex: 1 1 280px;
  max-width: 380px;
  min-width: 220px;
  padding: 22px 22px 18px 26px;
  margin-bottom: 20px;
  align-items: center;
  position: relative;
  animation: testimonialFadeIn 0.75s cubic-bezier(.64,1.35,.49,1.05) both;
}
@keyframes testimonialFadeIn {
  0% {opacity:0; transform:scale(.94) translateY(40px);}
  100% {opacity:1; transform:none;}
}
.testimonial-card p {
  color: #3b325e;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #a06314;
  font-size: .96rem;
  font-style: italic;
  font-weight: 700;
}

/********************
   FAQ-LIST + DOWNLOAD-LIST
********************/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  background: var(--playful-green);
  color: #22303b;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(103,200,182,0.11);
  padding: 22px 20px 20px 26px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.faq-item p {
  font-size: 0.96rem;
  color: #22402B;
}
.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.download-list li {
  flex: 1 1 200px;
  min-width: 210px;
  background: var(--playful-yellow);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(255,225,143,0.13);
  padding: 18px 13px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.download-list li img {
  width: 38px;
  margin-bottom: 4px;
}
.download-list li strong {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 2px;
}
.download-list li span {
  font-size: .97rem;
  color: #4b5869;
}

/**************************
   BUTTONS, LINKS, INTERACTIONS
***************************/
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  border: none;
  cursor: pointer;
}
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2px var(--playful-pink), 0 2px 18px 0 rgba(239,147,225,0.08);
}

/**************************
   FOOTER
***************************/
footer {
  background: #FFF6F4;
  border-top: 4px double var(--accent);
  margin-top: 48px;
  padding: 0 0 8px 0;
  width: 100vw;
}
footer .container {
  padding: 22px 12px 10px 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.97rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  transition: filter 0.18s;
}
.footer-social img:hover {
  filter: drop-shadow(0 2px 6px var(--playful-blue));
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0;
}
.footer-nav a {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  letter-spacing: 0.01em;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background .15s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus { 
  color: var(--accent);
  background: var(--playful-pink);
}

/*************************
   MOBILE BURGER MENU
**************************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #143454;
  border-radius: 14px;
  padding: 13px 17px;
  font-size: 1.45rem;
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 14px;
  z-index: 110;
  box-shadow: 0 3px 12px 0 rgba(226,183,114,0.14);
  border: 2px solid var(--accent);
  display: none;
  transition: background .18s, color .16s, box-shadow .13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--playful-pink);
  color: var(--primary-dark);
  box-shadow: 0 7px 30px 0 rgba(255,148,194,0.14);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary-light);
  box-shadow: 0 2px 50px 0 rgba(65,79,107,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.83,0,.28,1.32);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px 26px 18px 26px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  display: inline-block;
  position: absolute;
  top: 21px;
  right: 20px;
  background: var(--accent);
  color: #143454;
  border-radius: 13px;
  padding: 9px 15px;
  font-size: 1.2rem;
  font-weight: 900;
  border: 2px solid var(--accent);
  cursor: pointer;
  z-index: 11001;
  transition: background .19s, color .13s, box-shadow .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--playful-blue);
  color: var(--primary-dark);
  box-shadow: 0 5px 16px 0 rgba(111,195,223,0.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  width: 90vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary-dark);
  font-weight: 800;
  border-radius: 11px;
  padding: 14px 18px;
  text-align: left;
  background: var(--playful-yellow);
  transition: background .20s, color .17s;
  min-width: 90vw;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--playful-pink);
  color: var(--primary);
}

/************************************
   COOKIE CONSENT BANNER & MODAL
*************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--accent-bright);
  color: #332603;
  z-index: 15000;
  box-shadow: 0 -2px 18px 0 rgba(65,79,107,0.12);
  padding: 23px 18px 21px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookieIn 0.7s cubic-bezier(.64,1.35,.49,1.05) both;
}
@keyframes cookieIn{0%{opacity:0; transform:translateY(40px);}100%{opacity:1; transform:none;}}
.cookie-banner p {
  color: #3f2702;
  margin: 0 12px 0 0;
  font-size: .99rem;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  background: var(--playful-blue);
  color: #143454;
  border: none;
  padding: 9px 20px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  transition: background .15s, color .10s, box-shadow .11s;
  box-shadow: 0 1px 6px 0 rgba(111,195,223,0.10);
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--playful-green);
  color: #112F13;
}
.cookie-btn.reject {
  background: var(--playful-pink);
  color: #43142c;
}
.cookie-btn.settings {
  background: var(--accent);
  color: #4a2d05;
}
.cookie-btn:focus, .cookie-btn:hover {
  filter: brightness(1.09) drop-shadow(0 2px 8px var(--playful-yellow));
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 16000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(65,79,107,0.14);
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 34px 32px 27px 32px;
  min-width: 320px;
  min-height: 200px;
  max-width: 98vw;
  box-shadow: 0 4px 42px 0 rgba(111,195,223,0.17);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookieModalPop 0.4s cubic-bezier(.78,1.65,.41,1.02) both;
}
@keyframes cookieModalPop {0%{transform: scale(.85) translateY(60px);opacity:0;} 100%{transform:none;opacity:1;}}
.cookie-modal h2 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.08rem;
  color: #353f59;
}
.cookie-checkbox {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-category.essential label {
  color: #959595;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.3rem;
  background: var(--playful-pink);
  color: #fff;
  border-radius: 50%;
  padding: 5px 11px;
  border: 2px solid var(--playful-pink);
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--playful-blue);
  color: var(--primary-dark);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

/****************************************
   RESPONSIVE DESIGN (MOBILE-FIRST)
*****************************************/
@media (max-width: 1070px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container,
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 9px;
  }
  .feature-grid, .service-list, .testimonial-list, .faq-list, .content-grid, .download-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: .98rem;
  }
  section {
    padding: 26px 5vw;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 0;
    gap: 18px;
    width: 100%;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .container {
    padding: 0 5vw;
    min-width: 90vw;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  /* Make footer and nav flexible for mobile */
  footer .content-wrapper,
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-social img {
    width: 36px;
    height: 36px;
  }
  .hero {
    min-height: 150px;
    padding: 34px 0 25px 0;
  }
  h1,.hero h1{
    font-size: 1.28rem;
  }
  h2{
    font-size: 1.14rem;
    margin-top: 22px;
  }
  .feature-grid,
  .service-list,
  .testimonial-list,
  .faq-list,
  .download-list {
    flex-direction: column;
    gap: 17px;
    width: 100%;
  }
  .feature-grid li, .service-item, .testimonial-card, .faq-item, .download-list li {
    min-width: 72vw;
    width: 100%;
    padding: 18px 8vw 15px 9vw;
  }
  .mobile-menu {
    padding: 18px 6vw 18px 8vw;
  }
  .mobile-nav a {
    font-size: 1.08rem;
    min-width: 80vw;
    padding: 13px 11px;
  }
  .cookie-modal {
    max-width: 94vw;
    padding: 16px 8vw 12px 8vw;
  }
}
@media (max-width: 490px) {
  html {font-size: 14.5px;}
  .footer-info, .footer-brand, .footer-nav, .footer-social {
    font-size: 0.94rem;
  }
  .feature-grid img, .download-list li img {
    width: 36px;
  }
  .service-item, .feature-grid li, .testimonial-card, .faq-item, .download-list li {
    padding: 13px 4vw 11px 5vw;
    font-size: .99rem;
  }
  .cookie-banner p {
    font-size: .98rem;
  }
}

/**********
   UTILITIES
**********/
.mt2 { margin-top: 16px; }
.mb2 { margin-bottom: 16px; }
.gap-24 { gap: 24px; }

/*********************************
   PLAYFUL ANIMATIONS FOR SECTIONS
**********************************/
.feature-grid li {
  animation: wiggleCard 2.6s infinite cubic-bezier(.7,-0.7,.3,1.6) alternate;
}
@keyframes wiggleCard {
  0% {transform: scale(1) rotate(-1deg);}
  100% {transform: scale(1.02) rotate(1.5deg);}
}
.download-list li {
  animation: downloadCardPop 1.5s cubic-bezier(.62,-0.12,.67,1.12) alternate infinite;
}
@keyframes downloadCardPop {
  0% {box-shadow: 0 2px 10px 0 rgba(255,225,143,0.11);}
  60% {box-shadow: 0 8px 34px 0 rgba(255,225,143,0.18);}
  100% {box-shadow: 0 4px 14px 0 rgba(255,225,143,0.13);}
}

/******************************
   VISUAL HIERARCHY & SPACING
******************************/
.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; }

/*********************************
   ACCESSIBILITY & FOCUS
**********************************/
:focus-visible {
  outline: 2.5px solid var(--playful-blue) !important;
  outline-offset:2px;
}

/*********************************
   PRINT
**********************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {display:none!important;}
  main, .container, section, body {background:white;color:black;}
  * {box-shadow: none!important; background-image: none!important;}
}
