/* RESET & BASE =================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #202647;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
strong, b {
  font-weight: 700;
}
a {
  color: #202647;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.6,-0.28,.74,.05);
}
:focus {
  outline: 2px solid #6AC25D;
  outline-offset: 2px;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
  width: 10px;
  background: #F6F7F9;
}
body::-webkit-scrollbar-thumb {
  background: #6AC25D;
  border-radius: 8px;
}

/* BRAND COLORS / FONTS ============================================== */
:root {
  --color-primary: #202647;
  --color-secondary: #6AC25D;
  --color-accent: #F6F7F9;
  --color-dark: #202647;
  --color-bg-1: #fff;
  --color-bg-2: #F6F7F9;
  --color-pink: #FF7B89;
  --color-yellow: #FFFC77;
  --color-cyan: #69CDF6;
  --color-orange: #FFB665;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Comic Sans MS', 'Arial', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* CONTAINERS AND UTILITY ============================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-2);
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(32,38,71,.07);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* TYPOGRAPHY ======================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
  text-shadow: 1px 1px 0 #fff, 0 2px 8px rgba(32,38,71,.07);
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 0.4em;
  color: var(--color-secondary);
  text-shadow: 2px 2px 0 var(--color-pink), 0 4px 32px rgba(106,194,93,0.11);
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.2em;
}
h3 {
  font-size: 1.4rem;
  color: var(--color-pink);
}
h4 {
  font-size: 1.15rem;
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
p {
  margin-bottom: 0.7em;
}
ul, ol {
  margin-left: 1.5em;
  padding-bottom: 0.7em;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* CARDS & FLEX GRIDS ================================================ */
.card-container, .feature-grid, .service-cards-home, .service-list, .case-studies, .blog-featured-posts, .blog-post-previews, .team-bios, .fact-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .service-item, .feature-block, .case-study-preview, .team-member, .blog-post-featured, .blog-post-preview, .testimonial-card, .fact-counter {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(106,194,93,.08);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s cubic-bezier(.6,-0.28,.74,.05), transform 0.17s cubic-bezier(.6,-0.28,.74,.05);
  z-index: 1;
}
.card:hover, .service-card:hover, .feature-block:hover, .case-study-preview:hover, .team-member:hover, .blog-post-preview:hover {
  transform: translateY(-3px) scale(1.025) rotate(-1.5deg);
  box-shadow: 0 8px 48px 0 rgba(255,123,137,0.13), 0 2px 8px rgba(32,38,71,0.07);
}
.feature-block, .service-card, .team-member, .case-study-preview {
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.fact-counter {
  background: var(--color-yellow);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 16px;
  padding: 20px 18px;
  min-width: 130px;
  text-align: center;
  margin: 0 4px 16px 0;
  box-shadow: 0 2px 16px 0 rgba(255,251,120,0.09);
}

@media (max-width: 768px) {
  .card-container, .feature-grid, .service-cards-home, .service-list, .case-studies, .blog-featured-posts, .blog-post-previews, .team-bios, .fact-counters {
    gap: 13px;
    flex-direction: column;
  }
  .feature-block, .service-card, .case-study-preview, .blog-post-featured, .team-member, .blog-post-preview, .fact-counter {
    min-width: 0;
    width: 100%;
  }
}

/* SPECIAL FLEX LAYOUTS ============================================= */
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 18px 18px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(106,194,93,.13);
  min-width: 220px;
  color: #202647;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  font-family: var(--font-display);
  color: #202647;
}
.testimonial-author {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-top: 0.6em;
  font-family: var(--font-display);
}
.testimonials .testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING RULES FOR CARDS ========================================== */
.card, .service-card, .feature-block, .team-member, .case-study-preview, .testimonial-card, .blog-post-featured, .blog-post-preview {
  margin-bottom: 20px;
}

/* BUTTONS & CTAS =================================================== */
.cta-button {
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  border: none;
  border-radius: 22px 70px 41px 80px/31px 41px 80px 22px;
  padding: 13px 38px 13px 34px;
  box-shadow: 0 2px 22px 0 rgba(255,123,137,.17), 0 1px 3px 0 rgba(32,38,71,0.045);
  cursor: pointer;
  margin: 14px 0 0 0;
  display: inline-block;
  min-width: 145px;
  transition: background 0.19s, box-shadow 0.17s, transform .13s;
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 8px 44px 0 rgba(106,194,93,0.17), 0 2px 10px rgba(255,123,137,0.06);
}

/* HEADER & NAVIGATION ============================================== */
header {
  background: var(--color-bg-1);
  width: 100%;
  box-shadow: 0 1px 20px 0 rgba(32,38,71,0.047);
  position: sticky;
  top: 0;
  z-index: 1003;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  padding: 7px 8px 7px 8px;
  border-radius: 16px;
  transition: background .15s, color .13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-cyan);
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 960px) {
  .main-nav {
    gap: 13px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-right: 16px;
  }
}

/* MOBILE MENU ====================================================== */
.mobile-menu-toggle {
  background: var(--color-pink);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, transform .1s;
  margin-left: 7px;
  cursor: pointer;
  z-index: 1021;
  box-shadow: 0 2px 20px 0 rgba(255,123,137,.13);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: scale(1.11) rotate(-9deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: var(--color-bg-1);
  box-shadow: 0 4px 80px 0 rgba(32,38,71,0.17);
  z-index: 2000;
  transform: translateX(-101vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.36s cubic-bezier(.79,.14,.15,.86), opacity 0.25s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: var(--color-pink);
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 16px 20px 8px 0;
  cursor: pointer;
  transition: color 0.13s, transform 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
  transform: scale(1.2) rotate(17deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding: 36px 36px 24px 36px;
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: 800;
}
.mobile-nav a {
  padding: 13px 0 13px 0;
  color: var(--color-primary);
  border-radius: 15px;
  background: transparent;
  transition: background .14s, color .12s, transform .12s;
  margin-right: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-cyan);
  color: var(--color-pink);
  transform: translateX(6px);
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* HERO & FEATURE SECTIONS ========================================== */
.hero {
  background: linear-gradient(122deg, var(--color-yellow) 40%, var(--color-cyan) 92%);
  min-height: 380px;
  padding-top: 48px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  border-radius: 0 0 36px 36px;
  animation: swingIn 0.6s cubic-bezier(.33,1.25,.67,1) 1;
}
@keyframes swingIn {
  0% { opacity: 0; transform: translateY(-60px) rotate(-5deg); }
  80% { opacity: .85; transform: translateY(12px) rotate(2deg); }
  100% { opacity: 1; transform: none; }
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 27px;
    padding-bottom: 18px;
    border-radius: 0 0 16px 16px;
    min-height: 180px;
  }
}

.features {
  background: var(--color-bg-2);
}
.service-cards-home {
  gap: 24px;
}
.services-home a {
  font-weight: 700;
  color: var(--color-pink);
  margin-top: 12px;
  display: inline-block;
  font-family: var(--font-display);
  transition: color .15s, text-decoration .12s;
}
.services-home a:hover { color: var(--color-secondary); text-decoration: underline; }

.cta-project, .cta-contact-short {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  border-radius: 31px;
  box-shadow: 0 4px 32px 0 rgba(106,194,93,.12);
}
.cta-project h2, .cta-contact-short h2 {
  color: #fff;
  text-shadow: 1px 3px 0 rgba(255,251,120,.19);
}
.cta-contact-short p, .cta-project p {
  color: #fff;
}

/* TEAM, FACTS, CLIENTS, PORTFOLIO ================================== */
.team-bios {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.team-member h3 { color: var(--color-secondary); font-size: 1.2rem; margin-bottom: 0.1em; }
.team-member p { font-size: 0.99rem; }
.client-statistics ul {
  list-style: disc inside;
  color: var(--color-primary);
}

/* BLOG SECTIONS ==================================================== */
.blog-featured-posts, .blog-post-previews {
  gap: 20px;
  flex-wrap: wrap;
}
.blog-post-featured, .blog-post-preview {
  background: var(--color-cyan);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,140,247,0.07);
  color: var(--color-primary);
  padding: 20px 20px;
  min-width: 180px;
}
.blog-categories {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.blog-categories ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-categories li {
  background: var(--color-yellow);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 5px 12px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* FAQ ============================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.faq-item {
  background: var(--color-cyan);
  border-radius: 13px;
  box-shadow: 0 2px 15px 0 rgba(33,140,247,.07);
  padding: 14px 18px;
}
.faq-item h3 {
  margin-bottom: 6px;
  color: var(--color-secondary);
}

/* FOOTER ========================================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 32px;
  padding-bottom: 20px;
  margin-top: 40px;
  border-radius: 48px 48px 0 0;
  font-family: var(--font-body);
  box-shadow: 0 -2px 33px 0 rgba(11, 52, 98, 0.06);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-cyan);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 2px;
}
.contact-item a {
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-weight: 700;
}
.footer-copyright {
  font-size: 0.97rem;
  color: #fff;
  margin-top: 13px;
  opacity: 0.85;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  footer {
    border-radius: 19px 19px 0 0;
    padding-top: 21px;
  }
}

/* CONTACT & FORMS ================================================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 18px;
}
.contact-form-section ul {
  padding-bottom: 10px;
}
.contact-form-section ul li {
  font-family: var(--font-display);
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 9px;
}
.company-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* THANK YOU SECTION =============================================== */
.thank-you-section {
  background: var(--color-cyan);
  border-radius: 32px;
  min-height: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px 0 rgba(33,140,247,0.13);
  padding: 60px 0;
}
.thank-you-section h1 { color: var(--color-pink); }
.thank-you-section p { color: var(--color-primary); }

/* PORTFOLIO SECTIONS ============================================== */
.case-studies {
  gap: 24px;
}
.case-study-preview h2 {
  color: var(--color-pink);
  font-size: 1.25rem;
}

/* PRIVACY / RODO / COOKIES / TERMS ================================ */
.privacy-policy-section, .rodo-section, .cookies-policy-section, .terms-section {
  background: var(--color-bg-2);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(32,38,71,.06);
  padding: 40px 20px;
}
.privacy-policy-section h1, .rodo-section h1, .cookies-policy-section h1, .terms-section h1 {
  color: var(--color-pink);
}

/* PROCESS STEPS =================================================== */
.process-stepper {
  background: var(--color-yellow);
  border-radius: 15px;
  padding: 20px 18px;
  box-shadow: 0 2px 20px 0 rgba(255,251,120,0.11);
  margin-top: 14px;
  margin-bottom: 14px;
}
.process-stepper ol {
  padding-left: 24px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.process-steps ul {
  list-style: decimal inside;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  gap: 6px;
}

/* ANIMATIONS / MICRO-INTERACTIONS ================================ */
.card, .service-card, .feature-block, .case-study-preview, .team-member, .blog-post-preview, .testimonial-card {
  animation: playfulPopIn 0.34s cubic-bezier(.77,1.3,.26,1) backwards;
}
@keyframes playfulPopIn {
  from { opacity: 0; transform: scale(0.9) rotate(-5deg); }
  70% { opacity: .8; transform: scale(1.03) rotate(1deg); }
  to { opacity: 1; transform: none; }
}

.cta-button::after {
  content: '➔';
  margin-left: 10px;
  color: #fff;
  opacity: 0.6;
  font-size: 1.1em;
  vertical-align: baseline;
  transition: margin-left 0.13s cubic-bezier(.7,.23,.23,1);
}
.cta-button:hover::after {
  margin-left: 20px;
  color: var(--color-primary);
}

/* COOKIE CONSENT BANNER ========================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right:0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -1px 22px 0 rgba(32,38,71,.14);
  border-top: 5px solid var(--color-secondary);
  z-index: 4201;
  padding: 26px 16px 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  font-family: var(--font-body);
  color: #202647;
  animation: cookieShowup 0.55s cubic-bezier(.19,.82,.61,1) 1;
}
@keyframes cookieShowup {
  from { opacity: 0; transform: translateY(80px) scale(1.02); }
  70% { opacity: .7; }
  to { opacity: 1; transform: none;  }
}
.cookie-consent-banner .cookie-consent-text {
  flex: 1 1 150px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-right: 15px;
}
.cookie-consent-btn {
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-right: 9px;
  border: none;
  border-radius: 17px;
  padding: 7px 23px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  min-width: 110px;
  margin-bottom: 0;
  box-shadow: 0 1px 12px 0 rgba(255,123,137,0.09);
}
.cookie-consent-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-consent-btn.settings {
  background: var(--color-cyan);
  color: var(--color-primary);
}
.cookie-consent-btn.reject {
  background: var(--color-pink);
  color: #fff;
}
.cookie-consent-btn:focus,
.cookie-consent-btn:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 7px 14px 7px;
  }
  .cookie-consent-banner .cookie-consent-text { margin: 0 0 11px 0; }
  .cookie-consent-btn { margin-right: 0; width: 100%; margin-bottom: 7px; }
}

/* COOKIE MODAL ==================================================== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,38,71,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4522;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s, visibility 0.2s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 21px;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 8px 56px 0 rgba(32,38,71,0.25);
  max-width: 98vw;
  width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cookie-modal-header {
  font-family: var(--font-display);
  font-size: 1.27rem;
  color: var(--color-pink);
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 13px;
  background: var(--color-bg-2);
  box-shadow: 0 2px 10px 0 rgba(106,194,93,0.05);
  border: 1.5px solid var(--color-cyan);
  position: relative;
  outline: none;
  transition: background 0.2s;
}
.cookie-category .cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-category .cookie-toggle:before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 19px; height: 19px;
  position: absolute;
  transition: left 0.21s cubic-bezier(.24,.75,.52,1);
  left: 1px; top: 0.5px;
  box-shadow: 0 1px 5px 0 rgba(32,38,71,0.08);
}
.cookie-category .cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  background: none;
  border: none;
  font-size: 1.82rem;
  color: var(--color-pink);
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-secondary);
}
@media (max-width:550px) {
  .cookie-modal-content {padding: 14px 7px; width: 98vw;}
}

/* MISCELLANEOUS & HELPER CLASSES ================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }
.rounded { border-radius: 15px; }
.bg-accent { background: var(--color-accent); }
.bg-yellow { background: var(--color-yellow); }
.bg-pink { background: var(--color-pink); color: #fff; }
.bg-cyan { background: var(--color-cyan); }
.bg-secondary { background: var(--color-secondary); }

/* PLAYFUL DECORATIONS ============================================= */
.feature-block img, .service-card img, .case-study-preview img, .team-member img, .contact-item img {
  width: 46px;
  background: var(--color-cyan);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 9px;
  box-shadow: 0 2px 12px 0 rgba(33,140,247,0.07);
  transition: transform 0.22s cubic-bezier(.36,1.13,.49,.9);
}
.feature-block:hover img, .service-card:hover img, .team-member:hover img {
  transform: scale(1.12) rotate(-7deg);
}

/* RESPONSIVE ADJUSTMENTS ======================================= */
@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.01rem; }
  .cta-button { padding: 10px 15px 10px 13px; font-size: 0.98rem; min-width: 95px; }
  .section {padding: 14px 3px;}
}

/* Hide redundant elements for accessibility on print */
@media print {
  .main-nav, .footer-nav, .mobile-menu-toggle, .mobile-menu, .cta-button, .cookie-consent-banner, .cookie-modal {
    display: none !important;
  }
  footer, header {
    background: #fff;
    color: #000;
    box-shadow: none;
  }
}
