/* CSS RESET & BASE TYPOGRAPHY ---------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #202B42;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  color: #202B42;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style-type: none;
}
:focus {
  outline: 2px solid #53C6B2;
  outline-offset: 2px;
}

/* BRAND TYPOGRAPHY ---------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #202B42;
  letter-spacing: -0.015em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #202B42;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #202B42;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #202B42;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* SPACING & CONTAINER ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}
.text-section {
  margin-bottom: 24px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(32,43,66,0.05);
}
@media (max-width: 900px) {
  .section,
  section {
    padding: 32px 8px;
  }
}
@media (max-width: 600px) {
  .section,
  section {
    padding: 20px 5px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
}

/* ELEGANT MONOCHROME PALLETE --------------------------------------------- */
body {
  background: #F4F7FA;
  color: #202B42;
}

header {
  position: relative;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,43,66,0.06);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a[aria-current="page"] {
  color: #202B42;
  border-bottom: 2px solid #202B42;
  background: none;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: #202B42;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(32,43,66,0.07);
}
.button-primary:hover, .button-primary:focus {
  background: #303949;
  color: #fff;
  box-shadow: 0 8px 28px rgba(32,43,66,0.12);
  transform: translateY(-2px) scale(1.02);
}

/* MOBILE NAVIGATION ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #202B42;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1201;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #53C6B2;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #202B42;
  transition: transform 0.4s cubic-bezier(0.6,0.03,0.25,1.15);
  transform: translateX(100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 6px 36px 0 rgba(32,43,66,0.16);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #53C6B2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #53C6B2;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  .button-primary {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO & CTA ------------------------------------------------------ */
.hero {
  background: #202B42;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  min-height: 340px;
  box-shadow: 0 8px 32px 0 rgba(32,43,66,0.17);
}
.hero .container {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  padding: 70px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.hero p {
  color: #F4F7FA;
  font-size: 1.19rem;
  margin-bottom: 0;
}
.hero .button-primary {
  background: #53C6B2;
  color: #202B42;
  box-shadow: 0 4px 24px rgba(83, 198, 178, 0.18);
}
.hero .button-primary:hover {
  background: #35a297;
  color: #f4f7fa;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 14px 14px;
  }
  .hero .container {
    min-height: 180px;
  }
  .hero .content-wrapper {
    padding: 44px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* FLEXBOX LAYOUT UTILITIES ----------------------------------------------- */
.card-container,
.card-grid,
.feature-grid,
.content-grid,
.categories-overview,
.project-list,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 100%;
  position: relative;
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-grid,
  .card-container,
  .card-grid,
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* FEATURE, SERVICE, CARD, SECTION ----------------------------------------- */
.features {
  background: #fff;
}
.features .content-wrapper {
  padding-top: 10px;
}
.feature-grid {
  margin-top: 24px;
  width: 100%;
  gap: 32px;
}
.feature-grid li {
  background: #F4F7FA;
  flex: 1 1 230px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(32,43,66,0.04);
  padding: 32px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 220px;
  transition: box-shadow 0.18s, background 0.2s, transform 0.18s;
}
.feature-grid li:hover,
 .feature-grid li:focus-within {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(32,43,66,0.13);
  transform: translateY(-4px) scale(1.01);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 15px;
}

.service-list {
  gap: 32px;
  margin-bottom: 18px;
}
.service-list li {
  flex: 1 1 235px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 28px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(32,43,66,0.045);
  transition: box-shadow 0.16s, background 0.19s, transform 0.19s;
}
.service-list li:hover {
  background: #F4F7FA;
  box-shadow: 0 7px 22px 0 rgba(32,43,66,0.09);
  transform: translateY(-3px) scale(1.013);
}
.service-list .price {
  color: #202B42;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #f3f3f6;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 1rem;
  margin-top: 18px;
  align-self: flex-end;
}

.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(32,43,66,0.05);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.categories-overview {
  padding: 12px 0;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.categories-overview li {
  padding: 6px 22px;
  background: #EDEDED;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #292929;
  transition: background 0.15s, color 0.15s;
}
.categories-overview li:hover {
  background: #202B42;
  color: #fff;
}

/* TESTIMONIALS ------------------------------------------------------------ */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(32,43,66,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-left: 5px solid #53C6B2;
  min-width: 220px;
  max-width: 600px;
  color: #202B42;
  font-size: 1.06rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #202B42;
  font-size: 1.13rem;
  line-height: 1.57;
  font-weight: 450;
}
.testimonial-card span {
  margin-top: 5px;
  color: #191d28;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 40px rgba(83, 198, 178, 0.11);
  border-left: 8px solid #35a297;
  transform: translateY(-2px) scale(1.01);
}

/* ATTENTION BOXES (e.g., for contact page) --------------------------------- */
.attention {
  background: #202B42;
  color: #fff;
  border-radius: 10px;
  padding: 22px 18px 14px 18px;
  margin-top: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 18px rgba(32,43,66,0.12);
  font-size: 1.08rem;
  font-weight: 500;
  border-left: 6px solid #53C6B2;
}

/* SPECIAL CTA ------------------------------------------------------------- */
.final-cta, .cta-individual, .cta-transform, .cta-join, .thank-you {
  background: #202B42;
  color: #fff;
  border-radius: 18px;
  padding: 48px 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 24px 0 rgba(32,43,66,0.22);
}
.final-cta h2, .cta-individual h2, .cta-transform h2, .cta-join h2, .thank-you h1 {
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p, .cta-individual p, .cta-transform p, .cta-join p, .thank-you p {
  color: #f4f7fa;
}
.final-cta .button-primary, .cta-individual .button-primary, .cta-transform .button-primary,
.cta-join .button-primary, .thank-you .button-primary {
  background: #53C6B2;
  color: #202B42;
}
.final-cta .button-primary:hover, .cta-individual .button-primary:hover, .cta-transform .button-primary:hover,
.cta-join .button-primary:hover, .thank-you .button-primary:hover {
  background: #35a297;
  color: #fff;
}
@media (max-width: 768px) {
  .final-cta, .cta-individual, .cta-transform, .cta-join, .thank-you {
    padding: 28px 9px;
    border-radius: 12px;
  }
}

/* PRICING TABLES ---------------------------------------------------------- */
.pricing-table ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-table ul li {
  background: #fff;
  border-radius: 7px;
  padding: 14px 18px;
  margin-bottom: 4px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #202B42;
  box-shadow: 0 1px 8px 0 rgba(32,43,66,0.04);
}

/* BLOG ------------------------------------------------------------------- */
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 44px;
  padding-left: 0;
}
.blog-list ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(32,43,66,0.06);
  padding: 28px 19px 18px 19px;
  transition: box-shadow 0.13s, background 0.14s, transform 0.14s;
}
.blog-list ul li:hover {
  background: #FAFAFC;
  box-shadow: 0 7px 22px 0 rgba(32,43,66,0.08);
  transform: translateY(-2px) scale(1.012);
}

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: #202B42;
  color: #fff;
  padding: 40px 0 20px 0;
  font-size: 1rem;
  position: relative;
}
footer .container {
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-direction: row;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #53C6B2;
}
footer img {
  height: 34px;
  width: auto;
}
footer .contact-info {
  font-size: 0.95rem;
  color: #AEC3DF;
  letter-spacing: 0.01em;
  margin-top: 4px;
  flex: 1 1 100%;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  footer nav {
    gap: 13px;
    margin-bottom: 4px;
  }
  footer .contact-info {
    order: 3;
    margin-top: 10px;
  }
}

/* GENERIC TABLES ---------------------------------------------------------- */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: none;
  text-align: left;
  padding: 12px 8px;
  font-size: 1rem;
}
th {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #202B42;
}

/* ADDRESS ELEMENT --------------------------------------------------------- */
address {
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: #202B42;
  background: #f4f7fa;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 12px 0 12px 0;
}

/* RESPONSIVE MEDIA QUERIES ----------------------------------------------- */
@media (max-width: 900px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.37rem;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.47rem;
  }
  h2, .h2 {
    font-size: 1.13rem;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .feature-grid li, .service-list li, .card {
    padding: 19px 10px 14px 10px;
    min-width: unset;
  }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.13rem; }
  h2, .h2 { font-size: 1rem; }
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
}

/* BUTTONS AND LINK MICROINTERACTIONS ------------------------------------ */
.button-primary,
button.button-primary {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.19s;
}
.button-primary:active {
  background: #202B42;
  color: #fff;
  transform: scale(0.97);
}

/* FORMS (if forms are present) -------------------------------------------- */
input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #A2A9B3;
  color: #282828;
  padding: 9px 16px;
  border-radius: 7px;
  margin-bottom: 15px;
  width: 100%;
  transition: border-color 0.18s;
}
input:focus, textarea:focus {
  border-color: #53C6B2;
}

/* COOKIE CONSENT BANNER --------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12350;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background: #202B42;
  color: #fff;
  padding: 20px 12px;
  box-shadow: 0 -2px 18px rgba(32,43,66,0.14);
  gap: 24px;
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(0.8,0.02,0.25,1.23);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(180%);
}
.cookie-consent-banner__message {
  flex: 2 1 250px;
  margin-right: 16px;
}
.cookie-consent-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner__actions .button-primary,
.cookie-consent-banner__actions .button-secondary {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
}
.button-secondary {
  background: #fff;
  color: #202B42;
  border: 1px solid #C5CFDE;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.13s, color 0.13s, border 0.17s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #53C6B2;
  color: #fff;
  border-color: #53c6b2;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 15px 7px;
  }
  .cookie-consent-banner__actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: stretch;
  }
}

/* COOKIE MODAL ------------------------------------------------------------ */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 12600;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(32,43,66,0.62);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__dialog {
  background: #fff;
  color: #202B42;
  border-radius: 18px;
  box-shadow: 0 9px 44px rgba(32,43,66,0.29);
  padding: 38px 26px 26px 26px;
  min-width: 320px;
  max-width: 94vw;
  animation: popIn 0.31s cubic-bezier(0.6,0.03,0.25,1.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #202B42;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 1;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #53C6B2;
}
.cookie-modal__title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal__section {
  margin-bottom: 10px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 9px;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: #53C6B2;
  width: 20px;
  height: 20px;
}
.cookie-modal__category label {
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal__category--essential label {
  color: #202B42;
  opacity: 0.8;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .cookie-modal__dialog {
    min-width: 98vw;
    padding: 20px 6px 20px 6px;
    border-radius: 12px;
    font-size: 1rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.94) translateY(26px); }
  65% { opacity: .90; transform: scale(1.01) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* MISC VFLEX SPACING ------------------------------------------------------ */
main > section + section,
main > .section + .section,
main > section + .section {
  margin-top: 14px;
}

/* LIST STYLING FOR ELEGANCE ----------------------------------------------- */
ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #202B42;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: baseline;
}
ol li {
  list-style-type: decimal;
}

/* LISTS OVERRIDE FOR FEATURE CARDS ETC ----------------------------------- */
.feature-grid ul, .feature-grid ol, .feature-grid li,
.service-list ul, .service-list ol, .service-list li,
.project-list {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
.feature-grid li::before,
.service-list li::before,
.project-list li::before {
  display: none !important;
  content: none !important;
}

/* PROJECT LIST (on reference page) ---------------------------------------- */
.project-list {
  gap: 24px;
  flex-direction: column;
  margin-bottom: 28px;
}
.project-list li {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(32,43,66,0.04);
  font-size: 1.06rem;
  color: #202B42;
}

/* SCROLLBAR FOR MODALS FOR DESKTOP ---------------------------------------- */
@media (min-width: 1200px) {
  ::-webkit-scrollbar {
    width: 9px;
    background: #ececec;
  }
  ::-webkit-scrollbar-thumb {
    background: #bbcce4;
    border-radius: 10px;
  }
}

/* SELECTION HIGHLIGHT ----------------------------------------------------- */
::selection {
  background: #53C6B2;
  color: #fff;
}

/* VISUALLY-HIDDEN FOR ACCESSIBILITY --------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* MONOCHROME DRAMATIC CARD SHADOWS & SOFT ROUNDS -------------------------- */
.card, .feature-grid li, .service-list li, .testimonial-card {
  border-radius: 13px;
  box-shadow: 0 2px 16px rgba(32,43,66,0.05);
}

/* TRANSITION FOR MAIN INTERACTIVE ELEMENTS -------------------------------- */
.card, .feature-grid li, .service-list li, .testimonial-card, .categories-overview li {
  transition: box-shadow 0.19s, background 0.14s, color 0.16s, transform 0.17s;
}

/* DISABLE GRID AND COLUMNS COMPLETELY ------------------------------------- */
[class*="grid"],
[class*="col"],
[class*="column"] {
  /* Flex layouts are required, so grid/columns are not used */
}

