/* ====================
    CSS RESET & NORMALIZE
==================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  background: #F5F5F5;
  color: #253146;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFB900;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
}
button {
  cursor: pointer;
  background: none;
}

:root {
  --fw-primary: #253146;
  --fw-secondary: #8BA2B0;
  --fw-accent: #F5F5F5;
  --fw-blue: #31b9ff;
  --fw-yellow: #FFB900;
  --fw-coral: #FF6173;
  --fw-green: #71D790;
  --fw-lavender: #A095F1;
  --fw-shadow: rgba(37,49,70,0.14);
}

/* =========================
      TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #253146;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--fw-blue);
  text-shadow: 1px 3px 0 rgba(49,185,255,0.08);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--fw-yellow);
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 10px;
  color: var(--fw-coral);
}
h4 {
  font-size: 1.1rem;
  color: var(--fw-green);
}
p, ul, ol, li, table, blockquote {
  margin-bottom: 14px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: bold;
}
blockquote {
  font-style: italic;
  color: var(--fw-primary);
  border-left: 5px solid var(--fw-yellow);
  background: #fdeab2;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--fw-shadow);
  margin-bottom: 8px;
}

/* Playful stylings on headings */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: 0.5px;
}
h1 {
  animation: bounceInDown 1.1s cubic-bezier(.46,1.48,.36,.88) 0.2s both;
}
@keyframes bounceInDown {
  0% { transform: translateY(-80px); opacity: 0; }
  70% { transform: translateY(20px); opacity: 1; }
  100% { transform: translateY(0); }
}

/* =========================
      LAYOUT BASE CLASSES
========================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 28px var(--fw-shadow);
  padding: 32px 24px;
  transition: transform 0.18s cubic-bezier(.7,.22,.17,.92), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  box-shadow: 0 7px 36px var(--fw-shadow);
  z-index: 2;
}

.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;
  background: #fffbe9;
  box-shadow: 0 4px 18px var(--fw-shadow);
  border-radius: 20px;
  margin-bottom: 22px;
  padding: 20px;
  min-width: 230px;
  max-width: 540px;
  font-size: 1.1rem;
  color: #24190a;
  animation: fadeInUp 1s cubic-bezier(.59,1.44,.27,.98);
  position: relative;
}
.testimonial-card strong {
  color: var(--fw-primary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--fw-shadow);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.16s;
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--fw-yellow);
  box-shadow: 0 2px 12px #f9dfa8aa;
  padding: 8px;
  animation: iconWobble 1.9s infinite cubic-bezier(.47,1.64,.41,.83);
}
@keyframes iconWobble {
  0%{transform: rotate(-7deg);}
  10%{transform: rotate(6deg);}
  20%{transform: rotate(-5deg);}
  30%{transform: rotate(3deg);}
  40%{transform: rotate(0deg);}
  100%{transform: rotate(0deg);}
}
.price {
  color: var(--fw-blue);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
  border-radius: 8px;
  background: #e6f5fd;
  padding: 4px 14px;
  box-shadow: 0 1px 5px #abdffb22;
}

/* ===================
        HEADER
=================== */
header {
  background: #fff;
  box-shadow: 0 3px 12px -5px var(--fw-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
  gap: 24px;
}
.main-nav img {
  height: 48px;
  margin-right: 28px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--fw-primary);
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background .19s, color .17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--fw-yellow);
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 34px;
  font-size: 1.15rem;
  background: var(--fw-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 4px 16px var(--fw-blue), 0 1px 8px #00568925;
  margin-left: 18px;
  letter-spacing: 0.5px;
  transition: background .17s, transform .17s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--fw-coral);
  transform: translateY(-3px) scale(1.05) rotate(-2deg);
}

/* ================================
        MOBILE NAVIGATION
================================ */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  padding: 8px 12px;
  background: var(--fw-yellow);
  border-radius: 12px;
  color: var(--fw-primary);
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 201;
  box-shadow: 0 2px 10px #e8ad0a26;
  transition: background .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--fw-blue);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(247, 246, 242, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.71,.06,.72,.94);
  box-shadow: 0 10px 30px #0002;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 36px 28px 18px 0;
  font-size: 2.3rem;
  color: var(--fw-coral);
  background: #fff;
  border-radius: 24px;
  padding: 4px 14px;
  transition: background .18s, color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--fw-yellow);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  padding: 0 28px;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fw-primary);
  border-radius: 10px;
  padding: 14px 10px;
  margin-bottom: 2px;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
  min-width: 180px;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--fw-blue);
  color: #fff;
}

/* Hide main nav on mobile */
@media (max-width: 900px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 12px 6px;
    min-width: 120px;
  }
  .main-nav img {
    height: 38px;
  }
}

/* ===================
     HERO SECTION
=================== */
.hero {
  background: linear-gradient(105deg, #F5F5F5 60%, #FFB90016 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom-left-radius: 64px 42px;
  border-bottom-right-radius: 72px 48px;
  box-shadow: 0 6px 48px #25314616;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 660px;
  background: rgba(255,255,255,0.97);
  border-radius: 24px 38px 16px 36px;
  box-shadow: 0 2px 18px #FFF6E4cc;
  padding: 32px 28px;
  margin: 0 auto;
  animation: fadeInUp 1.3s cubic-bezier(.55,1.2,.42,.96);
}
.hero p {
  font-size: 1.22rem;
  color: var(--fw-primary);
}

/* ===================
     FEATURES (LEISTUNGEN)
=================== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  flex-direction: column;
  gap: 26px;
}
.feature-grid, .service-list, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item, .service-item, .post-item {
  flex: 1 1 250px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--fw-shadow);
  margin-bottom: 20px;
  padding: 24px 18px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
  cursor: pointer;
}
.feature-item:hover, .service-item:hover, .post-item:hover {
  box-shadow: 0 7px 29px #25314625;
  transform: scale(1.03) rotate(-1.2deg);
  z-index: 2;
}

.post-item h3 {
  color: var(--fw-yellow);
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}

/* ================
  ABOUT/VALUES/TEAM
================== */
.text-section, .skills-overview, .values, .work-culture-statements, .career-opportunities, .value-statements, .impact-statements, .process-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--fw-shadow);
  padding: 28px 18px;
  margin-bottom: 20px;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.value-statements, .impact-statements {
  background: #e6f5fd;
  color: #253146;
  border-left: 5px solid var(--fw-blue);
}

.process-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 12px;
}
.process-icons img {
  width: 36px; height: 36px;
  background: var(--fw-lavender);
  border-radius: 50%;
  box-shadow: 0 2px 10px #a095f128;
  padding: 7px;
}

/* ================
   SERVICES TABLE
================== */
.pricing-table {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 11px #25314615;
  margin-top: 20px;
  width: 100%;
}
.pricing-table thead th {
  background: var(--fw-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  padding: 12px;
}
.pricing-table td {
  padding: 11px 12px;
  color: var(--fw-primary);
}
.pricing-table tr:nth-child(even) {
  background: #e6f5fd;
}
.pricing-table caption {
  caption-side: top;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--fw-coral);
  margin-bottom: 8px;
}

/* ===============
    CTA SECTIONS
=============== */
.cta {
  padding: 40px 0;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #e6f5fd 60%, #FFF6E4 100%);
}
.cta .content-wrapper {
  align-items: center;
  gap: 14px;
  text-align: center;
}
.cta h2 {
  color: var(--fw-coral);
  font-size: 2rem;
}
.cta-btn {
  margin-top: 18px;
  background: var(--fw-yellow);
  color: #fff;
  box-shadow: 0 2px 14px #FFB90036;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--fw-blue);
  color: #fff;
}

/* ===============
        FOOTER
=============== */
footer {
  background: #253146;
  color: #fff;
  padding: 38px 0 9px 0;
  border-top-left-radius: 38px 28px;
  border-top-right-radius: 44px 30px;
  margin-top: 54px;
  box-shadow: 0 -3px 16px #25314613;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  text-decoration: underline dotted;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .14s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--fw-yellow);
}
.contact-info p, .contact-info a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.98;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.social-links a img {
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #fff2;
  padding: 4px;
  transition: transform .15s;
}
.social-links a:hover img {
  transform: scale(1.22) rotate(5deg);
  box-shadow: 0 6px 15px var(--fw-yellow);
}

/* ============
   CONTACT INFO
============ */
.contact-info-section .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
}
.contact-details {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--fw-shadow);
  padding: 28px 18px;
}
.map {
  flex: 2 1 360px;
  background: #e6f5fd;
  border-radius: 12px;
  box-shadow: 0 1px 8px #8BA2B015;
  padding: 20px 16px;
  color: var(--fw-primary);
  min-width: 170px;
  min-height: 84px;
  display: flex;
  align-items: center;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.quick-links a {
  background: var(--fw-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background .14s;
  margin-bottom: 6px;
}
.quick-links a:hover,
.quick-links a:focus {
  background: var(--fw-yellow);
  color: #fff;
}

/* ==============
 LEGAL PAGES
============== */
.legal {
  margin: 40px 0 0 0;
}
.legal .content-wrapper {
  max-width: 900px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px #25314612;
  padding: 38px 22px 35px 22px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.07rem;
}
.legal h2, .legal h3 {
  margin-top: 18px;
}
.legal a {
  color: var(--fw-blue);
  border-bottom: 1.5px solid var(--fw-blue);
  transition: color .14s;
}
.legal a:hover, .legal a:focus {
  color: var(--fw-coral);
  border-bottom-color: var(--fw-coral);
}

/* =======================
    COOKIE CONSENT BANNER
======================= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: #31270b;
  box-shadow: 0 -3px 18px #0002,0 2px 20px #FFB90019 inset;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 16px 25px 16px;
  font-size: 1.02rem;
  border-top-left-radius: 22px 12px;
  border-top-right-radius: 22px 12px;
  opacity: 1;
  transition: opacity .25s, bottom .28s;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -160px;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: var(--fw-yellow);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 22px;
  margin: 0;
  box-shadow: 0 2px 10px #FFB90022;
  transition: background .17s, color .17s;
}
.cookie-btn.accept {
  background: var(--fw-green);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--fw-coral);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--fw-blue);
}
.cookie-btn:hover,
.cookie-btn:focus {
  filter: brightness(1.08) saturate(1.2);
  transform: scale(1.06) rotate(-2deg);
}

/* Cookie modal */
#cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #fff;
  box-shadow: 0 12px 40px #25314645;
  border-radius: 24px;
  z-index: 10000;
  width: 95vw;
  max-width: 440px;
  padding: 36px 25px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s, transform .33s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
#cookie-modal h3 {
  margin-top: 0;
  color: var(--fw-coral);
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-option label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--fw-primary);
  font-weight: 600;
}
.cookie-option input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--fw-blue);
  margin-right: 2px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
#cookie-modal .close-btn {
  background: var(--fw-coral);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 6px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  transition: background .15s;
}
#cookie-modal .close-btn:hover {
  background: var(--fw-yellow);
}

/* ==================
     MEDIA QUERIES
================== */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
  .features .feature-grid, .features .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .post-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .features .content-wrapper {
    gap: 15px;
  }
  .footer-brand {
    margin-bottom: 8px;
  }
  .footer-menu, .social-links, .contact-info {
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .features .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section, .contact-info-section .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .main-nav {
    padding: 14px 0;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cta .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .hero .content-wrapper {
    padding: 24px 10px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2px;
  }
  section, .section {
    padding: 24px 0 22px 0;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .card, .feature-item, .service-item, .text-section, .skills-overview, .values, .contact-details, .legal .content-wrapper {
    padding: 16px 8px;
    border-radius: 10px;
  }
  .footer-brand img {
    height: 30px;
  }
}

/* Extra: Ensure bottom padding for elements above cookie banner */
body {
  padding-bottom: 110px;
}
#cookie-banner {
  font-size: 0.97rem;
}

/* ================
  MICRO-INTERACTIONS
================== */
.card, .feature-item, .service-item, .post-item, .cta-btn, .cookie-btn {
  transition: box-shadow 0.18s cubic-bezier(.4,.63,.51,1.18), transform 0.14s cubic-bezier(.48,1.67,.41,.79), background 0.12s;
}
.card:hover, .feature-item:hover, .service-item:hover, .post-item:hover, .cta-btn:hover, .cookie-btn:hover {
  box-shadow: 0 7px 34px #2531462a;
  transform: scale(1.035) rotate(-1.3deg);
  z-index: 3;
}

/* ================
   UTILITIES & SPACINGS
================== */
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }

/* Hide visually (for accessiblity) */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Miscellaneous
===================== */
::-webkit-scrollbar {
  width: 10px;
  background: #e6f5fd;
}
::-webkit-scrollbar-thumb {
  background: #31b9ff55;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a095f155;
}

/* Animations for Playful, Dynamic Touch ======================= */
.cta-btn, .cookie-btn, .feature-item img, .mobile-menu-toggle, .mobile-menu-close {
  animation-duration: 1.2s;
  animation-fill-mode: backwards;
}
.cta-btn { animation-name: pulseGlow; animation-delay: 0.3s; }
@keyframes pulseGlow {
  0% { box-shadow: 0 2px 15px var(--fw-coral); }
  60% { box-shadow: 0 8px 32px #FFB90044; }
  100% { box-shadow: 0 4px 14px var(--fw-blue); }
}

.service-item, .feature-item, .post-item {
  animation: cardSlideIn 1.15s cubic-bezier(.54,1.77,.49,.73);
}
@keyframes cardSlideIn {
  0% {transform: scale(.87) translateY(25px);opacity: 0;}
  75% {opacity: 1;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}

/* ================
  END OF CSS
================== */