/* ==========================================================  
   CSS RESET & NORMALIZE (modern minimalist)
   ========================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181C22;
  color: #F6F4EE;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #13B288;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6F4EE;
  text-decoration: underline;
}
ul, ol {
  padding-left: 22px;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
table { border-collapse: collapse; width: 100%; }
th, td { padding: 10px 12px; }
th { background: #272F38; color: #F6F4EE; font-weight: 700; }
td { background: #23272C; color: #F6F4EE; }

/* ==========================================================  
   TYPOGRAPHY - Industrial Modern  
   ========================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  color: #F6F4EE;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F4EE;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: #222;
  background: #fff;
  border-left: 5px solid #13B288;
  padding: 18px 26px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(34,35,40,0.05);
  border-radius: 6px;
}

/* ==========================================================  
   BRAND COLORS & INDUSTRIAL PALETTE  
   ========================================================== */
:root {
  --color-primary: #1B2838;
  --color-secondary: #F6F4EE;
  --color-accent: #13B288;
  --color-accent-dark: #18604A;
  --color-bg: #181C22;
  --color-metal: #757F87;
  --color-metal-light: #a9b2b9;
  --color-outline: #23272C;
  --color-card-bg: #23272C;
  --color-btn-gradient: #222D36;
}

/* ==========================================================  
   CONTAINERS, FLEXBOX LAYOUTS, SPACING  
   ========================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-metal);
  box-shadow: 0 2px 10px rgba(38,40,43,0.09);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 1 320px;
  min-width: 290px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px rgba(60,70,80,0.11);
  border-color: var(--color-accent-dark);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  border-radius: 8px;
  padding: 20px;
  border: 1.5px solid var(--color-metal);
  box-shadow: 0 2px 8px rgba(20,24,28,0.09);
  transition: border-color 0.16s, box-shadow 0.2s;
  flex: 1 1 260px;
  min-width: 220px;
}
.feature-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 22px rgba(38,60,50,0.12);
}
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #191d23;
  border-radius: 8px;
  padding: 14px 18px;
  border: 1.2px solid var(--color-metal);
  box-shadow: 0 1px 4px rgba(15,18,24,0.06);
}

.testimonial-card {
  background: #fff;
  color: #181C22;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  border-radius: 10px;
  border: 1.5px solid var(--color-metal-light);
  box-shadow: 0 2px 12px rgba(67,84,95,0.08);
  transition: box-shadow 0.25s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(25,62,54,0.18);
  border-color: var(--color-accent);
}
.testimonial-card blockquote {
  background: none;
  color: #181C22;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #37424C;
  margin-bottom: 0;
  font-size: 0.99rem;
}

.card-grid { /* for reference sections if needed */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.project-case {
  background: var(--color-card-bg);
  border-left: 5px solid var(--color-accent);
  padding: 24px 28px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(20,24,27,0.11);
}

.faq-item {
  background: var(--color-card-bg);
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 20px 26px;
  border-left: 4px solid var(--color-accent-dark);
  box-shadow: 0 1px 6px rgba(15,20,22,0.08);
}

/* ==========================================================  
   HEADER & MAIN NAVIGATION  
   ========================================================== */
.site-header {
  width: 100%;
  background: #191f25;
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-outline);
  position: relative;
  z-index: 40;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  position: relative;
  z-index: 105;
}
.logo-link img {
  height: 44px;
  width: auto;
  vertical-align: middle;
  filter: grayscale(25%) brightness(1.09);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 24px 0 48px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #F6F4EE;
  padding: 4px 8px;
  border-radius: 3px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232b32;
  color: var(--color-accent);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #F6F4EE;
  background: linear-gradient(90deg, #18604A 70%, #13B288 100% );
  border: none;
  border-radius: 7px;
  padding: 11px 32px;
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(38,55,56,0.14);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s, color 0.11s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #13B288 55%, #18604A 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(19,178,136,0.25);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #13B288;
  border: 2px solid #13B288;
  border-radius: 7px;
  padding: 10px 26px;
  background: transparent;
  margin-top: 16px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(16,28,28,0.06);
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #13B288;
  color: #fff;
  border-color: #18604A;
}

/* ------------------------  
   MOBILE NAVIGATION  
   ------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: #13B288;
  cursor: pointer;
  z-index: 1102;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #191F25;
  box-shadow: 2px 0 28px rgba(15,18,22,0.19);
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.77,.13,.58,.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 20px 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #13B288;
  position: absolute;
  top: 16px;
  right: 25px;
  cursor: pointer;
  z-index: 1115;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 70px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F6F4EE;
  padding: 10px 0;
  border-bottom: 1px solid #22292c;
  transition: color 0.18s, background 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #13B288;
  background: #222d36;
  border-radius: 3px;
}

/* --- Burger menu visible on small screens --- */
@media (max-width: 990px) {
  .main-nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .site-header .container { padding: 9px 12px; }
  .logo-link img { height: 36px; }
}

/* ==========================================================
   HERO & PAGE SECTIONS  
   ========================================================== */
.hero {
  background: linear-gradient(105deg,#191f25 90%,#232b32 100%);
  padding: 72px 0 44px 0;
  position: relative;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(15,44,30,0.055);
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 22px;
  color: var(--color-metal-light);
}

.services-preview ul,
.services-overview ul {
  margin: 12px 0 20px 0;
  color: #e3e9e5;
}

/* Call To Action Section */
.cta-offer, .cta-pricing, .cta-contact, .cta-services {
  background: #1B2838;
  box-shadow: 0 2px 18px rgba(24,28,32,0.07);
  margin-bottom: 0;
  padding: 36px 0 41px 0;
}
.cta-offer h2, .cta-pricing h2, .cta-contact h2, .cta-services h2 {
  color: #13B288; 
  font-size: 2.15rem;
  font-weight: 800;
}

/* ==========================================================
   FOOTER  
   ========================================================== */
.site-footer {
  width: 100%;
  background: #1B2838;
  color: #fff;
  border-top: 2px solid #23272c;
  font-size: 0.98rem;
  padding: 0;
}
.site-footer .container {
  padding-top: 36px;
  padding-bottom: 22px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1.2px solid #262b2e;
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.footer-nav, .footer-policy-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-policy-nav a {
  color: #F6F4EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-policy-nav a:hover {
  color: #13B288;
}
.footer-contact address, 
.footer-contact a {
  color: #a9b2b9;
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  line-height: 1.7;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
  filter: grayscale(80%) brightness(1.09);
}
.footer-bottom {
  padding-top: 8px;
  text-align: center;
  color: #9aa4aa;
  font-size: 0.94rem;
}

/* ==========================================================
   FORMS & TABLES
   ========================================================== */
table {
  margin: 24px 0 16px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(33,44,42,0.08);
}
tr:nth-child(even) td {
  background: #232E35;
}
th {
  background: #232E35;
  border-bottom: 1.5px solid #13B288;
  font-size: 1.03rem;
}
td {
  border-bottom: 1px solid #222E36;
  font-size: 0.97rem;
}

/* ==========================================================
   VARIOUS CONTENT BLOCKS  
   ========================================================== */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #1B232A;
  border-radius: 7px;
  padding: 17px 20px;
  border: 1.2px solid #23292e;
  margin-top: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 0 0;
}
.contact-details img {
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
  filter: grayscale(60%) brightness(1.13);
}

.thank-you-section {
  padding: 56px 0 80px 0;
  background: #181C22;
}

.privacy-policy-section, .cookie-policy-section, .terms-section, .gdpr-section {
  padding: 52px 0 62px 0;
  background: #222e3a;
}
.privacy-policy-section h1, .cookie-policy-section h1, .terms-section h1, .gdpr-section h1 {
  color: #13B288;
}

/* ==========================================================
   RESPONSIVENESS & FLEXBOX ADJUSTMENTS
   ========================================================== */
@media (max-width: 1100px) {
  .container, .site-header .container { max-width: 98vw; }
  .features, .feature-grid, .feature-icons, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-links { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.09rem; }
  .section, .content-wrapper { padding: 28px 4px; }
  .card, .feature-item, .project-case, .faq-item {
    min-width: 95%;
    padding: 12px 8px;
  }
  .cta-offer, .cta-pricing, .cta-contact, .cta-services {
    padding: 22px 0 28px 0;
  }
  .text-image-section, .features, .feature-grid, .feature-icons, .content-grid, .card-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card { padding: 14px 6px; }
}
@media (max-width: 540px) {
  .container { padding: 0 8px; }
  .site-header, .site-header .container { padding: 4px 1px; }
}

/* ==========================================================
   SPACING & MANDATORY PATTERNS
   ========================================================== */
/* All defined above as per requirements */

/* ==========================================================
   HOVER EFFECTS, MICRO-INTERACTIONS, BUTTONS
   ========================================================== */
button, .btn-primary, .btn-secondary {
  transition: background 0.19s, color 0.14s, box-shadow 0.15s;
  outline: none;
}
button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--color-accent-dark);
}

/* ==========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #232e35;
  color: #f6f4ee;
  padding: 24px 14px 24px 14px;
  box-shadow: 0 -6px 30px rgba(38,44,56,0.12);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
  animation: fadein_banner 0.44s cubic-bezier(.51,.45,.11,.96);
}
@keyframes fadein_banner {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 5px;
  padding: 9px 22px;
  font-size: 1.03rem;
  margin: 0 4px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.1s;
}
.cookie-banner .accept-btn {
  background: #13B288;
  color: #fff;
  border: none;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #18604A;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #1B2838;
  border: 1.5px solid #ebebeb;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #1B2838;
  color: #fff;
  border-color: #13B288;
}
.cookie-banner .settings-btn {
  background: #1B2838;
  color: #13B288;
  border: 1.5px solid #13B288;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus{
  background: #13B288;
  color: #fff;
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #f6f4ee;
  color: #1B2838;
  box-shadow: 0 8px 48px rgba(38,44,56,0.18);
  border-radius: 12px;
  z-index: 2050;
  padding: 34px 24px 32px 28px;
  width: 95vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  pointer-events: all;
  animation: popup_modal_show 0.29s cubic-bezier(.7,.12,.33,.9);
}
@keyframes popup_modal_show {
  from { opacity: 0; transform: translate(-50%, 100px) scale(0.87); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #13B288;
  margin-bottom: 8px;
}
.cookie-modal .modal-cats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 22px 0 14px 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  color: #1B2838;
}
.cookie-modal .cat-switch {
  margin-left: auto;
  width: 38px;
  height: 22px;
  background: #dfebde;
  border-radius: 16px;
  position: relative;
  transition: background 0.14s;
  display: flex; align-items: center;
}
.cookie-modal .cat-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #b5c5b9;
  transition: left 0.14s, background 0.12s;
}
.cookie-modal .cat-switch input:checked ~ .slider {
  left: 18px;
  background: #13B288;
}
.cookie-modal .cat-switch.cat-essential {
  background: #e6e6e6;
  border: 2px solid #13B288;
}
.cookie-modal .cat-switch.cat-essential .slider {
  background: #13B288;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 8px 16px;
  font-weight: 700;
  border: none;
}
.cookie-modal .accept-btn {
  background: #13B288; color: #fff;
}
.cookie-modal .accept-btn:hover { background: #18604A; }
.cookie-modal .close-btn {
  background: #F6F4EE;
  color: #1B2838;
  border: 1.5px solid #a9b2b9;
}
.cookie-modal .close-btn:hover {
  background: #e3efed;
}

@media (max-width: 520px) {
  .cookie-modal { max-width: 95vw; padding: 22px 5px 17px 8px; }
}

/* ==========================================================
   MISCELLANEOUS STYLES & UTILITIES
   ========================================================== */
::-webkit-scrollbar { width: 8px; background: #23272c; }
::-webkit-scrollbar-thumb { background: #313c41; border-radius: 7px; }
::-webkit-scrollbar-track { background: #191f21; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* for screen reader only text */
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ==========================================================
   INDUSTRIAL MODERN: SHADOWS, BORDERS, METALLIC EFFECTS
   ========================================================== */
.card, .testimonial-card, .project-case, .faq-item, .feature-item, .icon-item, .map-placeholder {
  box-shadow: 0 2px 7px 0 rgba(65,70,74,0.10), 0 1.5px 3.5px 0 rgba(40,48,31,0.04);
  border-radius: 8px;
}
.card, .feature-item, .project-case, .faq-item {
  border: 1.5px solid #757F87;
}
/* Slight metallic gradient for headings on dark bg */
h1, h2, h3, h4, h5 {
  background: linear-gradient(90deg, #b5bac4 2%, #F6F4EE 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
h1, h2 {
  letter-spacing: 0.04em;
}

/* Restore normal text color inside white cards/testimonial */
.testimonial-card h2, .testimonial-card h3, .testimonial-card h4, .testimonial-card p, .testimonial-card blockquote,
blockquote {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
  color: #181C22;
}

/* ==========================================================
   Z-INDEX CONTROL
   ========================================================== */
.site-header { z-index: 40; }
.mobile-menu { z-index: 1100; }
.mobile-menu-close { z-index: 1115; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 2050; }

/* ================== END OF STYLE ================== */