/* =======================================================
   BrightFrost Hollows - style.css
   Industrial Modern Aesthetic
   ======================================================= */

/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #161C22;
  color: #F5F6FA;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #6DC3C1;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFFCEA;
  outline: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* FONTS -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600&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, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  color: #FFFCEA;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px #25445Caa;
}
h2 {
  font-size: 2rem;
  color: #FFFCEA;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  color: #6DC3C1;
  margin-bottom: 8px; 
}
h4, h5, h6 {
  color: #c2d3db;
  margin-bottom: 6px;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F5F6FA;
  margin-bottom: 10px;
}

strong {
  font-weight: 700;
  color: #6DC3C1;
  letter-spacing: 0.02em;
}


/* CONTAINER & LAYOUT ------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,38,44,0.92);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(37,68,92,0.10), 0 8px 32px 0 rgba(0,0,0,0.15);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #1E262C;
  border-radius: 10px;
  box-shadow: 0 1px 6px 1px #12141744;
  border: 1.5px solid #232F36;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 2px 24px 0 #25445C66;
  border-color: #25445C;
  z-index: 1;
}

.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: #F5F6FA;
  border-radius: 10px;
  border-left: 4px solid #6DC3C1;
  margin-bottom: 20px;
  color: #232F36;
  box-shadow: 0 1px 10px 0 rgba(33,38,47,0.11);
  flex-direction: column;
  min-width: 260px;
}
.testimonial-card p {
  color: #232F36;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #25445C;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #21272B;
  border-left: 3px solid #6DC3C1;
  border-radius: 8px;
  padding: 22px 20px;
  margin-bottom: 20px;
}

/* Layout for project highlights, resource grids etc. -------- */
.project-highlights, .project-cards, .articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.project-highlights > div, .project-card, .articles-grid > div {
  flex: 1 1 260px;
  background: #232F36;
  border-radius: 8px;
  padding: 24px 20px;
  min-width: 240px;
  box-shadow: 0 1px 8px 0 #25445C22;
  border: 1.5px solid #25353f;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
  margin-bottom: 20px;
}
.project-highlights > div:hover, .project-card:hover, .articles-grid > div:hover {
  box-shadow: 0 2px 18px 0 #25445C77;
  border-color: #6DC3C1;
}

/* FAQ List Layout */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.faq-list > div {
  flex: 1 1 240px;
  background: #232F36;
  padding: 22px 16px;
  border-radius: 8px;
  border-left: 3.5px solid #6DC3C1;
  box-shadow: 0 1px 8px 0 #25445C22;
  margin-bottom: 20px;
  position: relative;
}
.faq-list h3 {
  font-size: 1.05rem;
  color: #FFFCEA;
  margin-bottom: 5px;
  font-weight: 600;
}
.faq-list p {
  color: #C2D3DB;
  font-size: 0.98rem;
}

/* STEPPER DIAGRAM (fonctionnement) */
.stepper-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.stepper-diagram li {
  flex: 1 1 200px;
  background: #21272B;
  border-radius: 8px;
  padding: 20px 15px;
  border-left: 3px solid #25445C;
  min-width: 170px;
  font-size: 0.99rem;
}
.stepper-diagram img {
  width: 40px;
  filter: grayscale(50%) opacity(0.8);
  margin-bottom: 8px;
}

/* Header Styles -------------------------------------------- */
header {
  background: #191D22;
  border-bottom: 2px solid #232F36;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #C2D3DB;
  letter-spacing: 0.02em;
  padding: 6px 0;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #FFFCEA;
  border-bottom: 2px solid #6DC3C1;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 20px;
  display: block;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 13px 32px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 16px 0 #25445C12;
  border: none;
  margin-left: 20px;
  transition: background 0.16s, color 0.16s, transform 0.15s;
}
.cta.primary {
  background: linear-gradient(90deg, #25445C 85%, #6DC3C1 110%);
  color: #FFFCEA;
  border: 2px solid #25445C;
  box-shadow: 0 3px 36px 0 #25445C14;
}
.cta.primary:hover, .cta.primary:focus {
  background: #6DC3C1;
  color: #232F36;
  box-shadow: 0 6px 32px 0 #25445C44;
  border-color: #6DC3C1;
  transform: translateY(-2px) scale(1.02);
}
.cta.secondary {
  background: #232F36;
  color: #6DC3C1;
  border: 2px solid #6DC3C1;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #6DC3C1;
  color: #232F36;
  border-color: #25445C;
  transform: translateY(-2px) scale(1.01);
}

/* Hero Section -------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #232F36 55%, #25445C 120%);
  border-radius: 0 0 40px 40px;
  padding: 48px 20px 56px 20px;
  margin-bottom: 36px;
  box-shadow: 0 2px 24px 0 #13191D38;
}
.hero h1 {
  margin-bottom: 14px;
  color: #FFFCEA;
  text-shadow: 0 6px 21px #25445C78;
}
.hero p {
  color: #C2D3DB;
  font-size: 1.14rem;
}
.hero .cta {
  margin-top: 16px;
  margin-left: 0;
}

/* Features & Steps ---------------------------------------- */
.features ul,
.steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.features li,
.steps li {
  background: #232F36;
  border-radius: 8px;
  padding: 22px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 180px;
  border-left: 4px solid #6DC3C1;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px #1E262C22;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.features li img, .steps li img {
  width: 32px;
  margin-bottom: 6px;
  filter: grayscale(38%) contrast(1.12);
}
.features li strong, .steps li strong {
  color: #6DC3C1;
  font-size: 1.085rem;
  font-weight: 700;
}

/* Showcase, Project List, Resource List ------------------- */
.showcase .project-highlights,
.project-list .project-cards,
.articles-grid {
  margin-top: 16px;
}
.final-cta {
  background: #25445C;
  border-radius: 18px;
  color: #FFFCEA;
  box-shadow: 0 2px 24px 0 #14232A44;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.final-cta h2, .final-cta p {
  color: #FFFCEA;
}
.final-cta .cta {
  margin-left: 0;
  margin-top: 16px;
}

.category-filters ul,
.downloadable-guides ul,
.webinars-teasers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.category-filters li {
  background: #232F36;
  padding: 8px 18px;
  color: #6DC3C1;
  border-radius: 16px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  border: 2px solid #25445C;
  transition: background 0.2s,color 0.2s,border 0.2s;
  cursor: pointer;
}
.category-filters li:hover,
.category-filters li.active {
  background: #6DC3C1;
  color: #232F36;
  border-color: #6DC3C1;
}

/* Input Styles -------------------------------------------- */
input[type='search'],
select {
  background: #171D21;
  border: 2px solid #25445C;
  color: #C2D3DB;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 1rem;
  margin-right: 8px;
  min-width: 140px;
  transition: border 0.2s;
  box-shadow: 0 1px 5px #25445C08;
}
input[type='search']:focus,
select:focus {
  border-color: #6DC3C1;
  outline: none;
}
label {
  font-size: .95rem;
  color: #C2D3DB;
  font-weight: 500;
  margin-right: 8px;
}

.filter-bar, .resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

/* Policy Section ------------------------------------------ */
.policy {
  background: #1E262C;
  padding: 40px 20px;
  margin-bottom: 60px;
  border-radius: 14px;
  box-shadow: 0 2px 16px #25445C11;
}
.policy h1, .policy h2 {
  color: #6DC3C1;
}
.policy ul {
  margin-bottom: 18px;
  padding-left: 16px;
}
.policy li {
  margin-bottom: 8px;
  position: relative;
  color: #E6ECEA;
}

/* Footer -------------------------------------------------- */
footer {
  background: #191D22;
  padding: 40px 0;
  border-top: 2px solid #232F36;
  margin-top: 40px;
  font-size: .97rem;
  color: #C2D3DB;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
}
.footer-brand {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  color: #6DC3C1;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 0;
}
footer nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #C2D3DB;
  margin-bottom: 2px;
  font-size: .98rem;
  letter-spacing: 0.015em;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
footer nav a:hover {
  color: #FFFCEA;
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 14px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-contact p {
  color: #C2D3DB;
  font-size: .97rem;
  margin-bottom: 2px;
}

/* MOBILE NAVIGATION ----------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #232F36;
  color: #6DC3C1;
  font-size: 2rem;
  border-radius: 7px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid #25445C;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #25445C;
  color: #FFFCEA;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #191D22;
  box-shadow: 0 8px 40px 0 #13191D66;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 400px;
  z-index: 110;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.67,0,0.33,1);
  padding: 34px 30px 20px 30px;
  gap: 24px;
}

.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #232F36;
  color: #6DC3C1;
  border: none;
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
  top: 17px;
  right: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6DC3C1;
  color: #232F36;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}
.mobile-nav a {
  font-size: 1.09rem;
  color: #FFFCEA;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2px solid #6DC3C1;
  color: #6DC3C1;
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8vw;
  }
  header img {
    height: 36px;
    margin-right: 7px;
  }
  .footer-brand img {
    height: 28px;
  }
}
@media (max-width: 840px) {
  header nav {
    gap: 14px;
  }
  .footer-brand, .footer-contact, footer nav {
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  /* MOBILE NAV ON */
  header nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .container, .content-wrapper, .footer-brand, .footer-contact, footer nav {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 17px;
    min-width: 0;
    width: 100%;
  }

  /* Layout switch: columns --> stack */
  .features ul, .steps ol, .project-highlights, .project-cards, .articles-grid, .faq-list, .stepper-diagram {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .section, .final-cta, .policy {
    padding: 30px 6vw;
    margin-bottom: 38px;
  }
  .hero {
    padding: 33px 5vw 40px 5vw;
    border-radius: 0 0 26px 26px;
    margin-bottom: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 17px 13px;
  }
  .faq-list > div, .features li, .steps li, .project-highlights > div, .project-card, .articles-grid > div {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .final-cta, .section, .policy, .hero {
    padding: 17px 2vw;
    margin-bottom: 22px;
    border-radius: 8px;
  }
  .cta {
    padding: 10px 15px;
    font-size: 1rem;
    margin-left: 0;
  }
  .footer-brand img {
    height: 19px;
  }
}

/* Cookie Consent Banner ------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #232F36;
  color: #F5F6FA;
  box-shadow: 0 -2px 12px 0 #25445C33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 2000;
  padding: 22px 6vw;
  animation: cookieSlideUp 0.52s cubic-bezier(0.68,0,0.32,1);
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner-msg {
  font-size: .98rem;
  margin-right: 18px;
  color: #FFFCEA;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #6DC3C1;
  color: #232F36;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.1s;
  font-size: .97rem;
  box-shadow: 0 2px 8px #6DC3C144;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #25445C;
  color: #FFFCEA;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn.reject {
  background: #232F36;
  color: #C2D3DB;
  border: 2px solid #6DC3C1;
}
.cookie-btn.reject:focus,
.cookie-btn.reject:hover {
  background: #6DC3C1;
  color: #232F36;
}
.cookie-btn.settings {
  background: #232F36;
  color: #6DC3C1;
  border: 2px solid #6DC3C1;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #6DC3C1;
  color: #232F36;
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px 3vw;
    align-items: flex-start;
    gap: 12px;
    font-size: .96rem;
  }
  .cookie-btns {
    width: 100%;
    flex-direction: column;
    gap: 6px;
  }
}

/* Cookie Modal --------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,28,34,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #FFFCEA;
  color: #232F36;
  border-radius: 10px;
  box-shadow: 0 6px 36px 0 #25445C38;
  min-width: 320px;
  max-width: 90vw;
  padding: 38px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3100;
  gap: 16px;
  animation: modalSlideUp 0.38s cubic-bezier(0.67,0,0.33,1);
}
@keyframes modalSlideUp {
  from { transform: translateY(38px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.28rem;
  color: #25445C;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: #6DC3C1;
  width: 1.17em;
  height: 1.17em;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #25445C;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #6DC3C1;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 23px 5vw 16px 5vw;
    min-width: 0;
  }
  .cookie-modal-title {
    font-size: 1.04rem;
  }
}

/* Microinteractions & Misc --------------------------------- */
.card, .feature-item, .faq-list > div, .stepper-diagram li, .project-card, .articles-grid > div {
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.16s;
}
.card:hover, .feature-item:hover, .faq-list > div:hover, .stepper-diagram li:hover,
.project-card:hover, .articles-grid > div:hover {
  transform: translateY(-3px) scale(1.017);
  box-shadow: 0 6px 32px #25445C66;
  border-color: #6DC3C1;
  z-index: 2;
}

.cta:active, .cookie-btn:active {
  transform: scale(0.98);
}

::-webkit-scrollbar {
  width: 10px; background: #232F36;
}
::-webkit-scrollbar-thumb {
  background: #25445C; border-radius: 5px;
}

/* Accessibility -------------------------------------------- */
:focus {
  outline: 2px solid #6DC3C1;
  outline-offset: 3px;
}

/* Helper classes ------------------------------------------ */
.text-center { text-align: center !important; }
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-20 { gap: 20px !important; }

/* Industrial Modern: metallic effect accent --------------- */
.metalline {
  background: linear-gradient(90deg,#b6bdc4 0,#fffcea 55%,#b6bdc4 100%);
  height: 4px;
  border-radius: 3px;
  margin: 12px 0 18px 0;
  width: 48px;
  box-shadow: 0 1px 8px #b6bdc422;
}

/* End of CSS */
