/* --- 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,
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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f7fafc;
  color: #1e2746;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #29a3a3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19325c;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
::-webkit-input-placeholder {
  color: #ababab;
}
::-moz-placeholder {
  color: #ababab;
}
:-ms-input-placeholder {
  color: #ababab;
}
::placeholder {
  color: #ababab;
}

/* --- BRAND COLOR VARIABLES --- */
:root {
  --color-primary: #19325c;
  --color-secondary: #29a3a3;
  --color-accent: #ffffff;
  --color-bg: #f7fafc;
  --color-shadow: rgba(25, 50, 92, 0.09);
  --color-warning: #ffe164;
  --color-danger: #fa4e6b;
  --color-info: #43e0fd;
  --color-success: #2ee5b6;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, address, span, dt, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong { font-weight: 700; }

body, p, li, address, span, dt, dd {
  color: #222a41;
}

/* --- GENERIC SPACING --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
}

/* --- PLAYFUL DYNAMIC DECORATION / SHADOWS / RADIUS --- */
.card, .testimonial-card, .service-card, .about, .cta, .cta-newsletter {
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 var(--color-shadow);
  background: var(--color-accent);
}

/* --- BUTTONS --- */
.cta-btn, .cta-btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #29a3a3 60%, #43e0fd 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 2px 14px 0 rgba(67,224,253,0.12);
  transition: box-shadow 0.3s, transform 0.15s, background 0.23s, color 0.16s;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  margin-bottom: 10px;
  outline: none;
  position: relative;
}
.cta-btn-secondary {
  background: linear-gradient(90deg, #ffe164 60%, #fa4e6b 100%);
  color: #2b2736;
}
.cta-btn:hover, .cta-btn-secondary:hover {
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
  background: linear-gradient(90deg, #43e0fd 60%, #29a3a3 100%);
  color: #fff !important;
  box-shadow: 0 6px 25px 0 rgba(67,224,253,0.19);
}
.cta-btn:active, .cta-btn-secondary:active {
  transform: scale(0.97);
}
button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s, transform 0.17s;
  border-radius: 6px;
  border: none;
}
button:focus-visible, a:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #43e0fd;
  outline-offset: 2px;
}
/* Quick links */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.quick-links a {
  background: #ffe164;
  color: #19325c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 18px;
  transition: background 0.17s, color 0.17s, transform 0.15s;
}
.quick-links a:hover {
  background: #fa4e6b;
  color: #fff;
  transform: translateY(-1px) scale(1.05);
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(25,50,92,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0 14px 0;
  flex-wrap: wrap;
}
.main-navigation .logo-link {
  margin-right: 36px;
}
.main-navigation a {
  color: #19325c;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 4px 8px;
  border-radius: 8px;
  position: relative;
  transition: background 0.15s, color 0.13s;
  margin-bottom: 6px;
}
.main-navigation a:not(.logo-link):hover {
  background: #29a3a3;
  color: #fff;
}
.main-navigation .cta-btn {
  margin-left: auto;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  padding: 10px 16px;
  background: #43e0fd;
  color: #19325c;
  font-size: 28px;
  border-radius: 11px;
  margin-left: auto;
  z-index: 102;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  background: #19325ced;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(-110vw);
  transition: transform 0.43s cubic-bezier(0.8,0,0.2,1);
  padding: 0 10px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(0.23,1,0.32,1);
}
.mobile-menu-close {
  background: #fa4e6b;
  color: #fff;
  font-size: 2rem;
  padding: 12px 18px;
  align-self: flex-end;
  margin: 26px 12px 12px 0;
  border-radius: 11px;
  box-shadow: 0 2px 8px #0001;
}
.mobile-menu-close:hover {
  background: #ffe164;
  color: #19325c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.29rem;
  padding: 6px 0 6px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  background: none;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover {
  background: #43e0fd;
  color: #19325c;
  transform: translateX(6px);
}

/* --- HERO / CTA SECTIONS --- */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, #e8f9ff 70%, #ffe164 120%);
  min-height: 310px;
  position: relative;
  padding: 40px 0 36px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  padding: 28px 15px;
}
@media (min-width: 769px) {
  .hero .content-wrapper {
    align-items: center;
    padding: 54px 0;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta, .cta-newsletter {
  background: linear-gradient(95deg, #43e0fd 40%, #ffe164 90%);
  color: #21346f;
  text-align: center;
  margin-bottom: 48px;
  padding: 40px 0;
}
.cta .cta-btn, .cta-newsletter .cta-btn {
  margin: 22px auto 0 auto;
}

/* --- FEATURES SECTIONS --- */
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 18px;
  padding: 0;
  align-items: flex-stretch;
}
.features li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 26px 22px 19px 22px;
  flex: 1 1 225px;
  min-width: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.14s, box-shadow 0.22s;
  position: relative;
}
.features li:hover {
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 22px 0 #29a3a324;
  background: #e8f9ff;
}
.features li img {
  width: 44px; height: 44px; margin-bottom: 7px;
  filter: drop-shadow(0px 3px 6px #43e0fd22);
  animation: playful-icon-bounce 1.85s infinite linear;
}
@keyframes playful-icon-bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-7px) rotate(-7deg); }
  50% { transform: translateY(0); }
  75% { transform: translateY(5px) rotate(5deg); }
}
.features li h3 {
  font-size: 1.12rem;
  color: #29a3a3;
}

/* --- SERVICES / OFFER CARDS --- */
.services ul, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
  list-style: none;
  padding: 0;
}
.services li, .service-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 22px 20px 17px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.15s, transform 0.14s;
  margin-bottom: 20px;
}
.services li:hover, .service-card:hover {
  transform: scale(1.035) translateY(-8px) rotate(0.7deg);
  box-shadow: 0 10px 28px 1px #29a3a32a;
}
.services h3, .service-card h3 {
  color: #43e0fd;
  font-weight: 900;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}
.key-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.key-benefits li {
  background: #e8f9ff;
  border-radius: 13px;
  padding: 9px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
/* FAQ */
.faq dl {
  padding: 10px 0 0 0;
  width: 100%;
}
.faq dt {
  font-weight: bold;
  color: #29a3a3;
  margin-top: 16px;
  margin-bottom: 4px;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 10px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.testimonial-card {
  background: #fffbe7;
  border-left: 7px solid #43e0fd;
  border-radius: 15px;
  box-shadow: 0 2px 11px 0 #ffe1642d;
  padding: 28px 24px 18px 32px;
  min-width: 240px;
  flex: 1 1 270px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  color: #1e2746;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  color: #19325c;
}
.testimonial-card span {
  color: #29a3a3;
  font-size: 0.96rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 #29a3a329;
  transform: rotate(-1deg) scale(1.04);
  border-left-color: #fa4e6b;
  background: #fff7d8;
}

/* --- BLOG LISTS / LEARNING MODULE --- */
.blog-list ul, .learning ul, .resources ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
  padding-left: 0;
}
.blog-list ul li, .learning ul li, .resources ul li {
  background: #fffbf2;
  border-radius: 11px;
  padding: 14px 18px;
  color: #1d255e;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 7px 0 #ffe1642d;
  min-width: 0;
}
.blog-list ul li strong {
  color: #19325c;
}
.blog-list ul li span {
  display: block;
  color: #29a3a3;
  font-size: 0.92rem;
  margin-top: 2px;
}
.categories ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.categories li {
  background: #e8f9ff;
  color: #43e0fd;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.98rem;
}

/* --- ABOUT SECTION / VALUES --- */
.about-section, .brand-values {
  background: #e8f9ff;
  border-radius: 18px;
  padding: 36px 20px;
  margin-bottom: 40px;
}
.brand-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin-top: 12px;
  margin-bottom: 10px;
}
.brand-values li {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.03rem;
  color: #29a3a3;
}

/* --- CONTACT DETAILS SECTION --- */
.contact-details .contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #e8f9ff;
  border-radius: 17px;
  padding: 30px 26px;
  box-shadow: 0 1px 10px 0 #29a3a34c;
  margin-bottom: 18px;
}
.contact-details .contact-info h3 {
  color: #19325c;
  margin-bottom: 2px;
  font-size: 1.09rem;
}
.contact-details .contact-info p {
  color: #222a41;
}
.contact-details .contact-info img {
  display: inline;
  vertical-align: middle;
  width: 1.1em;
  height: 1.1em;
  margin-right: 5px;
}

/* --- BLOG CTA Newsletter --- */
.cta-newsletter {
  background: linear-gradient(100deg, #ffe164 60%, #fa4e6b 140%);
  color: #19325c;
  border-radius: 18px;
  margin-bottom: 40px;
  margin-top: 20px;
}

/* --- FOOTER --- */
footer {
  background: #19325c;
  color: #fff;
  padding: 32px 0 20px 0;
  margin-top: 50px;
  font-size: 1rem;
  position: relative;
  width: 100%;
}
footer .container {
  max-width: 1120px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
.footer-nav a {
  color: #ffe164;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  transition: color 0.13s;
  border-radius: 6px;
  padding: 2px 6px;
}
.footer-nav a:hover {
  color: #fa4e6b;
  background: #fffbe7;
}
footer address {
  color: #fff;
  font-size: 0.95em;
  font-style: normal;
  margin-top: 10px;
  line-height: 1.5;
}
footer address a {
  color: #43e0fd;
}
footer address img {
  vertical-align: middle;
  width: 1.08em;
  height: 1.08em;
  margin-right: 3px;
}

/* --- THANK YOU SPECIAL --- */
.thank-you .cta-btn {
  font-size: 1.2rem;
  margin: 20px auto 0 auto;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 20000;
  background: #1e2746;
  color: #ffe164;
  padding: 18px 16px 18px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1.01rem;
  box-shadow: 0 -3px 20px 0 #19325c44;
  border-radius: 18px 18px 0 0;
  animation: cookie-banner-in 0.33s cubic-bezier(0.25, 0.7, 0.17, 1) 1;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(120%); opacity:0; }
  80% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 20px;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 800;
  margin-left: 6px;
  margin-bottom: 0;
  margin-right: 4px;
  border: none;
  min-width: 125px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 #ffe16455;
  transition: background 0.13s, color 0.11s, transform 0.16s;
}
.cookie-banner .accept {
  background: #2ee5b6;
  color: #19325c;
}
.cookie-banner .accept:hover {
  background: #43e0fd;
  color: #fff;
}
.cookie-banner .reject {
  background: #fa4e6b;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #ffe164;
  color: #19325c;
}
.cookie-banner .settings {
  background: #ffe164;
  color: #19325c;
}
.cookie-banner .settings:hover {
  background: #29a3a3;
  color: #fff;
}
@media (max-width: 600px){
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px 16px 0 0;
    padding: 10px 7px 15px 8px;
    font-size: 0.95rem;
  }
  .cookie-banner button { min-width: 100px; padding: 7px 11px; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(25,50,92,0.78);
  z-index: 25000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s linear 1;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fffbe7;
  border-radius: 18px;
  max-width: 430px;
  box-shadow: 0 7px 36px 0 #fa4e6b24;
  padding: 34px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  color: #19325c;
  animation: scaleIn 0.27s cubic-bezier(.43,1.65,.36,.98) 1;
}
@keyframes scaleIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}
.cookie-modal-dialog h2 {
  font-size: 1.35rem;
  color: #29a3a3;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type=checkbox] {
  accent-color: #29a3a3;
  width: 24px; height: 24px;
  margin: 0 3px 0 0;
  border: none;
  border-radius: 6px;
}
.cookie-category label {
  font-weight: 600;
  color: #19325c;
  font-size: 1.05rem;
}
.cookie-modal-dialog .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal-dialog button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 14px;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 0;
  border: none;
  transition: background 0.13s, color 0.11s, transform 0.16s;
}
.cookie-modal-dialog .close-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fa4e6b;
  color: #fff;
  font-size: 1.5rem;
  padding: 6px 16px;
  border-radius: 11px;
  box-shadow: 0 2px 8px #0001;
}
.cookie-modal-dialog .close-modal:hover {
  background: #ffe164;
  color: #19325c;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .testimonial-list, .features ul, .features ol, .services ul, .service-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer-logo img {
    margin-bottom: 0;
    height: 38px;
  }
  .content-wrapper, .container, footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 4px;
    text-align: left;
  }
  .hero {
    padding: 16px 0 16px 0;
    min-height: 185px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
    padding: 23px 4px;
    max-width: 96vw;
  }
  .cta, .cta-newsletter {
    padding: 28px 5px;
    border-radius: 16px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .features ul, .features ol, .services ul, .service-list {
    flex-direction: column;
    gap: 13px;
    min-width: 0;
  }
  .brand-values ul, .key-benefits ul, .categories ul {
    flex-direction: column;
    gap: 7px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
  .blog-list ul li, .resources ul li, .learning ul li {
    font-size: 0.98rem;
    padding: 9px 7px;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 2vw; }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1rem; }
  .cta-btn, .cta-btn-secondary { padding: 10px 11px; font-size: 0.97rem; }
  .cookie-modal-dialog { padding: 18px 7px 14px 8px; min-width: 0; }
}

/* Animate cta buttons in playful spring style */
.cta-btn, .cta-btn-secondary {
  animation: playful-spring-btn 2.3s infinite cubic-bezier(0.67,0,0.23,1.51);
}
@keyframes playful-spring-btn {
  0%, 100% { transform: scale(1.03) rotate(0deg); }
  20% { transform: scale(1.07) rotate(-2.2deg); }
  35% { transform: scale(0.96) rotate(3.5deg); }
  60% { transform: scale(1) rotate(-2deg); }
}

/* --- ACCESSIBILITY --- */
[tabindex]:focus {
  outline: 2px solid #43e0fd;
  outline-offset: 2px;
}

/* --- PRINT MINIMAL --- */
@media print {
  .hero, .features, .cta, .cta-newsletter, .main-navigation, .mobile-menu, .footer-nav, .cta-btn, .cta-btn-secondary, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body { color: #000; background: #fff; font-size: 12pt; }
}
