/* ================================================== */
/*      CSS RESET & NORMALIZE (mobile-first)          */
/* ================================================== */
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,
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;
  font-size: 16px;
  color: #ebedee;
  background: #151a24;
  -webkit-font-smoothing: antialiased;
  background-color: #101624;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; border: none; outline: none; background: none; }

/* ============================================== */
/*         BRAND VARIABLES (with fallbacks)       */
/* ============================================== */
:root {
  --color-primary: #1A3552;
  --color-primary-rgb: 26, 53, 82;
  --color-secondary: #F4B505;
  --color-accent: #13fff1;
  --color-bg-dark: #101624;
  --color-bg-light: #222c3e;
  --color-bg-section: #19263a;
  --color-white: #ffffff;
  --color-card: #182233;
  --color-neon-blue: #39AFFF;
  --color-neon-green: #13fff1;
  --color-neon-pink: #FF4FE7;
  --color-shadow: rgba(26,53,82, 0.18);
  --color-testimonial-bg: #ffffff;
  --brand-font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --brand-font-body: 'Roboto', Arial, sans-serif;
}

/* ============================================== */
/*                  TYPOGRAPHY                   */
/* ============================================== */
h1, .h1 {
  font-family: var(--brand-font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-neon-blue);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--brand-font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-secondary);
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: var(--brand-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-neon-green);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--brand-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-secondary);
}
p, li {
  font-family: var(--brand-font-body);
  line-height: 1.7;
  font-size: 1rem;
  color: #c5cae9;
}
strong {
  font-weight: 700;
  color: var(--color-neon-green);
}

.main-nav a, .footer-nav a, .mobile-nav a {
  font-family: var(--brand-font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #e8f1ff;
  transition: color 0.16s;
}

.main-nav a:hover,
.footer-nav a:hover,
.mobile-nav a:hover {
  color: var(--color-secondary);
}

/* Typography scale for larger displays */
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.8rem; }
  h2, .h2 { font-size: 2rem; }
  h3, .h3 { font-size: 1.25rem; }
  p     { font-size: 1.08rem; }
}
@media (min-width: 992px) {
  h1, .h1 { font-size: 3rem; }
  h2, .h2 { font-size: 2.25rem; }
  h3, .h3 { font-size: 1.38rem; }
  p     { font-size: 1.12rem; }
}

/* =============================================== */
/*                 LAYOUT & SPACING                */
/* =============================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 var(--color-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.features-grid, .card-container, .team-grid, .blog-post-grid, .content-grid  {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .team-member, .blog-post {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.17);
  padding: 28px 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
}
.features-grid > div:hover, .team-member:hover, .blog-post:hover {
  box-shadow: 0 6px 24px 0 var(--color-neon-blue),0 1.5px 15px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.015);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-testimonial-bg);
  color: #21232c;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.10);
  font-size: 1.08rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 300px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #21232c;
  font-style: italic;
  font-size: 1.05rem;
  font-family: var(--brand-font-body);
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.rating-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-card);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.rating-summary span, .rating-summary ul li {
  color: #f4b505;
  font-weight: 500;
}
.rating-summary img {
  vertical-align: middle;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 14px; background: var(--color-card); box-shadow: 0 1.5px 12px 0 var(--color-shadow); transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 6px 20px 0 var(--color-neon-blue); }
.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; }

/* BLOG GRID STYLING */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.blog-post {
  background: var(--color-card);
  border-radius: 15px;
  box-shadow: 0 2px 13px 0 rgba(20,255,255,0.08);
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 350px;
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.15s;
  border: 1.5px solid transparent;
}
.blog-post:hover {
  box-shadow: 0 6px 25px 0 var(--color-neon-green);
  border-color: var(--color-neon-green);
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-categories li {
  background: #243358;
  color: var(--color-neon-blue);
  padding: 7px 16px;
  border-radius: 16px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.tags span {
  color: var(--color-neon-pink);
  font-size: 0.98rem;
  background: #151a24;
  border-radius: 14px;
  padding: 4px 14px;
  font-style: italic;
}

@media (max-width: 900px) {
  .features-grid, .card-container, .team-grid, .blog-post-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div, .team-member, .blog-post {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 8px; padding-right: 8px; }
}

/* =============================================== */
/*                   HEADER & NAV                  */
/* =============================================== */
header {
  width: 100%;
  background: #131926fa;
  padding: 0 0 6px 0;
  box-shadow: 0 2px 12px 0 rgba(40,255,255,0.17);
  z-index: 100;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 0 16px;
  gap: 20px;
}
.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav .btn-primary {
  margin-left: 12px;
}
/* HIDE mobile nav by default */
.mobile-menu-toggle {
  display: none;
  background: var(--color-neon-blue);
  color: #161d25;
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  padding: 5px 14px 5px 12px;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover {
  background: var(--color-neon-pink);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #0f1723fa;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.82,0.01,0.26,0.99);
  box-shadow: 4px 0 38px 0 #0cfaf656;
  padding: 28px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.41s cubic-bezier(0.7,0.2,0.2,1);
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon-blue);
  font-size: 2.2rem;
  font-weight: 900;
  margin-left: auto;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--color-neon-blue);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fcf8e7;
  border-left: 4px solid transparent;
  padding-left: 13px;
  transition: border-color 0.18s, color 0.18s;
  font-family: var(--brand-font-display);
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .btn-primary:hover {
  color: var(--color-neon-green);
  border-left: 4px solid var(--color-neon-green);
}
.mobile-nav .btn-primary {
  margin-top: 22px;
  background: var(--color-secondary);
  color: #1a3552;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 #f4b50562;
}

@media (max-width: 1080px) {
  .header-bar { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 920px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 0.97rem; }
}
@media (max-width: 900px) {
  .header-bar { gap: 8px; }
  .main-nav .btn-primary { margin-left: 7px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================================== */
/*                BUTTONS & LINKS                  */
/* =============================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--brand-font-display);
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 38px;
  min-width: 160px;
  margin-top: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.16s;
  cursor: pointer;
}
.btn-primary {
  color: #101624;
  background: var(--color-secondary);
  box-shadow: 0 3px 16px 0 #f4b50544;
  border: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-neon-blue);
  color: #fff;
  box-shadow: 0 5px 22px 0 #39AFFF99,0 2px 8px 0 #f4b50561;
}
.btn-secondary {
  color: var(--color-neon-green);
  background: none;
  border: 2.5px solid var(--color-neon-green);
  box-shadow: 0 2px 10px 0 #13fff199;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-neon-green);
  color: #08101D;
  border-color: var(--color-neon-blue);
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}

footer .btn-primary,
footer .btn-secondary {
  min-width: 140px;
  font-size: 1rem;
}

a {
  transition: color 0.15s linear, border-bottom-color 0.15s linear;
}
a:focus { outline: 2px dotted var(--color-secondary); }

/* ============================================== */
/*              CARDS, HIGHLIGHTS                */
/* ============================================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 22px 18px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 1.5px 12px 0 var(--color-shadow);
  padding: 26px 18px 22px 18px;
  margin-bottom: 20px;
  max-width: 325px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.team-member:hover {
  box-shadow: 0 6px 22px 0 var(--color-neon-pink);
  transform: translateY(-3px) scale(1.018);
}
.qualification-highlights {
  margin-top: 28px;
  background: var(--color-bg-light);
  border-radius: 15px;
  padding: 18px 22px;
  color: var(--color-neon-blue);
}
.qualification-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.global-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 14px;
  color: var(--color-secondary);
  font-weight: 600;
}
.global-rating img {
  height: 26px; width: auto;
}
.global-rating a {
  background: none;
  font-size: 1rem;
  color: var(--color-neon-blue);
  text-decoration: underline;
  margin-left: 18px;
}
.global-rating a:hover {
  color: var(--color-secondary);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.contact-snippet {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.13rem;
  color: var(--color-secondary);
}
.contact-snippet img {
  height: 24px; width: auto;
}
@media (max-width: 600px) {
  .contact-snippet { flex-direction: column; gap: 4px; }
}

/* ============================================== */
/*                FOOTER STYLES                   */
/* ============================================== */
footer {
  width: 100%;
  background: #131926fa;
  border-top: 3px solid var(--color-neon-blue);
  padding: 36px 0 18px 0;
  color: #abb2bf;
  font-size: 0.98rem;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.footer-wrapper img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin: 4px 0;
}
.footer-contact {
  margin: 10px 0 1px 0;
  color: #d8efff;
  font-size: 1rem;
  text-align: center;
}
.footer-contact span { color: var(--color-secondary); }
@media (min-width: 780px) {
  .footer-wrapper { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; }
  .footer-nav { margin-left: 22px; margin-right: 22px; }
}

/* ============================================== */
/*            COOKIE CONSENT BANNER               */
/* ============================================== */
.cookie-banner {
  position: fixed;
  z-index: 2200;
  left: 0;
  right: 0;
  bottom: 0;
  background: #151a24;
  color: #d8faff;
  box-shadow: 0 -2px 24px 0 #1a35527e;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 2.5px solid var(--color-neon-green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.33s cubic-bezier(0.55,0,0.1,1), transform 0.33s cubic-bezier(0.55,0,0.1,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p { color: #c5e5ff; margin-bottom: 0; font-size: 1rem; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-btn-accept {
  background: var(--color-neon-green);
  color: #08101D;
  border-radius: 22px;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  transition: background 0.16s, color 0.16s;
  font-size: 1.05rem;
}
.cookie-btn-accept:hover { background: var(--color-secondary); color: #101624; }
.cookie-btn-reject {
  background: none;
  color: var(--color-neon-pink);
  border: 2px solid var(--color-neon-pink);
  border-radius: 22px;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1.02rem;
  transition: all 0.16s;
}
.cookie-btn-reject:hover { background: var(--color-neon-pink); color: #fff; }
.cookie-btn-settings {
  background: none;
  color: var(--color-neon-blue);
  border: 2px solid var(--color-neon-blue);
  border-radius: 22px;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 1.02rem;
  transition: all 0.16s;
}
.cookie-btn-settings:hover { background: var(--color-neon-blue); color: #fff; }

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(16,22,36,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(0.5,0,0.2,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-box {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 3px 40px 0 #39afffc4;
  padding: 38px 28px;
  max-width: 375px;
  width: 96vw;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  color: var(--color-secondary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover { background: var(--color-neon-blue); color: #fff; }
.cookie-modal h2 { font-size: 1.35rem; color: var(--color-secondary); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #151a24;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1.01rem;
}
.cookie-category label span {
  color: var(--color-neon-green);
  font-weight: 700;
  font-family: var(--brand-font-display);
}
.cookie-toggle {
  accent-color: var(--color-neon-blue);
  width: 22px;
  height: 22px;
}
.cookie-category.essential .cookie-toggle {
  display: none !important;
}
.cookie-category.essential label::after {
  content: "(toujours activé)";
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 16px;
  border: none;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-save {
  background: var(--color-neon-blue);
  color: #08101D;
}
.cookie-save:hover { background: var(--color-neon-green); color: #101624; }
.cookie-cancel {
  background: none;
  border: 2px solid var(--color-neon-pink);
  color: var(--color-neon-pink);
}
.cookie-cancel:hover {
  background: var(--color-neon-pink);
  color: #fff;
}

/* ============================================== */
/*        FAQ / SUPPORT SNIPPET STYLES            */
/* ============================================== */
.faq-snippet {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--color-bg-section);
  border-radius: 11px;
  color: var(--color-neon-blue);
  font-size: 1rem;
  box-shadow: 0 1.5px 10px 0 #39AFFF48;
}
.faq-snippet h3 { color: var(--color-secondary); margin-bottom: 7px; font-size: 1.16rem; }
.faq-snippet ul { gap: 5px; display: flex; flex-direction: column; }
.faq-snippet li { font-size: 0.98rem; }

/* ============================================== */
/*                 RESPONSIVENESS                 */
/* ============================================== */
@media (max-width:500px) {
  h1, .h1 { font-size: 1.55rem; }
  h2, .h2 { font-size: 1.26rem; }
  h3, .h3 { font-size: 1.04rem; }
  .btn-primary, .btn-secondary { font-size: 0.93rem; padding: 12px 18px; min-width: 90px; }
  .testimonial-card { min-width: 0; max-width: 100%; }
  .blog-post, .features-grid > div { padding: 18px 9px; }
  .card { padding: 13px 7px; }
  .container { padding-left: 4px; padding-right: 4px; }
}

@media (max-width:420px) {
  .cookie-banner { padding: 16px 2px; font-size: 0.96rem; }
  .cookie-modal-box { padding: 22px 4px; min-width: 88vw; }
}

/* ============================================== */
/*                MICRO-INTERACTIONS              */
/* ============================================== */
.btn-primary:focus, .btn-secondary:focus, .mobile-menu-toggle:focus,
.mobile-menu-close:focus, .cookie-btn-accept:focus, .cookie-btn-settings:focus, .cookie-btn-reject:focus {
  outline: 2.5px dashed var(--color-neon-blue);
}
.features-grid > div:after, .team-member:after, .blog-post:after {
  content: "";
  display: block;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-neon-blue), var(--color-neon-green));
  border-radius: 2.5px;
  transition: width 0.3s cubic-bezier(0.7,0.2,0.2,1);
  margin-top: 12px;
}
.features-grid > div:hover:after,
.team-member:hover:after,
.blog-post:hover:after { width: 75%; }

/* Icon accent for SVGs (neon filter simulation) */
img[src$='.svg'] {
  filter: drop-shadow(0 0 8px var(--color-neon-blue));
  transition: filter 0.18s;
}
.features-grid > div:hover img[src$='.svg'],
.team-member:hover img[src$='.svg'],
.blog-post:hover img[src$='.svg'] {
  filter: drop-shadow(0 0 8px var(--color-neon-green)) drop-shadow(0 0 9px var(--color-neon-blue));
}

/* ============================================== */
/*         SCROLLBAR & SELECTION STYLES           */
/* ============================================== */
::-webkit-scrollbar { width: 10px; background: #222c3e; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #222c3e, #1A3552, #13fff1 50%, #222c3e 100%); border-radius: 8px;}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg,#13fff1 0%,#FF4FE7 50%,#1A3552 100%); }

::selection { background: #13fff1; color: #222c3e; }

/* =============================================== */
/*           CUSTOM COMPONENT CLASSES              */
/* =============================================== */
.contact-details, .contact-support {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}
@media (max-width: 740px) {
  .contact-details, .contact-support {
    flex-direction: column;
    gap: 15px;
  }
}

/* Prevent overlapping in all cards/sections */
.section > *, .container > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.container > *:last-child,
.content-wrapper > *:last-child { margin-bottom: 0; }

/* Generic transitions for links and controls */
a, button, .btn-primary, .btn-secondary {
  transition: color 0.14s, background 0.16s, border-color 0.14s, box-shadow 0.16s, transform 0.16s;
}

/* End of CSS */
