/* RESET & BASE STYLES */
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.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223854;
  background: #F8F8FA;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: #EF4136; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #223854; text-decoration: underline; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
[tabindex] { outline: none; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #223854;
  --secondary: #EF4136;
  --accent: #F8F8FA;
  --yellow: #FFE04D;
  --light-blue: #57C0FF;
  --teal: #2CD8B6;
  --radius: 18px;
  --shadow-card: 0 2px 24px 0 rgba(34,56,84,.08);
  --shadow-pop: 0 6px 28px 0 rgba(34,56,84,.15);
}

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #223854;
  line-height: 1.12;
  margin-bottom: 18px;
  transition: color .23s;
}
h1 {font-size: 2.5rem;}
h2 {font-size: 2rem;}
h3 {font-size: 1.35rem;}
h4 {font-size: 1.2rem;}
p, li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
}
p, li {
  font-size: 1.04rem;
  color: #223854;
}
blockquote {
  font-size: 1.24rem;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #223854;
  margin-bottom: 10px;
  position: relative;
}
cite {
  font-style: normal;
  color: #223854;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 18px 0 rgba(34,56,84,.05);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
  justify-content: space-between;
}
.logo-link {
  display: flex; align-items: center;
  margin-right: 12px;
}
.desktop-menu {
  display: flex;
  gap: 18px;
}
.desktop-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
}
.desktop-menu a:hover, .desktop-menu a.active {
  color: #fff;
  background: var(--secondary);
}
.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  padding: 12px 28px;
  box-shadow: 0 2px 12px 0 rgba(239,65,54,0.12);
  margin-left: 8px;
  cursor: pointer;
  transition: background .16s, transform .15s, box-shadow .18s;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #223854;
  color: #fff;
  transform: translateY(-1px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(34,56,84,.13);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 1px 8px 0 rgba(239,65,54,0.13);
  align-items: center;
  justify-content: center;
  transition: background .2s, box-shadow .2s;
  position: relative;
  z-index: 140;
}
.mobile-menu-toggle:active {background: var(--primary);}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.75,0,.18,1), box-shadow .24s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  box-shadow: var(--shadow-pop);
}
.mobile-menu.open {transform: translateX(0);}
.mobile-menu-close {
  background: var(--secondary);
  color: #fff;
  font-size: 2.3rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 1px 10px 0 rgba(239,65,54,0.13);
  margin: 18px 22px 34px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background .16s;
  z-index: 210;
}
.mobile-menu-close:hover {
  background: var(--primary); color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 0;
  color: var(--primary);
  border-radius: var(--radius);
  transition: background .12s, color .18s;
}
.mobile-nav a:hover {
  color: #fff;
  background: var(--secondary);
  padding-left: 10px;
}

@media (max-width: 1022px) {
  .desktop-menu, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1023px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== LAYOUT SECTIONS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: #fff;
}
.hero-section {
  background: linear-gradient(100deg, var(--yellow) 0%, #fff 80%, var(--light-blue) 100%);
  padding: 40px 0;
  margin-bottom: 40px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  min-height: 200px;
}

.features-section,.about-section,.team-section,.stats-section,.why-choose-us-section {
  background: #fff;
  border-radius: var(--radius);
}

.services-preview, .services-listing, .case-studies, .blog-listing, .contact-section {
  background: var(--accent);
  border-radius: var(--radius);
}

.cta-banner {
  background: linear-gradient(92deg,#F8F8FA 50%,var(--light-blue) 100%);
  margin-bottom: 0;
  padding: 34px 0 40px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(87,192,255, .12);
}
.cta-banner.newsletter {
  background: linear-gradient(90deg,#FFE04D 60%,#57C0FF 100%);
}
.cta-banner .content-wrapper {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

@media (max-width: 900px) {
  .section, .hero-section, .cta-banner {
    padding: 23px 0;
  }
}

/* === CARD & FLEX CONTAINERS === */
.card-container, .services-listing .content-wrapper, .services-preview .content-wrapper, .case-studies .content-wrapper,
.content-grid, .blog-listing .content-wrapper, .team-section .content-wrapper, .stats-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .case-card, .service-card, .blog-post {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  padding: 28px 26px 24px;
  flex: 1 1 340px;
  min-width: 270px;
  transition: box-shadow .2s, transform .20s;
}
.card:hover, .case-card:hover, .service-card:hover, .blog-post:hover {
  box-shadow: 0 8px 24px 0 rgba(34,56,84,.17);
  transform: translateY(-3px) scale(1.01) rotate(-1.5deg);
}
.service-card > img {
  width: 46px; height: 46px; margin-bottom: 10px; filter: drop-shadow(0 4px 14px #FFE04D44);
  animation: playful-bounce 1.4s infinite alternate cubic-bezier(.39,1.51,.78,.4);
}
@keyframes playful-bounce {
  0% {transform: translateY(0) scale(1);}
  100% {transform: translateY(-8px) scale(1.09) rotate(-3deg);}
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFE04D;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(255,224,77,.15);
  min-width: 230px;
  max-width: 390px;
  flex: 1 1 320px;
  border: 2px solid #F8F8FA;
}
.testimonials-section .content-wrapper {
  gap: 32px;
}
.testimonial-card blockquote {
  color: #223854;
  font-weight: 700;
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}
.testimonial-card cite {
  color: #223854;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}

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

.map-placeholder {
  background: #F8F8FA;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 120px;
  flex: 1 1 280px;
}

@media (max-width: 900px) {
  .card, .service-card, .case-card, .blog-post, .testimonial-card {
    min-width: 220px;
    flex: 1 1 100%;
    padding: 18px 12px 14px;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* === UL / OL / LIST STYLES === */
.features-section ul, .about-section ul, .stats-section ul, .why-choose-us-section ul, .team-section ul, .blog-listing ul, .categories-filter ul, .contact-section ul, .legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 8px;
}
.features-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #57C0FF22;
  padding: 12px 18px;
  font-weight: 600;
  color: #223854;
}
.features-section ul li img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.stats-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.stats-section ul li {
  background: #FFE04D44;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  min-width: 170px;
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .stats-section ul {
    flex-direction: column;
    gap: 13px;
  }
  .stats-section ul li {
    min-width: 80px;
    padding: 10px 13px;
    font-size: 1.04rem;
  }
}


/* === BLOG === */
.blog-post {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .22s;
  flex: 1 1 320px;
}
.blog-post h3 a {
  color: #223854;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color .15s;
}
.blog-post h3 a:hover { color: var(--secondary); text-decoration: underline; }
.categories-filter {
  margin: 36px 0 0 0;
  background: #fff;
  padding: 23px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 420px;
}
.categories-filter h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.categories-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.categories-filter li {
  background: #FFE04D;
  color: #223854;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 150px;
  margin-bottom: 4px;
  transition: background .17s;
  cursor: pointer;
}
.categories-filter li:hover {background: #57C0FF; color: #fff;}

/* === FOOTER === */
footer {
  background: #223854;
  color: #fff;
  padding: 34px 0 22px 0;
  margin-top: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #FFE04D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  justify-content: center;
  margin-top: 16px;
}
.footer-info img {
  width: 54px;
  height: 54px;
}
.footer-contact p {
  color: #fff;
  font-size: 1.01rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-contact a {
  color: #57C0FF;
  text-decoration: underline;
}
.footer-contact a:hover {color: #FFE04D;}

@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    gap: 18px;
  }
}

/* === THANK YOU PAGE === */
.thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 60px 0 80px;
}
.thank-you-section h1 {
  color: var(--secondary);
  text-shadow: 0 2px 16px #FFE04D41;
}
@media (max-width: 650px) {
  .thank-you-section .content-wrapper {
    padding: 38px 0 45px;
  }
}

/* === LEGAL SECTIONS === */
.legal-section {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 44px 0;
}
.legal-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.legal-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-section ul li {
  background: #F8F8FA;
  padding: 8px 16px;
  border-radius: var(--radius);
  color: #223854;
  margin-bottom: 9px;
}

/* === ACCESSIBLE FOCUS STATES === */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #FFE04D77;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.cta-button {
  animation: playful-jump 1.9s infinite alternate cubic-bezier(.5,1.6,1,.51);
}
@keyframes playful-jump {
  0% {box-shadow: 0 2px 12px 0 rgba(239,65,54,0.12);}
  50% { box-shadow: 0 9px 25px 0 rgba(239,65,54,0.18); transform: scale(1.04) rotate(-3deg);}
  100% { box-shadow: 0 2px 12px 0 rgba(239,65,54,0.12); transform: scale(1.00) rotate(0deg);}
}

.card, .service-card, .case-card, .testimonial-card {
  transition: box-shadow .19s, transform .20s;
}
.card:hover, .service-card:hover, .case-card:hover, .testimonial-card:hover {
  box-shadow: var(--shadow-pop);
  transform: translateY(-3.5px) scale(1.025) rotate(-2deg);
}

/* === RESPONSIVE FLEX DIRECTION HANDLING === */
@media (max-width: 900px) {
  .content-wrapper, .text-image-section, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* === SPACING & ALIGNMENT (MANDATORY PATTERNS) === */
.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;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  box-shadow: 0 -1px 24px 0 rgba(34,56,84,.12);
  background: #223854;
  color: #fff;
  z-index: 5000;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 20px 26px;
  font-size: 1.0rem;
  gap: 18px;
  animation: slide-cookie .5s cubic-bezier(.51,1.22,.44,1.01);
  flex-wrap: wrap;
}
@keyframes slide-cookie {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .banner-buttons {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  padding: 9px 20px;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0rem;
  margin-right: 0;
  margin-left: 0;
  cursor: pointer;
  transition: background .18s, color .15s, box-shadow .19s;
}
.cookie-banner .accept-btn {
  background: #57C0FF;
  color: #223854;
  margin-right: 8px;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #FFE04D;
  color: #223854;
}
.cookie-banner .reject-btn {
  background: #FFE04D;
  color: #223854;
  margin-right: 8px;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus{
  background: #EF4136;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus{
  background: #223854;
  color: #FFE04D;
  border-color: #FFE04D;
}

@media (max-width:720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 12px 19px 12px;
    font-size: .97rem;
    gap: 11px;
  }
  .cookie-banner .banner-buttons{
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner .accept-btn, .cookie-banner .reject-btn, .cookie-banner .settings-btn{
    width: 100%;
    margin-bottom: 7px;
    margin-right: 0;
  }
}

/* Cookie settings MODAL */
.cookie-modal {
  position: fixed;
  z-index: 5100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,56,84,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein .4s cubic-bezier(.55,1,.45,1.04);
}
@keyframes modal-fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  color: #223854;
  border-radius: 22px;
  box-shadow: var(--shadow-pop);
  min-width: 360px;
  max-width: 92vw;
  padding: 38px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 6px;
}
.cookie-modal-close {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #223854;
}
.cookie-modal .toggle {
  width: 50px; height: 28px; border-radius: 999px; background: #F8F8FA;
  display: inline-block;
  position: relative;
}
.cookie-modal .toggle input {display:none;}
.cookie-modal .toggle-slider {
  position: absolute; top: 2px; left: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #57C0FF;
  transition: transform .19s, background .16s;
}
.cookie-modal .toggle input:checked + .toggle-slider {
  transform: translateX(22px);
  background: #EF4136;
}
.cookie-modal .category-desc {font-size: .98em; color: #666; margin-left: 6px;}
.cookie-modal .category-essential label {color:#223854;}
.cookie-modal .category-essential .toggle-slider {background: #FFE04D;}
.cookie-modal .category-essential .toggle {background: #FFE04D33;}
.cookie-modal .category-essential .toggle input:checked + .toggle-slider {background: #FFE04D;}
.cookie-modal .cookie-modal-actions {display:flex; gap:14px; margin-top:17px;}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .modal-accept {
  background: #57C0FF; color: #223854;
}
.cookie-modal .modal-accept:hover {background: #FFE04D; color: #223854;}
.cookie-modal .modal-reject {
  background: #FFE04D; color: #223854;
}
.cookie-modal .modal-reject:hover {background: #EF4136; color: #fff;}

@media (max-width: 540px) {
  .cookie-modal-content {
    min-width: 94vw;
    padding: 18px 10px 13px 10px;
  }
}

/* === SCROLLBAR (Playful) === */
::-webkit-scrollbar {
  width: 12px; background: #FFE04D77;
}
::-webkit-scrollbar-thumb {
  background: #57C0FF;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #EF4136;
}

/* === CUSTOM PLAYFUL DYNAMIC TOUCHES === */
h1, h2, h3 {
  background: linear-gradient(90deg, #223854 60%, #57C0FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section {
  border: 2px dashed #FFE04D44;
  box-shadow: 0 4px 18px 0 rgba(239,65,54,0.04);
}
.hero-section {
  border: 2.5px solid #57C0FF99;
  background-blend-mode: lighten;
  box-shadow: 0 8px 30px 0 rgba(34,56,84,0.07), 0 0 0 10px #FFE04D11;
}
.cta-banner, .cta-banner.newsletter {
  border: 3px dotted #FFE04D44;
}

/* FUN HOVER ICON SWING ON FEATURES */
.features-section ul li img {
  transition: transform .18s;
}
.features-section ul li:hover img {
  transform: rotate(-17deg) scale(1.2) skewY(3deg);
}

/* FUN BUTTON BOUNCE ON HOVER */
.cta-button:active {
  animation: playful-bounce .23s cubic-bezier(.5,1.6,1,.51);
}

/* == Z-INDEX == */
.mobile-menu, .cookie-modal, .cookie-banner {z-index: 10510;}
.mobile-menu-toggle {z-index: 140;}

/* ==== END ==== */
