/* =============================================================
   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.6;
  background: #f5f5f5;
  color: #191919;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
strong {
  font-weight: 700;
}
/* Typography --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #191919;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 18px;
  color: #2b2b2b;
  font-size: 1rem;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
}
blockquote {
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid #22214C;
  font-style: italic;
  color: #2b2b2b;
}
/* Container & Layout ------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 32px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(25,25,25,0.08);
  margin-bottom: 20px;
  border-left: 5px solid #22214C;
  max-width: 480px;
  font-size: 1.1rem;
  color: #111;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* HERO + CTA --------------------------------------------------- */
.hero {
  padding: 80px 0 40px 0;
  background: #fff;
  border-bottom: 1px solid #E3E3E3;
}
.hero h1 {
  color: #22214C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(100,100,100,0.04);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.cta {
  background: #22214C;
  color: #fff;
  border-radius: 16px;
  padding: 48px 0;
  text-align: center;
  margin-bottom: 60px;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 16px;
}
/* BUTTONS ------------------------------------------------------ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  min-width: 160px;
  padding: 11px 32px;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 2px 12px rgba(35,33,76,0.04);
}
.btn-primary {
  background: #22214C;
  color: #fff;
  border: 1.5px solid #22214C;
}
.btn-primary:hover, .btn-primary:focus {
  background: #191838;
  color: #FDBE36;
  border-color: #FDBE36;
  box-shadow: 0 4px 26px rgba(35,33,76,0.11);
}
.btn-secondary {
  background: #fff;
  color: #22214C;
  border: 1.5px solid #22214C;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #22214C;
  color: #FDBE36;
  border-color: #FDBE36;
}
/* HEADER & NAV ------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
  height: 58px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  color: #191919;
}
header nav a:hover, header nav a:focus {
  background: #22214C;
  color: #fff;
}
.btn-primary {
  margin-left: auto;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #22214C;
  font-size: 2rem;
  line-height: 1;
  margin-left: 16px;
  cursor: pointer;
  display: none;
  transition: color 0.17s;
  z-index: 1400;
  padding: 4px 8px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #FDBE36;
}
/* MOBILE NAVIGATION -------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: rgba(34,33,76,0.95);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 28px 36px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FDBE36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 36px 52px 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 0;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDBE36;
  color: #22214C;
}
@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  .btn-primary {
    font-size: 0.98rem;
    min-width: 135px;
    padding: 8px 20px;
  }
}
@media (max-width: 880px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* FEATURES & SERVICES ------------------------------------------ */
.features, .services {
  background: #f9f9f9;
  margin-bottom: 60px;
}
.features h2, .services h2 {
  color: #191919;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 22px;
}
.feature-grid > div,
.service-list > div {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 13px rgba(25,25,25,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow 0.18s, border 0.16s;
  border-left: 5px solid #22214C;
}
.feature-grid > div:hover,
.service-list > div:hover {
  box-shadow: 0 6px 26px rgba(34,33,76,0.13);
  border-left: 5px solid #FDBE36;
}
.feature-grid img,
.feature-grid svg,
.service-list img,
.service-list svg {
  width: 44px;
  height: 44px;
  filter: grayscale(100%) brightness(0.4);
}
.feature-grid h3,
.service-list h3 {
  font-size: 1.18rem;
  color: #22214C;
}
.feature-grid p, .service-list p, .service-list span {
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.service-list span {
  font-family: 'Montserrat', sans-serif;
  background: #ececec;
  color: #333;
  padding: 3.5px 10px;
  border-radius: 14px;
  font-size: 0.99rem;
  font-weight: 500;
}
.numbers-statistics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.numbers-statistics p {
  background: #22214C;
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.11rem;
  font-weight: 500;
}
@media (max-width: 780px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
}
/* BLOG & CASE STUDY LISTS -------------------------------------- */
.blog_post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog_post_list article {
  flex: 1 1 290px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(34,33,76,0.07);
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 210px;
  transition: box-shadow 0.18s, border 0.16s;
  border-left: 4px solid #22214C;
}
.blog_post_list article:hover {
  border-left: 4px solid #FDBE36;
  box-shadow: 0 7px 30px rgba(34,33,76,0.13);
}
.blog_post_list h3 {
  font-size: 1.14rem;
  color: #22214C;
  margin-bottom: 12px;
}
.blog_post_list p {
  color: #202020;
  margin-bottom: 13px;
}
.btn-secondary {
  margin-top: auto;
  font-size: 0.94rem;
}
.categories_filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.02rem;
  color: #22214C;
}
.categories_filter a {
  color: #191919;
  font-weight: 500;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.1s, color 0.1s;
}
.categories_filter a:hover,
.categories_filter a:focus {
  background: #22214C;
  color: #fff;
}
.case_study_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.case_study_grid > div {
  flex: 1 1 310px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(34,33,76,0.06);
  padding: 28px 25px 22px 26px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 6px solid #22214C;
  transition: border 0.18s, box-shadow 0.16s;
}
.case_study_grid > div:hover {
  border-left: 6px solid #FDBE36;
  box-shadow: 0 9px 32px rgba(35,33,76,0.15);
}
@media (max-width: 900px) {
  .case_study_grid {
    flex-direction: column;
    gap: 16px;
  }
  .blog_post_list {
    flex-direction: column;
    gap: 16px;
  }
}
/* TESTIMONIALS ------------------------------------------------- */
.testimonials {
  background: #fff;
  padding: 56px 0;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #22214C;
  margin-bottom: 32px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.testimonial-card {
  min-width: 270px;
  max-width: 440px;
  color: #191919;
  box-shadow: 0 2px 13px rgba(34,33,76,0.07);
  background: #fff;
  border-left: 5px solid #22214C;
  transition: border 0.2s, box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px rgba(34,33,76,0.15);
  border-left: 5px solid #FDBE36;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.15rem;
  color: #191919;
}
.testimonial-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  color: #22214C;
  font-weight: 600;
}
@media (max-width: 620px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 80%;
  }
}
/* ABOUT & INFO ------------------------------------------------- */
.about {
  background: #f5f5f5;
  margin-bottom: 60px;
}
.about h2 {
  color: #22214C;
}
.about ul, .about ol {
  margin-bottom: 16px;
  color: #232323;
}
.about li {
  line-height: 1.48;
}
.social_links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social_links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.15);
  transition: filter 0.14s;
}
.social_links a:hover img,
.social_links a:focus img {
  filter: none;
}
/* CONTACT SECTION ----------------------------------------------- */
.contact-details, .company-location {
  background: #fff;
  padding: 18px;
  border-radius: 9px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(34,33,76,0.06);
}
.contact-details strong,
.company-location strong {
  color: #22214C;
}
@media (max-width: 700px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, .cta, .features, .about, .services {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* FOOTER -------------------------------------------------------- */
footer {
  background: #191838;
  color: #fff;
  padding: 30px 0 24px 0;
  border-top: 1.5px solid #22214C;
  font-size: 1rem;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  opacity: 0.87;
  transition: opacity 0.11s, text-decoration 0.11s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.96rem;
  opacity: 0.88;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-contact a {
  color: #FDBE36;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 600px) {
  footer .container {
    align-items: flex-start;
    gap: 14px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
  }
  footer nav {
    gap: 12px;
  }
}
/* COOKIE CONSENT BANNER ----------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #22214C;
  color: #fff;
  padding: 26px 22px;
  font-size: 1.02rem;
  z-index: 1700;
  box-shadow: 0 -3px 25px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.26s cubic-bezier(.76,0,.18,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button,
.cookie-banner .btn {
  padding: 7px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner .accept {
  background: #FDBE36;
  color: #22214C;
  border: 1.5px solid #FDBE36;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #191838;
  color: #FDBE36;
  border: 1.5px solid #FDBE36;
}
.cookie-banner .reject {
  background: #fff;
  color: #191838;
  border: 1.5px solid #22214C;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #22214C;
  color: #FDBE36;
}
.cookie-banner .settings {
  background: transparent;
  color: #FDBE36;
  border: 1.5px solid #FDBE36;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #FDBE36;
  color: #22214C;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 9px;
  }
}
/* COOKIE SETTINGS MODAL ---------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1800;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,33,76,0.7);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #191919;
  border-radius: 16px;
  max-width: 430px;
  width: 91vw;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 7px 46px rgba(25,25,25,0.20);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popInCookie 0.33s cubic-bezier(.76,0,.18,1);
}
@keyframes popInCookie {
  from { transform: scale(0.83); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: #22214C;
  margin-bottom: 16px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22214C;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  color: #FDBE36;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category label {
  flex: 1 1 auto;
  color: #22214C;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
}
.cookie-modal .category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #22214C;
}
.cookie-modal .category .category-desc {
  font-size: 0.97rem;
  color: #555;
  font-weight: 400;
}
.cookie-modal .category.essential label {
  color: #22214C;
}
.cookie-modal .category.essential input[type=checkbox] {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 15px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 7px 19px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid #22214C;
  cursor: pointer;
  background: #fff;
  color: #22214C;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.cookie-modal .cookie-modal-actions .save {
  background: #22214C;
  color: #fff;
  border: 1.5px solid #22214C;
}
.cookie-modal .cookie-modal-actions .save:hover,
.cookie-modal .cookie-modal-actions .save:focus {
  background: #FDBE36;
  color: #22214C;
  border: 1.5px solid #FDBE36;
}
.cookie-modal .cookie-modal-actions .cancel {
  background: #fff;
  color: #22214C;
}
.cookie-modal .cookie-modal-actions .cancel:hover,
.cookie-modal .cookie-modal-actions .cancel:focus {
  background: #22214C;
  color: #FDBE36;
}
/* UTILITY & RESPONSIVE ----------------------------------------- */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero {
    padding: 48px 0 24px 0;
  }
  .cta {
    padding: 32px 0;
  }
  header .container {
    height: 64px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}
/* SPACING FOR CARDS, SECTIONS, ALIGNMENT ----------------------- */
.section,
.features,
.services,
.about,
.testimonials,
.cta {
  margin-bottom: 60px !important;
}
.card, .feature-grid > div, .service-list > div, .case_study_grid > div, .testimonial-card, .blog_post_list article {
  margin-bottom: 20px !important;
}
.card-container, .content-grid, .feature-grid, .service-list, .case_study_grid, .blog_post_list, .testimonials .content-wrapper {
  gap: 20px !important;
}
.text-image-section {
  gap: 30px !important;
  align-items: center !important;
}
.testimonial-card {
  gap: 20px !important;
}
.feature-item {
  gap: 15px !important;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
  }
}
/* MICRO-INTERACTIONS ------------------------------------------- */
.btn-primary, .btn-secondary,
.card, .feature-grid > div, .service-list > div, .blog_post_list article,
.case_study_grid > div, .testimonial-card, .footer-contact a {
  transition: box-shadow 0.16s, border 0.16s, color 0.11s, background 0.19s;
}
.card:focus-within, .feature-grid > div:focus-within, .service-list > div:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 7px 32px rgba(35,33,76,0.17);
}

/* HIDE OUTLINES ON MOUSE, KEEP FOR TAB ACCESSIBILITY */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #FDBE36;
  outline-offset: 1px;
}
