/* ===========================================
   Helio Flicker Industrial Modern Style CSS
   Author: Professional CSS/UI Designer
   ===========================================
*/
/* ==== 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F0F4F9;
  background: #181C20; /* Urban dark industrial base */
  line-height: 1.65;
  font-size: 1rem;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #FFB022;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F0F4F9;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 18px;
  text-align: left;
}
hr {
  border: none;
  border-top: 1px solid #2E3540;
  margin: 40px 0;
}
/* ==== BRAND FONTS ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #F0F4F9;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.4rem; margin-bottom: 20px; }
h4 { font-size: 1.1rem; margin-bottom: 16px; }

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
}

p, li, table, span {
  font-size: 1rem;
  color: #DEE3E8;
}
strong { color: #FFB022; }


/* ==== MAIN LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  /* Utility: vertical stack */
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,36,42,0.92);
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(16,24,32,0.12), 0 1.5px 4px 0 rgba(30,36,42,0.17);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
}

/* ==== HEADER & NAV ==== */
header {
  background: #191E23;
  box-shadow: 0 2px 8px 0 rgba(30,36,42,0.19);
  border-bottom: 2px solid #232834;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
header nav a {
  color: #F0F4F9;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #FFB022;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,#22303C 0%,#FFB022 100%);
  color: #181C20;
  border-radius: 7px;
  padding: 11px 26px;
  font-size: 1.1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid #FFB022;
  text-shadow: 0 2px 8px rgba(16,24,32,0.05);
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(255,176,34,0.10);
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFB022;
  color: #191E23;
  border-color: #FFD673;
  box-shadow: 0 3px 18px 0 rgba(255,176,34,0.20);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22303C;
  color: #FFB022;
  border-radius: 7px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  border: 1.5px solid #FFB022;
  margin-top: 24px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #FFB022;
  color: #181C20;
  border-color: #FFD673;
}

@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container, header nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  header nav { display: none; }
  .cta-primary {
    margin-top: 11px;
    width: 100%;
    justify-content: center;
  }
}

/* ==== MOBILE NAV/BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 31;
  background: #232834;
  color: #FFB022;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  transition: background 0.19s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFB022;
  color: #232834;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  background: #232834;
  box-shadow: -4px 0 32px 0 rgba(20,30,34,0.18);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.75,0,0.25,1);
  padding: 28px 24px 0 24px;
  max-width: 85vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFB022;
  font-size: 1.8rem;
  position: absolute;
  top: 22px;
  right: 26px;
  border: none;
  z-index: 15;
  padding: 3px 9px;
  border-radius: 5px;
  outline: none;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFB022;
  color: #232834;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  color: #F0F4F9;
  padding: 10px 7px;
  border-radius: 5px;
  font-size: 1.08rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #312617;
  color: #FFB022;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/* Overlay for mobile menu */
.mobile-menu-overlay {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,28,32,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.mobile-menu.open + .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ==== HOMEPAGE HERO ==== */
main > section:first-of-type {
  background: linear-gradient(120deg,#22303C 55%,#181C20 100%);
  box-shadow: 0 6px 60px 0 rgba(16,24,32,0.13);
  border-radius: 18px;
}
main > section:first-of-type h1 {
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
main > section:first-of-type p {
  font-size: 1.13rem;
  color: #C7D0DB;
  margin-bottom: 23px;
}

/* ==== FLEX SPACING PATTERNS (as per requirements) ==== */
.card-container, .service-grid, .mini-case-studies, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-card, .case-study {
  margin-bottom: 20px;
  background: #22262A;
  border-radius: 9px;
  box-shadow: 0 2px 10px 0 rgba(16,24,32,0.14);
  padding: 30px 22px 24px 22px;
  position: relative;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 330px;
  border: 1.5px solid #2f3840;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, border-color 0.17s, transform 0.16s;
}
.service-card:hover, .case-study:hover, .card:hover {
  box-shadow: 0 8px 30px 0 rgba(255,176,34,0.14);
  border-color: #FFB022;
  transform: translateY(-3px) scale(1.017);
  z-index: 2;
}

@media (max-width: 992px) {
  .service-grid, .card-container, .mini-case-studies, .card-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .service-grid, .card-container, .mini-case-studies, .card-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card, .service-card, .case-study {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* Testimonials Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F0F4F9;
  color: #181C20;
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 0.5px 10px 0 rgba(23,35,45,0.092);
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 4px solid #FFB022;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card p {
  color: #232834;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: #16436A;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
}

.ratings-summary {
  background: #212642;
  color: #FFB022;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1.07rem;
  margin-top: 16px;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(23,35,45,0.12);
}
.ratings-summary strong { color: #FFB022; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #232834;
  border-radius: 7px;
}

/* ACCORDION FAQ (pricing.html) */
.faq-accordion > h3 {
  margin-top: 20px;
  cursor: pointer;
  background: #232834;
  color: #FFB022;
  border-radius: 6px 6px 0 0;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-family: 'Montserrat',sans-serif;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.faq-accordion > p {
  background: #22262A;
  color: #F0F4F9;
  padding: 13px 22px 18px 24px;
  font-size: 1rem;
  border-radius: 0 0 6px 6px;
  margin-bottom: 8px;
  border-top: 1px solid #FFB02210;
}

/* ==== SERVICE PRICES/TAGS ==== */
.service-price, .case-study span {
  background: #22416A;
  color: #FFB022;
  padding: 7px 14px 7px 16px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 17px;
  box-shadow: 0 1px 6px 0 rgba(22,67,106,0.17);
  display: inline-block;
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  border-radius: 12px;
  border: 1.5px solid #263853;
  background: #212834;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th {
  background: #193048;
  color: #FFB022;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.1rem;
}
.pricing-table td {
  border-top: 1px solid #22303C;
}

/* ==== FOOTER ==== */
footer {
  background: #191E23;
  border-top: 2px solid #22303C;
  color: #DEE3E8;
  padding: 36px 0 13px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-navigation {
  font-size: 1rem;
  color: #C0CAD8;
  margin-bottom: 9px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: #C0CAD8;
  transition: color 0.17s;
}
.footer-navigation a:hover {
  color: #FFB022;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #FFB022;
}
.footer-contact img {
  width: 35px;
  height: auto;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.footer-social a img { width: 28px; height: 28px; }
.footer-legal {
  color: #6A7380;
  font-size: 0.95rem;
  margin-top: 12px;
}
@media (max-width: 650px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
  }
  .footer-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==== Cookie Consent ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #22303C;
  color: #F0F4F9;
  box-shadow: 0 -2px 32px 0 rgba(23,35,45,0.21);
  z-index: 10007;
  padding: 24px 16px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.03rem;
  animation: cookiebanner-slideup 0.7s cubic-bezier(0.66,0,0.25,1);
}
@keyframes cookiebanner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-buttons {
  display: flex;
  gap: 17px;
}
.cookie-banner button {
  padding: 10px 19px;
  background: #FFB022;
  color: #182234;
  font-weight: 700;
  border-radius: 5px;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  margin: 0;
  transition: background 0.18s, color 0.17s, box-shadow 0.13s;
  box-shadow: 0 2px 7px 0 rgba(255,176,34,0.08);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #232834;
  color: #FFB022;
  box-shadow: 0 3px 12px 0 rgba(255,176,34,0.13);
}
.cookie-banner .cookie-settings-btn {
  background: #232834;
  color: #FFB022;
  border: 1.5px solid #FFB022;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #FFB022;
  color: #181C20;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,30,35,0.55);
  z-index: 10009;
  display: none;
}
.cookie-modal-overlay.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #181C20;
  color: #F0F4F9;
  border-radius: 13px;
  box-shadow: 0 8px 40px 0 rgba(23,35,45,0.29);
  max-width: 97vw;
  min-width: 320px;
  width: 400px;
  z-index: 10010;
  padding: 46px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodal-show 0.6s cubic-bezier(0.66,0,0.25,1);
}
@keyframes cookiemodal-show {
  0% { opacity: 0; transform: translate(-50%, -47%) scale(0.84); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: #FFB022;
  font-size: 1.23rem;
  font-family: 'Montserrat',sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Open Sans',sans-serif;
  color: #F0F4F9;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .close-modal-btn {
  background: none;
  color: #FFB022;
  font-size: 1.6rem;
  position: absolute;
  top: 13px;
  right: 21px;
  border: none;
  padding: 2px 5px;
  line-height: 1;
  border-radius: 4px;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #FFB022;
  color: #181C20;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #31384A;
  border-radius: 13px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.12s;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-switch span {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: #C7D0DB;
  border-radius: 50%;
  transition: left 0.18s, background 0.13s;
}
.cookie-switch input:checked + span {
  left: 18px;
  background: #FFB022;
}
.cookie-category.essential label {
  opacity: 0.77;
}
.cookie-category.essential .cookie-switch {
  filter: grayscale(.7) brightness(.93);
  pointer-events: none;
}

/* ==== CONTACT DETAILS & MAP ==== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  margin: 10px 0;
}
.location-map {
  min-width: 120px;
  max-width: 200px;
  background: #232834;
  border-radius: 11px;
  padding: 15px 13px;
  box-shadow: 0 1px 8px 0 rgba(18,34,45,0.09);
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .location-map { max-width: 100%; }
}

/* ==== MINI CASE STUDY CARDS ==== */
.mini-case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #23272F;
  color: #F0F4F9;
  border-radius: 8px;
  padding: 26px 22px 23px 22px;
  margin-bottom: 20px;
  border-left: 3.5px solid #FFB022;
  box-shadow: 0 2px 11px 0 rgba(22,67,106,0.13);
}
.case-study h3 { color: #FFB022; margin-bottom: 10px; }
.case-study span { margin-top: 14px; display: inline-block; font-size: 1rem; }
@media (max-width: 768px) {
  .mini-case-studies { flex-direction: column; gap: 12px; }
}


/* ==== GENERAL ELEMENT SPACING ==== */
.section:not(:last-of-type) { margin-bottom: 60px; }
div:not(.footer-contact):not(.footer-social):not(.footer-navigation):not(.container) > ul, div:not(.footer-contact) > ol {
  margin-bottom: 18px;
  margin-top: 11px;
  gap: 9px;
}
li {
  margin-bottom: 9px;
}

/* ==== MODERN SHADOWS (for industrial look) ==== */
.card, .service-card, .testimonial-card, .case-study, .section {
  box-shadow: 0 2px 12px 0 rgba(33,45,55,0.10), 0 0.5px 3px 0 rgba(16,24,32,0.085);
}

/* ==== FORMS (if present) ==== */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 12px;
  background: #232834;
  color: #F0F4F9;
  border: 1.5px solid #2E3540;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans',sans-serif;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.11s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #FFB022;
  box-shadow: 0 2px 7px 0 rgba(255,176,34,0.07);
}
label {
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  color: #FFB022;
  margin-bottom: 7px;
}

/* ==== MODAL General ==== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,28,32,0.35);
  z-index: 9000;
}


/* ==== Miscellaneous ==== */
::-webkit-scrollbar {
  width: 11px;
  background: #1F2126;
}
::-webkit-scrollbar-thumb {
  background: #22303C;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFB022;
}

/* Typography micro-interactions */
h1, h2 {
  transition: color 0.22s, text-shadow 0.19s;
}
h1:hover, h2:hover {
  color: #FFB022;
  text-shadow: 0 2px 14px rgba(255,176,34,0.04);
}


/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.button-press {
  transition: transform 0.11s;
}
.button-press:active {
  transform: scale(0.96);
}
.card, .service-card, .case-study {
  transition: box-shadow 0.21s, border-color 0.14s, transform 0.14s;
}

/* Utility: visually hidden for access */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  border: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(100%);
  white-space: nowrap;
}

/* Service icon images (cards) */
.service-card img, .case-study img {
  width: 53px;
  height: 53px;
  margin-bottom: 11px;
  filter: grayscale(.13) drop-shadow(0 1px 2.5px #22303C);
}

/* Accessibility focus style */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #FFB022;
  outline-offset: 3px;
}

/* ==== RESPONSIVE MEDIA QUERIES ==== */
@media (max-width: 1070px) {
  .container {
    max-width: 95vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 30px;
  }
  .content-wrapper {
    gap: 17px;
  }
}

/* ==== DARK ON LIGHT for Testimonials ==== */
.testimonial-card {
  background: #F0F4F9;
  color: #181C20;
  box-shadow: 0 1.5px 11px 0 rgba(22,67,106,0.10);
  border-left: 4px solid #FFB022;
}
.testimonial-card p, .testimonial-card span { color: #232834; }


/* ==== Extra: hide scroll on modal open for body ==== */
body.modal-open {
  overflow: hidden;
}
