/* === 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F8F7F4;
  color: #193C5A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #193C5A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #4EB5A7;
  outline: none;
}
ul, ol {
  padding-left: 1.4rem;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
strong {
  font-weight: 700;
}
:focus-visible {
  outline: 2px dashed #4EB5A7;
}

/* === ROOT VARIABLES FOR CONSISTENCY === */
:root {
  --brand-primary: #193C5A;
  --brand-secondary: #4EB5A7;
  --brand-accent: #F8F7F4;
  --fun-orange: #FFB444;
  --fun-pink: #F94A73;
  --fun-purple: #8466E2;
  --fun-green: #26D79A;
  --fun-yellow: #FFE054;
  --border-radius: 20px;
  --shadow-card: 0 4px 18px 0 rgba(89, 88, 160, .08), 0 1.5px 4px 0 rgba(0,0,0,.04);
  --transition-main: all 0.24s cubic-bezier(.6,.3,.5,1);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #193C5A;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2.1rem;
  line-height: 1.18;
}
h3 {
  font-size: 1.45rem;
  color: var(--brand-secondary);
  font-weight: 700;
}
h4 {
  font-size: 1.18rem;
}
p, li {
  font-size: 1rem;
  color: #234969;
  margin-bottom: 12px;
}
p.lead {
  font-size: 1.21rem;
  color: #193C5A;
  margin-bottom: 22px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.07rem;
  }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER and NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(73, 138, 181, 0.04);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #234969;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background var(--transition-main), color var(--transition-main);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--fun-yellow);
  color: #193C5A;
}
.btn-primary {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  padding: 11px 27px;
  letter-spacing: 0.03em;
  margin-left: 10px;
  box-shadow: 0 3px 17px 0 rgba(78,181,167,0.10);
  border: 2px solid transparent;
  transition: background var(--transition-main), transform 0.2s, box-shadow 0.18s;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 28px 0 rgba(249,74,115,0.18);
  border: 2px solid var(--fun-yellow);
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 2.1rem;
  margin-left: 16px;
  z-index: 101;
  transition: background var(--transition-main), color var(--transition-main);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--fun-orange);
  color: #193C5A;
}

/* === MOBILE NAV MENU === */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(105%);
  transition: transform 0.33s cubic-bezier(.86,0,.07,1);
  z-index: 1201;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: -3px 0 20px 0 rgba(44, 50, 78, 0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 24px;
  margin-top: 20px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px 0 rgba(25,60,90,0.08);
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--fun-pink);
}
.mobile-nav {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  color: #193C5A;
  font-weight: 700;
  padding: 16px 0 9px 0;
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  width: 100%;
  transition: color var(--transition-main), border-color 0.19s;
}
.mobile-nav a:hover {
  color: var(--fun-purple);
  border-bottom: 2.5px solid var(--brand-secondary);
}

/* HIDE DESKTOP NAV ON MOBILE, SHOW BURGER */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* === MAIN HERO SECTIONS === */
.hero {
  background: linear-gradient(95deg, #F8F7F4 80%, #FFB444 100%);
  min-height: 365px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.85rem;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.hero p {
  color: #234969;
  font-size: 1.22rem;
  margin-bottom: 30px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.hero .btn-primary {
  font-size: 1.13rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 30px 0 15px 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.68rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* === FLEXBOX SPACING AND SECTIONS (MANDATORY PATTERNS) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(249,74,115,0.11), 0 2.5px 8px 0 rgba(78,181,167,0.08);
  transform: translateY(-3px) scale(1.01) rotate(-2deg);
}
.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 {
    flex-direction: column;
    gap: 22px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* === FEATURES & VALUE GRIDS === */
.feature-grid, .industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 30px;
  justify-content: flex-start;
  margin: 22px 0 0 0;
}
.feature-item, .industry-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px 18px 22px;
  min-width: 225px;
  max-width: 310px;
  flex: 1 1 210px;
  transition: box-shadow 0.18s, transform 0.15s;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.feature-item img, .industry-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(2px 2px 2px #F8F7F4);
  transition: transform 0.22s cubic-bezier(.5,1,.3,.9);
}
.feature-item:hover, .industry-item:hover {
  box-shadow: 0 12px 38px 0 rgba(249,74,115,0.10), 0 2.5px 8px 0 rgba(38,215,154,0.08);
  transform: translateY(-2px) rotate(-1.5deg) scale(1.028);
}
.feature-item:hover img, .industry-item:hover img {
  transform: scale(1.18) rotate(-10deg);
}

@media (max-width: 950px) {
  .feature-item, .industry-item {
    min-width: 195px;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .feature-grid, .industry-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .industry-item {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* === SECTION VARIANTS FOR PLAYFUL FEEL === */
.about-highlight, .values, .sector-cases, .case-studies, .blog-overview, .newsletter-signup, .thank-you {
  background: #fffbe7;
  border-radius: 30px;
  box-shadow: 0 3.5px 25px 0 rgba(249,186,68,0.11), 0 0.8px 9px 0 rgba(78,181,167,0.07);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--brand-accent);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(19,60,90,0.07);
  margin-bottom: 50px;
  padding: 35px 0 45px 0;
}
.testimonials h2 {
  margin-bottom: 36px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2.5px 12px 0 rgba(19,60,90,0.08);
  padding: 20px 22px 22px 24px;
  min-width: 250px;
  max-width: 380px;
  flex: 1 1 270px;
  color: #193C5A;
  font-size: 1.13rem;
  margin-bottom: 20px;
  position: relative;
  overflow: visible;
  border-left: 7px solid var(--brand-secondary);
  transition: box-shadow 0.16s, border-color 0.21s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 7px solid var(--fun-orange);
  box-shadow: 0 13px 28px 0 rgba(249,74,115,0.08);
}
.testimonial-card p {
  margin-bottom: 10px;
  color: #234969;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: #6B7491;
}
.testimonial-meta strong {
  color: #193C5A;
}
.client-logos {
  margin-top: 39px;
  display: flex;
  align-items: center;
  gap: 23px;
  opacity: 0.72;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}


/* === CASE STUDIES, BLOG, ETC === */
.case-studies,
.case-study-summaries {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-studies .case-study-snippet,
.case-studies .case-study-summary {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(78,181,167,0.10);
  padding: 18px 23px;
  font-size: 1.09rem;
  color: #234969;
  margin-bottom: 14px;
  transition: box-shadow 0.12s;
}
.case-study-summaries {
  margin-bottom: 18px;
}
.results-highlights ul {
  padding-left: 16px;
  list-style: disc inside;
  font-size: 1.01rem;
}

.blog-overview {
  box-shadow: 0 4.5px 23px 0 rgba(78,181,167,0.10);
}
.category-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 14px;
}
.category-filters button {
  background: var(--fun-yellow);
  border-radius: 12px;
  color: #234969;
  font-size: 1rem;
  font-weight: 900;
  padding: 4px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.category-filters a {
  background: #fff;
  border-radius: 10px;
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 5.5px 16px;
  transition: background 0.13s, color 0.13s;
}
.category-filters a:hover {
  background: var(--brand-secondary);
  color: #fff;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 10px;
}
.blog-post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px 0 rgba(19,60,90,0.09);
  padding: 22px 20px 16px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.blog-post:hover {
  box-shadow: 0 7px 28px 0 rgba(249,74,115,0.09);
  transform: translateY(-2px) scale(1.014) rotate(1deg);
}
.blog-post h3 {
  font-size: 1.21rem;
  color: var(--fun-purple);
  margin-bottom: 5px;
}
.blog-post p {
  margin-bottom: 10px;
}
.blog-post a {
  color: var(--fun-pink);
  font-weight: 700;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === NEWSLETTER TEASER === */
.newsletter-signup {
  margin-bottom: 70px;
}
.newsletter-teaser {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 1.5px 8px 0 rgba(249,186,68,0.16);
  padding: 14px 25px;
  font-size: 1.08rem;
}
.newsletter-teaser span img {
  height: 36px;
  width: 36px;
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(249,186,68,0.092);
  padding: 17px 20px 13px 22px;
  transition: box-shadow 0.18s;
  position: relative;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--fun-green);
  margin-bottom: 7px;
  font-weight: 700;
}
.faq-item p {
  margin-bottom: 0;
}

/* === CONTACT SECTION & FORMS === */
.contact {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 1.5px 9.5px 0 rgba(19,60,90,0.09);
  margin-bottom: 50px;
  padding: 36px 20px 36px 32px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.contact li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
}

/* === CTA & CONTACT TEASERS === */
.contact-teaser, .cta {
  background: linear-gradient(90deg, #FFE054 80%, #F94A73 100%);
  padding: 35px 24px 37px 24px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 55px;
  box-shadow: 0 2px 17px 0 rgba(255,224,84,0.09);
}
.contact-teaser h2, .cta h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.contact-teaser p, .cta p {
  color: #234969;
  font-size: 1.12rem;
}

/* === FOOTER === */
footer {
  background: var(--brand-primary);
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -1.5px 7px 0 rgba(25,60,90,0.072);
  margin-top: 60px;
  padding: 42px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 49px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #FFF;
  margin-bottom: 12px;
  font-size: 1.02rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 5px;
  filter: brightness(2);
}
.footer-social {
  display: flex;
  gap: 17px;
  margin-top: 22px;
}
.footer-social a img {
  height: 32px;
  filter: drop-shadow(0 1px 6px #FFE054);
  transition: transform 0.16s, filter 0.11s;
}
.footer-social a:hover img {
  transform: rotate(-18deg) scale(1.22);
  filter: drop-shadow(0 0 12px #F94A73);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  padding: 4px 0;
  border-bottom: 2px dotted rgba(249,186,68,0.34);
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #FFE054;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* === LEGAL SECTIONS === */
.legal {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 1.5px 7px 0 rgba(19,60,90,0.07);
  margin-bottom: 49px;
  padding: 40px 20px;
}
.legal h2 {
  color: var(--brand-secondary);
  margin-bottom: 17px;
  font-size: 1.18rem;
}
.legal ul, .legal ol {
  margin-bottom: 16px;
}
.legal li,
.legal p {
  margin-bottom: 8px;
  font-size: 1.09rem;
}
.legal a {
  color: var(--fun-pink);
  text-decoration: underline;
  font-weight: 700;
}
.legal a:hover {
  color: var(--fun-green);
}

/* === ANIMATIONS === */
@keyframes playful-bounce {
  0%   { transform: scale(1) rotate(0); }
  44%  { transform: scale(1.045) rotate(-2deg); }
  55%  { transform: scale(1.07) rotate(2deg); }
  68%  { transform: scale(1.04) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}
.playful-bounce {
  animation: playful-bounce 1.85s cubic-bezier(.5,1,.3,.9) infinite;
}
@keyframes fade-slide-in-up {
  from { opacity:0; transform:translateY(44px); } to { opacity:1; transform:translateY(0); }
}
.fade-in-up {
  animation: fade-slide-in-up 0.68s cubic-bezier(.45,.14,.4,1.06) both;
}

/* === PLAYFUL DECORATIVE CIRCLE / RIBBON (OPTIONAL for HEADER) === */
.hero:before {
  content: '';
  position: absolute;
  right: -110px;
  top: -70px;
  width: 210px;
  height: 210px;
  background: var(--fun-green);
  opacity: .23;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
  animation: fade-in-up 1.7s cubic-bezier(.42,.09,.53,1.09);
}

.hero .content-wrapper {
  position: relative;
  z-index: 2;
}

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe7;
  border-top: 3px solid var(--fun-yellow);
  box-shadow: 0 -2px 18px 0 rgba(78,181,167,0.15);
  padding: 23px 14px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  z-index: 9999;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.48s cubic-bezier(.6,.3,.5,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
#cookie-banner p {
  flex: 3 1 330px;
  margin-bottom: 0;
  color: #193C5A;
}
#cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: var(--fun-yellow);
  color: #193C5A;
  border-radius: 14px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 8px 23px;
  border: 2px solid var(--fun-orange);
  margin-right: 0;
  box-shadow: 0 2.5px 7px 0 rgba(249,186,68,0.08);
  transition: background 0.16s, color 0.14s, transform 0.17s;
  cursor: pointer;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.08) rotate(-3deg);
}
.cookie-btn.settings {
  background: var(--fun-green);
  color: #fff;
  border: 2px solid var(--brand-secondary);
  margin-left: 0.5em;
}
.cookie-btn.settings:hover {background: var(--fun-purple); color:#fff;}

@media (max-width: 630px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 21px 10px 18px 10px;
    font-size: 0.95rem;
  }
  #cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* === COOKIE MODAL / PREFERENCES === */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 12000;
  background: #fffbe7;
  border: 3.5px solid var(--fun-yellow);
  border-radius: 30px;
  box-shadow: 0 7px 44px 0 rgba(249,186,68,0.19);
  padding: 39px 31px 31px 31px;
  min-width: 300px;
  max-width: 97vw;
  width: 410px;
  display: none;
  flex-direction: column;
  gap: 25px;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: fade-in-up 0.37s cubic-bezier(.45,.14,.4,1.06);
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal h2 {font-size: 1.28rem; margin-bottom:12px; color: #193C5A;font-family:'Montserrat',Arial,sans-serif;}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 15px;
  padding: 8px 18px;
  box-shadow: 0 1.5px 6px 0 rgba(238,196,26,0.06);
  font-size: 1.05rem;
}
.cookie-category label {
  margin-left: 7px;
  color: #193C5A;
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:500;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E7EAF5;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--fun-green);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(.56,.3,.5,1);
  box-shadow: 0 1px 4px 0 rgba(19,60,90,.13);
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-category.essential .cookie-toggle {
  background: var(--brand-secondary);
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle:before {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(19,60,90,.13);
}
.cookie-category.essential label {
  opacity: 0.55;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
#cookie-modal .modal-actions .cookie-btn {
  min-width: 100px;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 21px;
  background: var(--fun-pink);
  color: #fff;
  border-radius: 13px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 0.5px 2px 0 rgba(249,186,68,0.1);
  transition: background 0.15s;
}
#cookie-modal .modal-close:hover {
  background: var(--fun-purple);
}

@media (max-width: 530px) {
  #cookie-modal {width: 98vw; min-width: unset; max-width: unset; padding: 15vw 3vw;}
}

/* === SECTIONS: VALUES, LISTS, ABOUT === */
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  margin: 20px 0 15px 0;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1.5px 8px 0 rgba(68,89,249,0.04);
  padding: 12px 19px 12px 13px;
  font-size: 1.05rem;
  color: #234969;
  margin-bottom: 7px;
}
.value-list img {
  height: 28px;
  width: 28px;
  margin-right: 7px;
}

/* === THANK YOU SECTION === */
.thank-you {
  padding: 67px 21px 67px 21px;
  min-height: 350px;
  text-align: center;
  background: var(--brand-accent);
  border-radius: 27px;
  box-shadow: 0 2.5px 14px 0 rgba(19,60,90,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}
.thank-you h1 {
  color: var(--fun-green);
  font-size: 2.21rem;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
  .features, .values, .industries, .services, .contact, .process, .case-studies, .faq, .legal, .about-highlight, .contact-teaser, .thank-you, .blog-overview, .newsletter-signup, .sector-cases {
    padding: 27px 8px 20px 8px;
    margin-bottom: 36px;
  }
  .footer-nav, .footer-contact, .footer-social {
    align-items: flex-start;
    text-align: left;
  }
}

/* === PLAYFUL SHADOWS & BORDERS for fun effect === */
.section, .feature-item, .industry-item, .testimonial-card, .faq-item, .card, .value-list li, .case-study-snippet, .case-study-summary, .blog-post {
  box-shadow: 0 2.5px 11px 0 rgba(249,186,68,0.037) !important;
}

/* === MISC INTERACTIVITY & ACCESSIBILITY === */
[tabindex]:focus {
  outline: 2px solid var(--brand-secondary);
}

::-webkit-scrollbar {
  width: 11px;
  background: #E5ECF1;
}
::-webkit-scrollbar-thumb {
  background: var(--fun-yellow);
  border-radius: 7px;
}

/* END OF CSS */
