/* ===============================
   CSS Reset & Base Styles
=============================== */
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 {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #191f26;
  color: #e5ecf2;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #0B7285;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EAF1F7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #EAF1F7;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.75rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem;   margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { margin-bottom: 8px; }

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.65;
}

strong { color: #EAF1F7; }

/* Industrial Modern Font & Colors */
body, .body-font {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #ccd6df;
}
.header-font, .display-font, h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Universal Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(21, 28, 35, 0.98);
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.08);
  border-radius: 18px;
  backdrop-filter: blur(1.5px);
}
section:last-child {
  margin-bottom: 0;
}

/* ===============================
   Header & Main Navigation
=============================== */
header {
  width: 100%;
  background: #121620;
  border-bottom: 2px solid #38404c;
  position:sticky;
  top:0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

header img {
  height: 48px;
  min-width: 110px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.main-nav a {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #b6c4d4;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .08em;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EAF1F7;
}
.main-nav .cta-primary {
  margin-left: 12px;
  background: #003063;
  color: #EAF1F7;
  border-radius: 5px;
  padding: 7px 22px;
  box-shadow: 0 1px 8px 0 rgba(0,0,8,0.07);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.07);
  transition: background 0.24s, color 0.18s, box-shadow 0.28s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #0B7285;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(20,40,80,0.22);
}

.mobile-menu-toggle {
  background: #232a38;
  color: #EAF1F7;
  font-size: 2rem;
  border: none;
  border-radius: 5px;
  padding: 6px 16px;
  display: none;
  align-items: center;
  justify-content: center;
  min-width:48px;
  min-height:48px;
  cursor:pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #0B7285;
  color: #fff;
}

/* ===============================
   Mobile Menu Overlay
=============================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,21,26,0.97);
  backdrop-filter: blur(4px);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 14px;
  background: #0B7285;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #003063;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 74px;
  margin-left: 40px;
}
.mobile-nav a {
  color: #EAF1F7;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 12px 0 12px 10px;
  min-width: 240px;
  position:relative;
  border-left: 3px solid transparent;
  transition: border-color 0.18s, background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232a38;
  border-left: 3px solid #0B7285;
  color: #bcd0e6;
}

/* ===============================
   Buttons & CTA
=============================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  background: #003063;
  border-radius: 8px;
  padding: 13px 38px;
  border: none;
  margin-top: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(7,16,24,0.11);
  letter-spacing: .05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: background 0.18s, color 0.22s, transform 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #0B7285;
  color: #EAF1F7;
  transform: translateY(-2px) scale(1.035);
}

.btn-secondary {
  background: transparent;
  color: #0B7285;
  border: 2px solid #0B7285;
  margin-right: 16px;
  box-shadow: none;
  text-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #0B7285;
  color: #fff;
  border-color: #003063;
  transform: translateY(-2px) scale(1.035);
}

/* ===============================
   Hero Section
=============================== */
.hero {
  background: linear-gradient(120deg, #232c3a 60%, #003063 120%);
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 340px;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 24px 0 rgba(15,25,32,0.17);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero .content-wrapper {
  gap: 18px;
}
.hero h1 {
  color: #EAF1F7;
  font-size: 2.25rem;
  max-width: 700px;
}
.hero p {
  color: #b3bed0;
  font-size: 1.18rem;
  margin-bottom: 18px;
  max-width: 600px;
}
.hero .btn-primary {
  margin-top: 12px;
}

/* ===============================
   Compositional Layout Patterns
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: #202633;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(13,23,38,0.13);
  border: 1px solid #2a3550;
  padding: 32px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(11,52,85,0.19);
  transform: translateY(-3px) scale(1.008);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #eaf1f7;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(11,52,133,0.08);
  margin-bottom: 24px;
  color: #223042;
  font-size: 1.1rem;
  max-width: 540px;
  min-width: 240px;
  flex: 1 1 340px;
  border-bottom: 5px solid #0B7285;
  transition: box-shadow 0.18s;
  position: relative;
}
.testimonial-card strong {
  color: #0B7285;
}
.testimonial-card p {
  margin-bottom: 8px;
}
.testimonial-slider, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

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

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  list-style: none;
}
.feature-list li {
  background: #232c3a;
  color: #b3bed0;
  padding: 22px 18px 22px 62px;
  border-radius: 10px;
  position: relative;
  font-family:'Roboto',Arial,sans-serif;
  font-size:1rem;
  min-width: 280px;
  flex: 1 1 320px;
  margin-bottom: 0;
}
.feature-list li img {
  position: absolute; left: 20px; top: 23px;
  width: 34px;
  height: 34px;
  filter: grayscale(0.2) brightness(1.2);
}

.trust-factors, .certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.trust-factors li, .certifications li {
  background: #212733;
  color: #b3bed0;
  border-radius: 10px;
  padding: 14px 20px 14px 54px;
  font-size: 1rem;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 0;
}
.trust-factors li img, .certifications li img {
  position: absolute; left: 14px; top: 14px;
  width: 28px; height: 28px;
  filter: grayscale(0.18) brightness(1.1);
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.team-bios > div {
  background: #202633;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(13,23,38,0.09);
  border: 1px solid #2a3550;
  padding: 24px 18px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  gap:10px;
  color: #c8d8e8;
  position: relative;
  margin-bottom:0;
}
.team-bios h3 { color: #0B7285; font-size: 1.1rem; margin-bottom: 7px; }

.policy-text, .gdpr-policy-text, .cookies-policy-text, .terms-and-conditions {
  background: #212733;
  border-radius: 10px;
  padding: 28px 20px;
  font-size: 1rem;
  color: #cdd6e0;
  margin-bottom: 0px;
}

/* ===============================
   Lists of articles/news/tips
=============================== */
.news-list, .industry-updates, .investment-tips, .experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-list article {
  background: #202633;
  border-radius: 12px;
  padding: 24px 18px;
  color: #eaf1f7;
  box-shadow: 0 2px 12px 0 rgba(11,44,90,0.08);
  border-left: 7px solid #0B7285;
  margin-bottom:0;
  transition: box-shadow 0.18s;
}
.news-list article:hover {
  box-shadow: 0 6px 28px 0 rgba(17,50,70,0.12);
}

.investment-tips ul, .experience-highlights ul {
  padding-left: 20px;
  color: #b3bed0;
}


/* ===============================
   Timeline/Step List/Accordions
=============================== */
.step-list-detailed {
  background: #232c3a;
  border-radius: 10px;
  padding: 30px 18px;
  color: #c9d7e0;
  font-size: 1.12rem;
  line-height: 1.65;
}
.step-list-detailed li {
  margin-bottom: 18px;
}
.step-list-detailed li:last-child {
  margin-bottom: 0;
}
.timeline {
  color: #b7d0e2;
  background: #1e2430;
  border-left: 5px solid #0B7285;
  border-radius: 10px;
  padding: 22px 20px;
  font-size:1rem;
}

.faq-accordion h3 {
  cursor: pointer;
  background: #232c3a;
  color: #eaf1f7;
  margin-bottom: 0;
  padding: 16px 18px;
  border-radius: 6px 6px 0 0;
  transition: background 0.17s;
  font-size: 1.14rem;
  font-weight: 600;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  background: #2a3550;
  color: #0B7285;
}
.faq-accordion p {
  background: #202633;
  padding: 14px 18px 16px 18px;
  border-radius: 0 0 6px 6px;
  color: #d1dce9;
  margin-bottom: 10px;
  border-left: 3px solid #0B7285;
}

.benefit-list {
  background: #202633;
  border-radius: 10px;
  color: #b7d0e2;
  padding: 28px 20px;
  margin-bottom: 18px;
}
.benefit-list li {
  margin-bottom: 14px;
}

.financial-highlights, .advantages, .market-trends, .security-explained {
  background: #232c3a;
  border-radius: 8px;
  padding: 16px 15px;
  color: #c8d8e8;
  margin-bottom: 0;
  font-size: 1rem;
}

/* ===============================
   Cards/Confirmation/Contact Detail
=============================== */
.confirmation-message, .next-steps-info, .office-hours, .map-embed, .contact-details {
  background: #202633;
  border-radius: 10px;
  color: #c8d8e8;
  padding: 24px 20px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px 0 rgba(11,52,85,0.09);
}
.confirmation-message ul, .next-steps-info ul {
  color: #a3b7c9;
  padding-left: 18px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.contact-details > div {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size:1rem;
  color: #c4d3e0;
}
.contact-details img {
  width: 36px; height: 36px;
  filter: grayscale(0.25) brightness(1.17);
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===============================
   Footer Styles
=============================== */
footer {
  background: #161927;
  color: #b3bed0;
  border-top: 2px solid #38404c;
  padding: 0;
  margin-top: 60px;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 4px 16px 4px;
}
.footer img {
  height: 34px; min-width: 100px;
}
.footer-nav, .footer-nav a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #b3bed0;
  font-size: 0.96rem;
  font-family: 'Montserrat',Arial,sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 18px;
}
.footer-nav a {
  color: #b3bed0;
  transition: color 0.18s;
  margin-bottom:0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #0B7285;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
  margin-top: 18px;
}
.contact-info img {
  width: 20px; height: 20px;
  margin-right:5px;
  filter: grayscale(0.12) brightness(1.2);
}
.legal {
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  color: #7c8da0;
  margin-top: 24px;
  letter-spacing: .04em;
}

/* ===============================
   Cookie Consent Banner & Modal
=============================== */
.cookie-banner {
  position: fixed;
  left: 10px; right: 10px; bottom: 16px;
  background: #232c3a;
  color: #eaf1f7;
  box-shadow: 0 2px 12px 0 rgba(11,52,85,0.14);
  border-radius: 13px;
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding: 26px 28px 20px 28px;
  font-size: 1.11rem;
  transition: transform 0.36s cubic-bezier(0.67, 0, 0.24,1), opacity .2s;
}
.cookie-banner.hidden {
  transform: translateY(130px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner button {
  margin-left: 10px;
}
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(11,52,85,0.065);
  min-width: 88px;
  transition: background 0.20s, color 0.17s;
}
.btn-cookie-accept {
  background: #0B7285;
  color: #fff;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #003063;
}
.btn-cookie-reject {
  background: #202633;
  color: #b3bed0;
  border: 2px solid #0B7285;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: #0B7285;
  color: #fff;
}
.btn-cookie-settings {
  background: transparent;
  color: #b3bed0;
  border: 2px solid #2a3550;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #232a35;
  color: #0B7285;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  z-index: 2600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,28,35,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #212733;
  border-radius: 16px;
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 16px 46px 0 rgba(0,0,0,0.14);
  color: #eaf1f7;
  font-size: 1.12rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #0B7285;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.21s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #EAF1F7;
  background: #003063;
  border-radius: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: flex-start;
}
.cookie-category .category-label {
  flex: 1;
  font-weight: 500;
  color: #b3bed0;
}
.category-toggle {
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: #2a3550;
  position: relative;
  cursor: pointer;
  border:1.5px solid #0B7285;
  transition: background 0.17s;
}
.category-toggle input[type="checkbox"] {
  display: none;
}
.category-toggle .toggle-slider {
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #b3bed0;
  transition: left 0.18s, background 0.18s;
}
.category-toggle input[type="checkbox"]:checked + .toggle-slider {
  left: 18px;
  background: #0B7285;
}
.cookie-category.essential .category-toggle {
  opacity: 0.45;
  pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  gap: 22px;
  margin-top: 10px;
}

/* ===============================
   Responsive – Mobile First
=============================== */
@media (max-width: 1239px) {
  .footer { gap: 20px; }
  .container { padding-left: 12px; padding-right: 12px; }
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {flex-direction: row;gap: 12px;flex-wrap: wrap;}
}

@media (max-width: 800px) {
  .main-nav { gap: 16px; }
  .testimonial-card { min-width:200px; }
  .testimonial-slider, .testimonial-cards { flex-direction: column; align-items: stretch; }
  .feature-list { flex-direction: column; }
  .trust-factors, .certifications, .team-bios, .card-container { flex-direction: column; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 99vw; }

  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 7px 4px 7px 4px;
  }
  .main-nav, .main-nav.open {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .testimonial-slider, .testimonial-cards { flex-direction: column; gap:17px; }
  .feature-list { flex-direction: column; gap: 16px; }
  .trust-factors, .certifications { flex-direction: column; gap: 15px; }
  .team-bios { flex-direction: column; gap: 15px; }
  .news-list, .industry-updates, .investment-tips, .experience-highlights { gap: 13px; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.06rem; }
  section, .section { padding: 22px 7px; }
  .footer { padding: 24px 2px 8px 2px; gap: 10px; }
  .contact-details, .map-embed { flex-direction: column; gap: 10px; }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 18px 10px 15px 12px; }
  .cookie-modal-content { padding: 19px 9px 12px 9px; min-width:91vw; }
  .mobile-nav { margin-left:16px; }
  .mobile-menu-close { right:10px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .btn-primary, .btn-secondary, .btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
    padding: 9px 16px; font-size: 0.97rem;
  }
  .footer img { height:24px; }
  .main-nav .cta-primary {padding: 5px 13px; font-size: 0.93rem;}
}

/* ===============================
   Utility & Misc
=============================== */
.gap-top { margin-top: 40px; }
.gap-bottom { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.brand-story-snippet {
  color: #b3bed0;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

/* Micro-interactions */
.card, .testimonial-card, .main-nav a, .btn-primary, .btn-secondary, .mobile-nav a, .news-list article, .feature-list li, .team-bios > div {
  transition: box-shadow 0.17s, transform 0.16s, background 0.17s, color 0.15s;
}

.card:active, .testimonial-card:active, .news-list article:active, .team-bios > div:active {
  transform: scale(0.97);
  box-shadow: 0 1px 2px 0 rgba(21,28,40,0.09);
}

::-webkit-scrollbar {
  width: 10px;
  background: #212733;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #0B7285;
  border-radius: 10px;
}

/* ===============================
   END – Theme: Industrial Modern
=============================== */
