/* --- CSS RESET & BASE --- */
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 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #12181f;
  color: #F0EFE6;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #429FA3;
  text-decoration: none;
  transition: color .2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F0EFE6;
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F0EFE6;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  background: #191f25;
  border-radius: 12px;
  box-shadow: 0 4px 22px 0 rgba(24,36,51,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section {
  background: #113356;
  border-radius: 12px;
  color: #F0EFE6;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 32px 0 rgba(7,19,31,0.25);
  text-align: center;
}

.hero {
  background: #10151a url('../assets/hero-bg-texture-industrial.png') center/cover no-repeat;
  position: relative;
  min-height: 330px;
  margin-bottom: 60px;
  padding: 40px 0 !important;
  box-shadow: 0 6px 44px 0 rgba(17,51,86,.12);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 660px;
  margin-top: 32px;
  margin-bottom: 32px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .hero .container {
    align-items: flex-start;
  }
  .hero .content-wrapper {
    margin-left: 40px;
  }
}

/* --- HEADER & NAV --- */
header {
  background: #191f25;
  border-bottom: 1px solid #282e35;
  box-shadow: 0 2px 12px rgba(17,51,86,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
header img {
  display: block;
  max-height: 48px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
header nav a {
  color: #F0EFE6;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: border .18s, color .15s;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px #10151a50;
}
header nav a:hover, header nav a:focus {
  color: #429FA3;
  border-bottom: 2px solid #429FA3;
}
.cta-button {
  background: linear-gradient(100deg, #429FA3 70%, #113356 100%);
  color: #F0EFE6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 11px 24px 11px 24px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 1px 12px 0 rgba(66,159,163,0.13);
  margin-left: 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px #11335640;
  transition: background 0.16s, transform 0.16s, box-shadow .19s;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #113356 70%, #429FA3 100%);
  color: #F0EFE6;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 28px 0 rgba(66,159,163,0.18);
}

.cta-button-secondary {
  background: #191f25;
  color: #429FA3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1.5px solid #429FA3;
  cursor: pointer;
  transition: background 0.14s, color 0.18s, border 0.17s;
  margin-top: 14px;
  text-align: center;
}
.cta-button-secondary:hover, .cta-button-secondary:focus {
  background: #429FA3;
  color: #191f25;
  border-color: #F0EFE6;
}

@media (max-width: 968px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  header .container {
    padding-right: 54px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #282e35;
  color: #F0EFE6;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin-left: 15px;
  transition: background 0.15s, box-shadow 0.18s;
  z-index: 200;
  box-shadow: 0 2px 12px 0 #11335635;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #429FA3;
  color: #113356;
}
@media (min-width: 969px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #10151aE0;
  box-shadow: 0 6px 44px 0 #113356BB;
  transform: translateX(-100vw);
  z-index: 800;
  transition: transform 0.35s cubic-bezier(.6,.04,.45,1.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 28px 18px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #282e35;
  color: #F0EFE6;
  border: none;
  border-radius: 7px;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px #11335642;
  transition: background 0.16s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #429FA3;
  color: #113356;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #F0EFE6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  background: none;
  border-radius: 6px;
  padding: 15px 2px 11px 4px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #429FA3;
  color: #113356;
}

@media (min-width: 969px) {
  .mobile-menu {
    display: none !important;
  }
}


/* --- FLEXBOX LAYOUTS & UTILITIES --- */
.feature-grid, .services-grid, .process-steps, .credentials, .testimonial-slider, .testimonial-list, .blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid {
  margin-top: 12px;
}
.feature {
  background: #171e25;
  border-radius: 9px;
  box-shadow: 0 8px 32px 0 #171e2530;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 290px;
  min-width: 220px;
  min-height: 240px;
  margin-bottom: 20px;
  border-left: 5px solid #429FA3;
  transition: box-shadow 0.18s, border-color 0.17s; 
}
.feature:hover,
.feature:focus {
  border-left: 5px solid #F0EFE6;
  box-shadow: 0 10px 44px 0 #429FA342;
}

.service-category {
  background: #171e25;
  border-radius: 9px;
  box-shadow: 0 8px 32px 0 #171e2530;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  border-left: 4px solid #429FA3;
  transition: box-shadow 0.15s, border-color .19s;
}
.service-category:hover {
  border-left: 4px solid #F0EFE6;
  box-shadow: 0 8px 38px 0 #11335644;
}

.process-steps > div,
.credentials > div {
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 350px;
  background: #171e25;
  padding: 23px 18px 18px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 7px 24px #11335619;
}

.card, .blog-post {
  background: #161e25;
  box-shadow: 0 3px 32px #429fa313;
  border-radius: 9px;
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.17s, border-color 0.16s;
  border: 2.5px solid transparent;
}
.card:hover, .blog-post:hover {
  border-color: #429FA3;
  box-shadow: 0 8px 38px 0 #429FA340;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F0EFE6;
  color: #191f25;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 19px 0 #10151a18;
  flex: 1 1 285px;
  min-width: 220px;
  font-size: 1.07rem;
  font-weight: 500;
  border-left: 6px solid #429FA3;
}
.testimonial-card strong {
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
  display: block;
  font-size: 1.04rem;
  margin-left: auto;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.pricing-table {
  background: #151a21;
  border-radius: 11px;
  box-shadow: 0 5px 28px #11335622;
  padding: 34px 20px;
  margin-bottom: 22px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.pricing-table th {
  background: #113356;
  color: #F0EFE6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 12px 10px;
  text-align: left;
  border-radius: 7px 7px 0 0;
  letter-spacing: 0.03em;
}
.pricing-table td {
  background: #171e25;
  color: #F0EFE6;
  font-size: 1rem;
  padding: 13px 10px;
  border-bottom: 1px solid #282e35;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-explanation {
  font-style: italic;
  font-size: 0.98rem;
  color: #B5B4AE;
  margin-top: 7px;
}

/* --- BLOG & RECENT POSTS --- */
.blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-post {
  flex: 1 1 285px;
  min-width: 220px;
  max-width: 370px;
  background: #161e25;
  color: #F0EFE6;
}
.blog-read-more {
  font-weight: 700;
  color: #429FA3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .02em;
  margin-top: 6px;
  display: inline-block;
  transition: color .15s;
}
.blog-read-more:hover, .blog-read-more:focus {
  color: #F0EFE6;
}

.recent-posts li {
  list-style: disc;
}
.recent-posts a {
  font-size: 1rem;
  color: #429FA3;
  transition: color .14s;
}
.recent-posts a:hover, .recent-posts a:focus {
  color: #F0EFE6;
}

.category-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 16px;
}
.category-filters a {
  background: #113356;
  color: #F0EFE6;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 18px;
  transition: background .13s, color .11s;
}
.category-filters a:hover, .category-filters a:focus {
  background: #429FA3;
  color: #113356;
}

/* --- FOOTER --- */
footer {
  background: #161e25;
  border-top: 1px solid #282e35;
  color: #B5B4AE;
  padding: 40px 0 15px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 22px;
  margin-bottom: 9px;
}
footer nav a {
  color: #B5B4AE;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  border-bottom: 1.5px solid transparent;
  transition: border .12s, color .13s;
}
footer nav a:hover, footer nav a:focus {
  color: #429FA3;
  border-bottom: 1.5px solid #429FA3;
}
footer address {
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #B5B4AE;
}
footer address a {
  color: #429FA3;
  font-size: 1rem;
  text-decoration: underline dotted;
}

/* --- CONTACT DETAILS & MAP --- */
.contact-details {
  background: #151a21;
  border-radius: 9px;
  box-shadow: 0 4px 18px #429fa313;
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F0EFE6;
  font-size: 1.09rem;
}
.map-snippet {
  background: #171e25;
  border-radius: 9px;
  box-shadow: 0 4px 21px #11335612;
  padding: 20px 13px 20px 13px;
  margin-bottom: 26px;
  color: #B5B4AE;
  font-size: 1rem;
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  background: #113356;
  color: #F0EFE6;
  border-radius: 13px;
  box-shadow: 0 4px 32px 0 #429FA316;
  margin: 60px 0;
  padding: 64px 20px;
  text-align: center;
}
.thank-you-section .cta-button {
  margin-top: 34px;
  font-size: 1.19rem;
}

/* --- GENERAL SPACING RULES --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main ul, main ol {
  margin-bottom: 16px;
}
main ul li, main ol li {
  margin-bottom: 7px;
}

/* --- SCROLLBAR DARK STYLE --- */
::-webkit-scrollbar {
  width: 10px;
  background: #191f25;
}
::-webkit-scrollbar-thumb {
  background: #429FA3;
  border-radius: 8px;
}

/* --- COOKIES BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #191f25;
  color: #F0EFE6;
  padding: 24px 24px 20px 24px;
  box-shadow: 0 -2px 24px #11335644;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 900;
  font-size: 1rem;
  transition: transform .32s;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 8px 24px;
  margin: 0 2px;
  transition: background 0.14s, color 0.13s;
}
.cookie-consent-banner .accept {
  background: #429FA3;
  color: #113356;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #113356;
  color: #F0EFE6;
}
.cookie-consent-banner .reject {
  background: #282e35;
  color: #F0EFE6;
  border: 1.5px solid #429FA3;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #429FA3;
  color: #113356;
}
.cookie-consent-banner .settings {
  background: #113356;
  color: #F0EFE6;
  border: 1.5px solid #429FA3;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #429FA3;
  color: #113356;
}

.cookie-modal-backdrop {
  position: fixed;
  background: #10151aa3;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #191f25;
  border-radius: 16px;
  color: #F0EFE6;
  box-shadow: 0 11px 62px 0 #11335666;
  padding: 38px 32px 32px 32px;
  z-index: 995;
  width: 98vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlidein .28s cubic-bezier(.6,.17,.38,1.24);
  position: relative;
}
@keyframes modalSlidein {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #F0EFE6;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  background: #171e25;
  padding: 10px 17px;
  border-radius: 8px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: #F0EFE6;
}
.cookie-modal .cookie-switch {
  margin-left: 20px;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-switch .slider {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  background-color: #282e35;
  border-radius: 24px;
  transition: background .12s;
}
.cookie-modal .cookie-switch .slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #429FA3;
  border-radius: 50%;
  transition: transform .18s cubic-bezier(.5,.93,.58,1.15);
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider {
  background: #429FA3;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(22px);
  background: #F0EFE6;
}
.cookie-modal .category-desc {
  font-size: .98rem;
  color: #B5B4AE;
  margin-left: 7px;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .accept, .cookie-modal .save {
  background: #429FA3;
  color: #113356;
}
.cookie-modal .accept:hover, .cookie-modal .save:hover {
  background: #113356;
  color: #F0EFE6;
}
.cookie-modal .reject {
  background: #282e35;
  color: #F0EFE6;
}
.cookie-modal .reject:hover {
  background: #429FA3;
  color: #113356;
}
.cookie-modal .close {
  position: absolute;
  top: 18px; right: 21px;
  background: none;
  color: #F0EFE6;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  opacity: 0.67;
  transition: opacity .13s,color .11s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  opacity: 1;
  color: #429FA3;
}

/* --- MICRO-ANIMATIONS & EFFECTS --- */
.feature, .service-category, .card, .blog-post, .testimonial-card {
  transition: box-shadow .19s, border-color .16s, transform .14s;
}
.card:hover, .feature:hover, .service-category:hover, .blog-post:hover {
  transform: translateY(-3px) scale(1.03);
}
.cta-button, .cta-button-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .17s, color .14s, transform .13s;
}

/* --- RESPONSIVE RULES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-slider,
  .services-grid,
  .blog-posts-grid,
  .credentials,
  .process-steps,
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-category, .process-steps > div, .credentials > div, .testimonial-card, .blog-post {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  header .container, .container {
    padding: 0 7px;
  }
  .content-wrapper {
    padding: 0;
    gap: 17px;
  }
  section, .cta-section {
    padding: 24px 4px;
    margin-bottom: 38px;
  }
  .thank-you-section {
    padding: 38px 2px;
    margin: 34px 0;
  }
  .pricing-table {
    padding: 19px 2px;
  }
  .map-snippet, .contact-details {
    padding: 12px 3px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  h3 { font-size: 1.12rem; }
  .hero {
    min-height: 180px;
    padding: 22px 0 !important;
  }
}

/* --- INDUSTRIAL FONT FACE (Montserrat + Roboto) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

/* --- INDUSTRIAL METALLIC/URBAN EFFECTS (SUBTLE) --- */
.feature, .service-category, .pricing-table, .contact-details, .blog-post, .testimonial-card, .card {
  border-right: 1.5px solid #282e35;
  border-bottom: 2px solid #191f25;
}
.card, .blog-post, .feature, .service-category, .testiomonial-card {
  background-image: repeating-linear-gradient(135deg, #1b2329 0 3px, transparent 3px 24px);
  background-size: 42px 42px;
  background-blend-mode: overlay;
}

/* ---- UTILITY CLASSES ---- */
.text-section {
  padding: 0 0 0 0;
  margin-bottom: 20px;
}
.text-section ul {
  margin-bottom: 14px;
}

/* --- FOCUS STATES FOR ACCESSIBILITY --- */
a:focus, button:focus, .cta-button:focus, .cta-button-secondary:focus, input:focus, select:focus {
  outline: 2px solid #429FA3;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY HIERARCHY --- */
main p, main li {
  font-size: 1rem;
  color: #F0EFE6;
}
main strong, main b {
  color: #429FA3;
}

/* --- SPACING FIXES FOR LAYOUTS --- */
.card-container, .feature-grid, .testimonial-slider, .services-grid, .process-steps, .credentials, .content-grid, .testimonial-list, .blog-posts-grid {
  gap: 24px;
  margin-bottom: 20px;
}
.card, .feature, .service-category, .process-steps > div, .credentials > div, .testimonial-card, .blog-post {
  margin-bottom: 20px;
}
