/* --- CSS RESET / NORMALIZE START ----------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
img { max-width: 100%; display: block; height: auto; }
html { scroll-behavior: smooth; }

/* --- CSS VARIABLES BASED ON BRAND + "playful_dynamic" STYLE ----------------------------- */
:root {
  --color-primary: #21405F;
  --color-secondary: #73B1E4;
  --color-accent: #F0F4F8;
  --color-fun1: #FFCD1C;
  --color-fun2: #FF6B6C;
  --color-fun3: #37D2C5;
  --color-fun4: #85E073;
  --color-dark: #222C39;
  --color-white: #fff;
  --color-grey: #F5F7FA;
  --color-text: #222C39;
  --color-light-text: #466790;
  --color-surface: #fff;
  --shadow-default: 0 2px 16px 0 rgba(69, 115, 184, 0.08);
  --shadow-fun: 0 4px 24px 0 rgba(115, 177, 228, 0.18);
  --radius-md: 20px;
  --radius-lg: 40px;
  --transition: .25s cubic-bezier(.55,1,.48,.87);
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --fun-font: 'Fredoka One', 'Montserrat', 'Open Sans', cursive, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fredoka+One&display=swap');

body {
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- CONTAINER UTILS ------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-default);
  transition: transform .18s cubic-bezier(.60,1,.29,1), box-shadow .20s;
  padding: 28px 32px;
}

.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;
  margin: 0 0 24px 0;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-default);
  border-left: 6px solid var(--color-fun1);
  transition: box-shadow var(--transition);
  color: var(--color-dark);
}

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

/* --- FUN + DYNAMIC HERO and general section styles ------------------------------------- */
.hero {
  background: linear-gradient(120deg, var(--color-fun1) 0%, var(--color-secondary) 100%);
  color: var(--color-dark);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  padding: 44px 0 48px 0;
  position: relative;
  box-shadow: 0 10px 24px 0 rgba(115,177,228,.13);
}
.hero h1 {
  font-family: var(--fun-font);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-shadow: 1px 2px 0 var(--color-fun1), 0 1px 16px #fff2; 
  animation: fun-heading 1.2s cubic-bezier(.5,0,.1,1.2) 100ms both;
}
@keyframes fun-heading {
  0% {transform: scale(.7) skewY(8deg); opacity:0; letter-spacing:0.18em;}
  80% {transform: scale(1.07) skewY(-3deg); opacity:.8;}
  100% {transform: scale(1) skewY(0); opacity:1;}
}
.hero p {
  font-size: 1.18rem;
  max-width: 570px;
  margin-bottom: 24px;
  color: var(--color-dark);
  letter-spacing: .01em;
}

/* --- NAVIGATION BARS ------------------------------------------------------------------- */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px 0 rgba(169,200,228,.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 80px;
}
header img {
  height: 36px;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--font-display);
}
.main-nav a {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.03rem;
  padding: 10px 0 7px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: background .16s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-fun3);
  color: var(--color-white);
  box-shadow: 0 5px 10px -2px var(--color-fun3)55;
}

/* --- CTA BUTTONS ----------------------------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  min-width: 148px;
  padding: 14px 32px;
  border-radius: 33px;
  font-family: var(--fun-font);
  font-weight: 700;
  font-size: 1.10rem;
  cursor: pointer;
  text-align: center;
  transition: background .18s var(--transition), box-shadow .17s;
  box-shadow: 0 4px 14px 0 rgba(115,177,228,.11);
  border: none;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  margin-left: 22px;
  outline: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  box-shadow: 0 10px 24px 0 rgba(255,205,28,0.18);
  outline: 2px solid var(--color-fun1);
}
.btn-secondary {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-fun2);
  color: var(--color-white);
}

/* --- MOBILE BURGER MENU --------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.34rem;
  padding: 2px 10px;
  background: var(--color-fun3);
  color: var(--color-white);
  border-radius: 16px;
  border: none;
  transition: background .2s, transform .2s;
  margin-left: 20px;
  cursor: pointer;
  z-index: 111;
}
.mobile-menu-toggle:active {
  background: var(--color-fun2);
  transform: scale(1.1);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--color-accent);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.6,1,.56,1.3);
  box-shadow: -6px 0 44px 0 rgba(113, 177, 228, 0.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: var(--color-fun2);
  color: var(--color-white);
  border-radius: 50%;
  padding: 10px 20px;
  border: none;
  margin: 38px 0 16px 24px;
  align-self: flex-start;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(255,107,108,.11);
  transition: background .16s, transform .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: transparent;
  padding-left: 28px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: var(--fun-font);
  color: var(--color-primary);
  font-size: 1.32rem;
  padding: 14px 0;
  border-radius: 20px;
  width: 100%;
  transition: background .22s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun4);
  color: var(--color-dark);
}

/* --- GENERIC TYPOGRAPHY --------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
h1 {font-size: 2.2rem; line-height: 1.12; margin-bottom: 18px;}
h2 {font-size: 1.44rem; line-height: 1.18; margin-bottom: 10px;}
h3 {font-size: 1.16rem; margin-bottom: 7px;}
h4, h5, h6 { font-size: 1rem; margin-bottom: 6px;}

p, ul, ol, li, blockquote, q, em { color: var(--color-light-text); }
p, li, ul, ol { font-size: 1rem; }

strong, b {color: var(--color-primary); font-weight: bold;}
q { quotes: '“' '”' '‘' '’'; font-style: italic; color: var(--color-fun1);}
em { font-style: italic; }
small { font-size: .9rem; color: var(--color-light-text); letter-spacing: .03em; }

.text-section { max-width: 850px; margin: auto; }

/* --- FEATURE/CARD/LIST SECTION -------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 20px 0 0 0;
  justify-content: flex-start;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--color-white);
  box-shadow: var(--shadow-fun);
  border-radius: 22px;
  padding: 30px 24px 30px 28px;
  min-width: 240px;
  max-width: 330px;
  min-height: 285px;
  transition: transform .15s, box-shadow .16s;
  border-bottom: 6px solid var(--color-fun3);
  position: relative;
  margin-bottom: 20px;
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  animation: jumpicon .6s infinite alternate;
}
@keyframes jumpicon {
  from { transform: translateY(0); }
  to { transform: translateY(-8px) scale(1.1); }
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(55,210,197,0.13);
  border-bottom: 6px solid var(--color-fun4);
}

.value-cards, .use-case-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.value-card, .use-case-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-default);
  padding: 24px 28px 20px 28px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .13s;
}
.value-card:hover, .use-case-card:hover {
  box-shadow: 0 8px 30px 0 rgba(115,177,228,0.16);
  transform: scale(1.04) rotate(1deg);
}

/* --- TESTIMONIALS/SLIDER -------------------------------------------------------------- */
.testimonials {
  background: var(--color-fun4);
  padding: 50px 0 38px 0;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
}
.testimonials h2 {
  color: var(--color-primary);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 32px 0 16px 0;
}
.testimonial-card {
  flex: 1 1 280px;
  max-width: 330px;
  min-width: 220px;
  margin-bottom: 0;
  box-shadow: var(--shadow-fun);
  border-left: 7px solid var(--color-fun2);
  font-family: var(--font-body);
  color: var(--color-dark);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-dark);
}
.testimonial-card strong { color: var(--color-fun2); font-family: var(--fun-font); font-size: 1.01rem; }

.client-logos {
  display: flex;
  gap: 28px;
  margin: 20px 0 0 0;
  align-items: center;
  flex-wrap: wrap;
}
.client-logos img {
  width: 64px; filter: drop-shadow(0 2px 6px #9EE8DD10) saturate(.95);
  opacity: .93;
  background: var(--color-white);
  border-radius: 18px;
  padding: 8px;
  transition: transform .14s;
}
.client-logos img:hover { transform: scale(1.12) rotate(-6deg); }

/* --- CTA BOTTOM + SECTIONS ------------------------------------------------------------ */
.cta-bottom {
  background: var(--color-fun1);
  color: var(--color-dark);
  border-radius: 28px;
  box-shadow: var(--shadow-fun);
  margin: 46px 0 0 0;
  padding: 46px 0;
  text-align: center;
}
.cta-bottom h2 { color: var(--color-primary); font-family: var(--fun-font); font-size: 2rem;}
.cta-bottom p { color: var(--color-dark); }

/* --- PRICING TABLE -------------------------------------------------------------------- */
.pricing-table {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pricing-plan {
  background: var(--color-white);
  border-radius: 32px;
  box-shadow: var(--shadow-fun);
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 210px;
  padding: 38px 30px 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .17s;
}
.pricing-plan.popular {
  box-shadow: 0 12px 34px 0 rgba(255,205,28,.15);
  border: 4px solid var(--color-fun1);
  z-index: 1;
  transform: scale(1.03) rotate(-2deg);
}
.pricing-plan.popular .popular-badge {
  background: var(--color-fun1);
  color: var(--color-primary);
  font-family: var(--fun-font);
  font-size: 1.03rem;
  border-radius: 20px;
  padding: 5px 15px;
  position: absolute;
  right: 24px;
  top: -20px;
  box-shadow: 0 3px 14px 0 rgba(255,205,28,.08);
}
.pricing-plan h3 { font-size: 1.12rem; margin-bottom: 5px;}
.pricing-plan ul { margin: 10px 0 16px 0; padding-left: 18px; }
.pricing-plan ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.pricing-plan ul li:before {
  content: '•';
  position: absolute; left: 0; color: var(--color-fun1); font-size: 1.1em;
}
.pricing-plan .btn-primary, .pricing-plan .btn-secondary {
  min-width: 0;
  margin-left: 0;
  width: 100%;
}

.comparison-chart { overflow-x: auto; width: 100%; margin-top: 12px; }
.comparison-chart table {
  width: 100%; border-collapse: collapse; background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-fun);
  margin-bottom: 22px;
  min-width: 420px;
}
.comparison-chart th, .comparison-chart td {
  padding: 16px 14px;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid #e6ecf5;
}
.comparison-chart th {
  background: var(--color-fun4);
}
.comparison-chart tr:last-child td { border-bottom: none; }

/* --- FAQ ACCORDION -------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion details {
  background: var(--color-accent);
  border-radius: 16px;
  padding: 12px 22px;
  box-shadow: var(--shadow-default);
  color: var(--color-primary);
  font-size: 1.01rem;
  transition: box-shadow .15s;
}
.faq-accordion details[open] {
  box-shadow: 0 5px 30px 0 rgba(55,210,197,0.09);
}
.faq-accordion summary {
  cursor: pointer;
  font-family: var(--fun-font);
  color: var(--color-fun2);
  font-size: 1.09rem;
  outline: none;
  margin-bottom: 6px;
}
.faq-accordion p {
  margin-left: 14px;
  margin-top: 4px;
  color: var(--color-dark);
}

/* --- BLOG LISTS ----------------------------------------------------------------------- */
.blog-list .featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 12px 0;
}
.blog-post {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-default);
  padding: 26px 20px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 18px;
  transition: box-shadow .13s, transform .13s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-post h3 {
  font-size: 1.10rem;
  color: var(--color-fun3);
  font-family: var(--fun-font);
}
.blog-post a {
  color: var(--color-fun2);
  font-family: var(--font-display);
  font-weight: 700;
  transition: color .13s;
}
.blog-post a:hover {
  color: var(--color-fun1);
}

.category-filters {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 8px 0 12px 0;
  align-items: center;
  font-size: 1rem;
}
.category-filters a {
  color: var(--color-fun2);
  font-weight: 600;
  transition: color .11s, background .12s;
  padding: 2px 11px;
  border-radius: 11px;
}
.category-filters a:hover {
  color: var(--color-white);
  background: var(--color-fun2);
}

/* --- SUPPORT/CONTACT/NEWSLETTER ------------------------------------------------------- */
.support-main ul, .newsletter ul, .contact-section ul, .resources ul {
  padding-left: 26px;
}
.support-main li, .newsletter li, .contact-section li, .resources li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.support-main li:before, .resources li:before { content: '✓'; position: absolute; left: 0; color: var(--color-fun1); }
.newsletter li:before { content: '»'; position: absolute; left: 0; color: var(--color-fun2); }
.contact-section li:before { content: ''; }

.knowledge-base-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.knowledge-base-links a {
  color: var(--color-fun3);
  font-weight: 700;
  font-family: var(--font-display);
  transition: color .12s;
}
.knowledge-base-links a:hover { color: var(--color-fun2); }

.tutorials {
  margin-top: 18px;
  padding-left: 6px;
}

.map-location {
  margin-top: 20px;
  background: var(--color-accent);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 1rem;
}

.success-message a.btn-primary {
  margin-top: 18px;
}

/* --- PAGE SECTIONS GENERAL ------------------------------------------------------------ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
}
section:last-child {
  margin-bottom: 0;
}

/* --- FOOTER ---------------------------------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 48px 0 32px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  height: 32px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 130px;
}
.footer-nav a, .footer-legal a {
  color: var(--color-white);
  opacity: .82;
  font-size: 1rem;
  transition: opacity .13s, color .13s;
}
.footer-nav a:hover,.footer-legal a:hover {
  opacity: 1;
  color: var(--color-fun1);
  text-decoration: underline dotted 2px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .96rem;
}
.footer-contact img {
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-contact a {
  color: var(--color-fun3);
  text-decoration: underline dotted 1.5px;
}
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 28px;
  border-radius: 8px;
  transition: filter .13s, transform .11s;
  filter: grayscale(20%) brightness(.93);
}
.footer-social img:hover { filter: none; transform: scale(1.16) rotate(-9deg);}
.footer-disclaimer {
  font-size: .86rem;
  color: #d8e6f4;
  display: block;
  margin-top: 18px;
}

/* --- COOKIE CONSENT BANNER / MODAL ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-fun1);
  color: var(--color-dark);
  padding: 24px 20px 20px 20px;
  z-index: 4050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  box-shadow: 0 -3px 30px 0 rgba(255,107,108,.14);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  animation: cookies-intro .75s cubic-bezier(.5,0,.11,1.11) 1;
}
@keyframes cookies-intro {
  0% { transform: translateY(100%); opacity: 0.1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 9px;
}
.cookie-banner button {
  font-family: var(--fun-font);
  font-size: 1.01rem;
  border-radius: 18px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background .16s, color .14s;
  margin: 0 3px;
}
.cookie-banner .accept {
  background: var(--color-fun4);
  color: var(--color-primary);
}
.cookie-banner .accept:hover { background: var(--color-fun3); color: var(--color-white); }
.cookie-banner .reject {
  background: var(--color-fun2);
  color: var(--color-white);
}
.cookie-banner .reject:hover { background: var(--color-secondary); }
.cookie-banner .settings {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner .settings:hover { background: var(--color-primary); color: var(--color-fun1);}

.cookie-modal-backdrop {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 4100;
  background: rgba(33,64,95,0.35);
  display: none;
}
.cookie-modal-backdrop.active { display: block; }

.cookie-modal {
  position: fixed;
  left: 50%; top: 54%;
  transform: translate(-50%,-50%) scale(.95);
  background: var(--color-white);
  color: var(--color-dark);
  width: 95vw;
  max-width: 420px;
  border-radius: 32px;
  box-shadow: 0 14px 60px 0 rgba(55,210,197,0.19);
  z-index: 4200;
  padding: 32px 32px 28px 32px;
  display: none;
  flex-direction: column;
  gap: 21px;
  animation: cookies-pop .45s cubic-bezier(.55,1,.48,.99);
}
.cookie-modal.active { display: flex; }
@keyframes cookies-pop {
  0% {transform: translate(-50%, 24%) scale(.88); opacity:0;}
  100% {transform: translate(-50%,-50%) scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-family: var(--fun-font);
  font-size: 1.34rem;
  color: var(--color-fun2);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.cookie-category label {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-fun4);
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 12px;
}
.cookie-modal .always-on {
  color: var(--color-fun3);
  font-weight: 700;
  font-size: .98em;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.cookie-modal-close {
  background: var(--color-fun2);
  color: var(--color-white);
  border: none;
  border-radius: 18px;
  font-size: 1.10rem;
  padding: 3px 20px 4px 20px;
  position: absolute;
  right: 15px;
  top: 13px;
  cursor: pointer;
  transition: background .12s, color .11s;
}
.cookie-modal-close:hover { background: var(--color-primary); color: var(--color-fun1); }


/* --- MISC VISUAL DECORATIONS (confetti dots/corners) ---------------------------------- */
.card:before, .feature-card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  top: -13px; right: -13px;
  background: var(--color-fun1);
  opacity: .18;
  animation: confetti-anim 2.8s infinite alternate-reverse ease-in-out;
}
.card:after, .testimonial-card:after {
  content: '';
  position: absolute;
  left: -15px; bottom: -10px;
  width: 13px; height: 13px;
  background: var(--color-fun2);
  border-radius: 16px;
  opacity: .17;
  animation: confetti-anim2 2.1s infinite alternate-reverse ease-in-out;
}
@keyframes confetti-anim {
  0% { transform: scale(.6) rotate(0deg); }
  100% { transform: scale(.82) rotate(22deg); }
}
@keyframes confetti-anim2 {
  0% { transform: scaleX(.66) rotate(-8deg); }
  100% { transform: scaleX(.91) rotate(8deg); }
}

/* --- INTERACTIVE EFFECTS -------------------------------------------------------------- */
a, button { transition: color .16s, background .14s, box-shadow .16s, outline .15s; }
a:focus, button:focus { outline: 2px solid var(--color-fun1); outline-offset: 2px; }

.card:hover, .use-case-card:hover { box-shadow: 0 10px 32px 0 rgba(255,205,28,0.09); transform: scale(1.03); }

.feature-card:active { outline: 2px solid var(--color-fun3); }

/* --- RESPONSIVE DESIGN (MOBILE FIRST) ------------------------------------------------- */
@media (max-width: 1024px){
  .container { max-width: 96vw; }
  .footer-contact, .footer-nav, .footer-legal { min-width: 120px; }
  .pricing-table { gap: 18px; }
  .blog-list .featured-posts, .feature-grid, .use-case-cards, .value-cards, .client-logos, .testimonial-slider { gap: 14px; }
}
@media (max-width: 920px){
  header .container { height: auto; padding: 8px 12px; }
  .hero, .cta-bottom { padding-left: 0; padding-right:0; }
  .main-nav { gap: 12px; }
  .pricing-plan { min-width: 180px; }
  .footer-brand span { font-size: .99rem; }
}
@media (max-width: 768px){
  body { font-size: 15px; }
  .hero h1, .cta-bottom h2 { font-size: 1.47rem; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .footer-brand img { height: 27px; }
  .footer-contact, .footer-nav, .footer-legal { min-width: 0; }
  .footer-nav, .footer-legal { display: none; }
  .footer-contact { font-size: .94rem; }
  .footer-social { margin-top: 13px; }
  .testimonial-slider, .feature-grid, .pricing-table, .blog-list .featured-posts, .use-case-cards, .client-logos { flex-direction: column; gap: 18px; }
  .section, section { padding: 32px 5px; border-radius: 18px; }
  .card, .feature-card, .value-card, .use-case-card, .pricing-plan, .blog-post {
    min-width: unset;
    max-width: 98vw;
    margin: 0 auto 20px auto;
  }
  .footer-contact { margin-bottom: 19px; }
  .cta-bottom { margin: 0 0 30px 0; border-radius: 20px; }
  .cookie-modal { width: 97vw; min-width: 0; }
}
@media (max-width: 520px){
  h1, .cta-bottom h2 { font-size: 1.17rem; }
  h2 { font-size: 1.10rem; }
  .hero { padding-top: 24px; border-radius: 0 0 22px 22px; }
  .cta-bottom { padding: 24px 0; }
  .footer-brand img { height: 19px; }
  .footer-social img { width: 17px; }
  .footer-disclaimer { font-size: .80rem; }
  .card, .feature-card, .value-card, .use-case-card { padding: 18px 7px; }
  .blog-post { padding: 15px 6px; }
  .cookie-banner { font-size: .94rem; padding: 15px 6px 10px 6px; border-radius: 14px 14px 0 0;}
}

/* --- UTILITY CLASSES + VISUAL BEHAVIOR ------------------------------------------------ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 12px !important; }
.mt-4 { margin-top: 24px !important; }

.hide { display: none !important; }

/* --- END OF CSS -------------------------------------------------------------------- */
