/* ==== 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;
}

/* 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: #181B20;
  color: #FDF5EA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #46A688;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FDF5EA;
  text-decoration: underline;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FDF5EA;
  line-height: 1.12;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(15,27,40,0.22);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 6px rgba(15,27,40,0.17);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #46A688;
  letter-spacing: 0.012em;
}
h4, h5, h6 {
  font-size: 1.06rem;
  margin-bottom: 12px;
  color: #acc5ce;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #FDF5EA;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  color: #FDF5EA;
  font-weight: bold;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-style: italic;
  border-left: 4px solid #46A688;
  color: #181B20;
  background: #FDF5EA;
  margin: 0 0 16px 0;
  padding: 18px 24px;
  border-radius: 3px;
  box-shadow: 0 3px 12px rgba(23,64,106,0.08);
}

/* === Brand Colors as CSS Vars === */
:root {
  --primary: #17406A;
  --secondary: #46A688;
  --accent: #FDF5EA;
  --industrial-dark: #181B20;
  --industrial-charcoal: #23262a;
  --industrial-metal: #434952;
  --industrial-steel: #b7bbc1;
  --industrial-highlight: #f1c674;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0;
}

/* ==== HEADER / NAV ==== */
header {
  background: var(--industrial-charcoal);
  border-bottom: 3px solid var(--industrial-metal);
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FDF5EA;
  letter-spacing: 0.03em;
  position: relative;
  padding: 7px 0;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta.primary {
  background: var(--secondary);
  color: #181B20;
  border-radius: 5px;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(70,166,136,0.10);
  border: 1.6px solid var(--industrial-steel);
  transition: background 0.20s, color 0.20s, box-shadow 0.15s;
  margin-left: 24px;
  margin-right: 8px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(70,166,136,0.18);
}
header .mobile-menu-toggle {
  background: none;
  border: none;
  color: #FDF5EA;
  font-size: 2rem;
  margin-left: 18px;
  padding: 9px 14px;
  border-radius: 6px;
  display: none;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 200;
}
header .mobile-menu-toggle:active, header .mobile-menu-toggle:focus {
  background: var(--industrial-metal);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 350px;
  height: 100vh;
  background: #23262a;
  box-shadow: -2px 0 20px rgba(23,64,106,0.18);
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.62,0.07,0.49,0.98);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 10px 0 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 18px;
  font-size: 2rem;
  background: none;
  color: #acc5ce;
  border: none;
  cursor: pointer;
  z-index: 210;
  padding: 0 10px;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FDF5EA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #FDF5EA;
  letter-spacing: 0.025em;
  padding: 10px 0 10px 0;
  border-bottom: 1.2px solid rgba(112,141,155,0.08);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}
body.mobile-menu-open {
  overflow: hidden;
}

/* ==== HERO / SECTION BASE ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
}
.hero {
  background: linear-gradient(120deg, #17406A 60%, #434952 100%);
  box-shadow: 0 9px 30px rgba(23,64,106,.18), 0 0.5px 1.2px rgb(70,166,136,0.08);
  border-bottom: 1.5px solid var(--industrial-steel);
  color: #FDF5EA;
}
.hero h1 {
  color: #fdf5ea;
  font-size: 2.4rem;
  text-shadow: 0 4px 18px #10141980;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #f2e7d4;
  margin-bottom: 20px;
  font-weight: 500;
  max-width: 540px;
}

/* ==== FLEX SPACING (MANDATORY PATTERNS) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23262a;
  border-radius: 8px;
  box-shadow: 0 6px 36px rgba(34,34,44,0.13);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 14px 54px rgba(70,166,136,0.13), 0 2px 9px rgba(23,64,106,0.13);
  transform: translateY(-4px) scale(1.012);
}
.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #FDF5EA;
  color: #181B20;
  border-radius: 7px;
  box-shadow: 0 5px 22px #23262a15, 0 1.5px 5px #43495218;
  margin-bottom: 20px;
  min-width: 280px;
  flex: 1 1 280px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 52px #43495225, 0 4px 14px rgba(70,166,136,0.11);
  transform: scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23262a;
  border-radius: 10px;
  border: 1.4px solid #434952;
  box-shadow: 0 4px 17px #43495210;
  padding: 24px 20px 20px;
  min-width: 210px;
  flex: 1 1 180px;
  transition: border-color 0.18s, box-shadow 0.15s;
}
.feature-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 34px #46a68825, 0 3px 10px #17406a15;
}

/* === Additional Spacing for major section patterns === */
.section { /* generic usage in some content pages */
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== SERVICES, FEATURES, BLOG, ETC. ==== */
.feature-grid, .methods-grid, .testimonial-slider, .testimonial-grid, .article-feed, .course-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.methods-grid, .feature-grid, .testimonial-grid, .course-catalog {
  margin-bottom: 32px;
}
.services-list, .module-list, .benefits-overview ul, .experience-highlights ul, .success-metrics ul, .learning-options ul, .course-highlights ul, .star-ratings, .featured-posts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  padding-left: 0;
}
.benefits-overview ul li, .experience-highlights ul li, .success-metrics ul li, .learning-options ul li, .course-highlights ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #FDF5EA;
}
.services-list li, .module-list li {
  background: #23262a;
  border-radius: 7px;
  padding: 16px 20px 17px 17px;
  margin-bottom: 18px;
  border-left: 4px solid #17406A;
  min-width: 220px;
  box-shadow: 0 2px 12px #4349520F;
}
.services-list li:last-child, .module-list li:last-child {
  margin-bottom: 0;
}

.blog-list {
  background: #23262a;
  border-radius: 13px;
  box-shadow: 0 3px 18px #23262a13;
}
.article-feed {
  gap: 24px;
  margin-bottom: 20px;
}
.blog-post {
  background: #181B20;
  border: 1px solid #434952;
  border-radius: 6px;
  box-shadow: 0 2px 9px #43495211;
  padding: 18px 18px 17px 20px;
  min-width: 220px;
  transition: box-shadow 0.14s, border-color 0.2s;
}
.blog-post h3 {
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.blog-post a {
  color: #46A688;
  transition: color .17s;
}
.blog-post a:hover {
  color: #FDF5EA;
}

.featured-posts {
  background: #181B20;
  border-radius: 7px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px #4349521A;
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}


/* ==== TESTIMONIALS ==== */
.testimonials, .testimonial-slider, .testimonial-grid {
  background: none;
  gap: 24px;
}
.testimonial-meta {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  margin-top: 0;
  color: #434952;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-meta .name {
  font-weight: 700;
  color: #17406A;
}
.testimonial-meta .city {
  font-style: italic;
  color: #46A688;
}
.ratings-summary, .star-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #FDF5EA;
  background: #23262a;
  border-radius: 5px;
  padding: 7px 14px;
  margin-top: 12px;
  font-size: 1rem;
  box-shadow: 0 1px 7px #43495213;
}
.ratings-summary img, .star-ratings img {
  height: 21px;
  width: 21px;
}

.video-testimonials {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 24px;
  align-items: flex-start;
}
.video-testimonials .text-section {
  flex: 3 1 260px;
  background: #1A2127;
  border-radius: 7px;
  padding: 20px 23px;
  color: #FDF5EA;
  box-shadow: 0 1px 5px #43495214;
}


/* ==== LEGAL PAGES, FAQ, CONTACT, ETC. ==== */
.legal, .faq, .privacy-policy-sections, .cookie-policy-sections, .terms-of-service-sections {
  background: #23262a;
  border-radius: 11px;
  box-shadow: 0 1px 6px #43495215;
}
.legal h1, .faq h2 {
  color: #FDF5EA;
}
.privacy-policy-sections, .cookie-policy-sections, .terms-of-service-sections, .rgpd-overview, .user-rights-info, .legal-guarantees {
  margin-bottom: 24px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #23262a;
  border: 1.5px solid #434952;
  border-radius: 6px;
  padding: 20px 22px;
  box-shadow: 0 1px 9px #43495210;
  transition: border-color 0.18s;
}
.faq-item h3 {
  cursor: pointer;
  margin-bottom: 9px;
}
.faq-item .answer {
  padding-left: 5px;
}

.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: #FDF5EA;
  margin-bottom: 9px;
}
.contact-details ul {
  padding-left: 4px;
  margin: 0 0 17px 0;
}
.map-address {
  background: #181B20;
  border-radius: 6px;
  padding: 18px 18px 16px 19px;
  margin-top: 20px;
  box-shadow: 0 1.5px 6px #43495210;
}

/* ==== FOOTER ==== */
footer {
  background: var(--industrial-charcoal);
  border-top: 3px solid #434952;
  padding: 36px 0 22px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-branding img {
  height: 36px;
}
.footer-branding p {
  color: #acc5ce;
  font-size: 0.96rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.98rem;
  color: #b7bbc1;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #FDF5EA;
}

/* ==== CTA SECTION & BUTTONS ==== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 5px;
  padding: 13px 36px;
  background: var(--primary);
  color: #FDF5EA;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 2px solid var(--industrial-steel);
  box-shadow: 0 1.5px 8px #43495212;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: var(--secondary);
  color: var(--industrial-dark);
  box-shadow: 0 5px 19px #46a68815, 0 1.5px 6px #17406a12;
}

/* ==== TABLES, FORMS (for possible extension) ==== */
table {
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  border: 1px solid #434952;
  padding: 10px 16px;
  font-size: 1rem;
  text-align: left;
  background: #181B20;
  color: #FDF5EA;
}
th {
  background: #23262a;
  font-weight: bold;
}

input, textarea, select {
  background: #23262a;
  color: #FDF5EA;
  border: 1.5px solid #434952;
  border-radius: 4px;
  padding: 11px 13px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #46A688;
  outline: none;
  box-shadow: 0 2px 11px #46a68822;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--primary);
  color: #FDF5EA;
  border: none;
  border-radius: 5px;
  padding: 12px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.17s, box-shadow 0.12s;
}
button:hover, button:focus {
  background: var(--secondary);
  color: #181B20;
  box-shadow: 0 3px 15px #46a68813;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #23262a;
  box-shadow: 0 -4px 30px #43495228, 0 2px 9px #43495208;
  color: #FDF5EA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 25px;
  border-top: 3px solid #b7bbc1;
  font-size: 1rem;
  transition: transform 0.30s cubic-bezier(.90,-0.07,.67,1), opacity 0.20s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: #181B20;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 22px;
  font-size: 1.06rem;
  border: none;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.16s, color 0.17s, box-shadow 0.12s;
  box-shadow: 0 1px 3px #43495215;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus{
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  border: 1.2px solid #434952;
  color: #FDF5EA;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus{
  background: #434952;
  color: var(--accent);
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(30,34,40,0.85);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  display: flex;
  animation: fade-in-modal 0.25s ease;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #23262a;
  border-radius: 11px;
  max-width: 420px;
  width: 100%;
  padding: 30px 30px 24px 30px;
  color: #FDF5EA;
  box-shadow: 0 19px 60px #17406a14, 0 1.5px 7px #43495214;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slide-up-modal 0.22s cubic-bezier(.31,.66,.48,1.1);
}
@keyframes slide-up-modal {
  from { transform: translateY(40px); }
  to { transform: translateY(0); }
}
.cookie-modal h3 {
  color: #46A688;
  font-size: 1.28rem;
  margin-bottom: 8px;
  margin-top: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 24px;
  right: 36px;
  background: none;
  border: none;
  color: #acc5ce;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FDF5EA;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 24px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #46A688;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
.cookie-category label {
  color: #FDF5EA;
  font-size: 1.05rem;
}
.cookie-category.essential label {
  color: #8de6c0;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 9px 22px;
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .blog-post, .feature-item, .testimonial-card, .faq-item, .cta, .cookie-banner, .mobile-menu {
  transition: box-shadow 0.2s, transform 0.14s, background 0.2s, border-color 0.23s;
}

/* ==== RESPONSIVE DESIGN + FLEXBOX LAYOUTS ==== */
@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: unset;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .methods-grid, .testimonial-grid, .course-catalog, .article-feed {
    flex-direction: column;
    gap: 18px;
  }
  .video-testimonials {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  section, .section {
    padding: 28px 7px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .main-nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-block;
  }
  .cta.primary {
    margin-left: 8px;
    padding: 10px 19px;
    font-size: 0.98rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .video-testimonials .text-section {
    padding: 17px 9px;
  }
  .feature-grid, .methods-grid, .testimonial-grid, .testimonial-slider, .course-catalog {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .header .container, .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 5px;
  }
  h1 {
    font-size: 1.44rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 1.01rem;
    margin-bottom: 7px;
  }
  .cta, .cta.primary, button, .cookie-banner .cookie-btn {
    font-size: 0.97rem;
    padding: 9px 13px;
  }
  .services-list li, .module-list li {
    padding: 12px 9px 12px 7px;
    font-size: 0.99rem;
  }
  .card, .feature-item, .testimonial-card, .blog-post {
    padding: 13px 7px 14px 9px;
  }
  .newsletter-signup {
    gap: 10px;
  }
  .testimonial-card blockquote {
    padding: 15px 10px;
    font-size: 0.99rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 14px 9px;
    font-size: 0.95rem;
  }
  .cookie-modal .modal-content {
    padding: 13px 7px;
    max-width: 99vw;
  }
}

/* ==== UTILITIES ==== */
.muted {
  color: #b7bbc1;
  font-size: 0.93em;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-16 { margin-top: 16px !important; }

/* ==== SELECTED METALLIC ACCENTS & DETAILING ==== */
.feature-item, .services-list li, .module-list li, .card, .blog-post {
  border-left: 4px solid var(--industrial-metal);
}
.card:hover, .feature-item:hover, .services-list li:hover, .module-list li:hover {
  border-left-color: var(--secondary);
}
/* Industrial separators (lines) */
hr {
  border: 0;
  border-top: 1.5px dashed var(--industrial-metal);
  margin: 26px 0;
}
/* Decorative accents for buttons */
.cta.primary::after, .cookie-banner .cookie-btn::after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 10px; height: 10px;
  background: var(--industrial-metal);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" ><path fill="%23fff" d="M0 0h10v10H0z"/><path d="M2 5l3 3 3-3" stroke="white" stroke-width="2" fill="none" /></svg>') center/contain no-repeat;
  vertical-align: middle;
  opacity: 0.55;
  transition: opacity 0.18s;
}
.cta.primary:active::after, .cookie-banner .cookie-btn:active::after {
  opacity: 1;
}

/* ==== PRINT MEDIA ==== */
@media print {
  .cookie-banner, .cookie-modal, header .mobile-menu { display: none !important; }
}
