/* ------------------------------------------------------------------
   CSS RESET & BASE STYLES (Normalize - Flexbox only)
------------------------------------------------------------------- */
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, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, footer, header, nav, section, figure, figcaption, hr, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #1c232e;
  color: #e8ebf3;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #FFD43B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF7BE;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0;
}
ul { list-style: disc inside; }
strong { font-weight: 700; }
::-webkit-input-placeholder, ::placeholder {color:#888; opacity:1;}

/* ------------------------------------------------------------------
   VARIABLES & BRAND STYLES (Industrial Modern)
------------------------------------------------------------------- */
:root {
  --color-primary: #22355A;
  --color-secondary: #E8EBF3;
  --color-accent: #FFD43B;
  --color-bg-dark: #1c232e;
  --color-bg-darker: #161b24;
  --color-border: #2e3a4d;
  --color-metal: #8A929C;
  --color-input-bg: #232b36;
  --color-card-bg: #222733;
  --color-testimonial-bg: #f9fafc;
  --color-shadow: 0 2px 16px rgba(30,34,44,0.18);
}

/* ------------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFD43B;
  text-shadow: 0 1px 0 rgba(34,53,90,0.12);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  color: #FFD43B;
}
h2 {
  font-size: 2rem;
  color: #FFD43B;
}
h3 {
  font-size: 1.3rem;
  color: #E8EBF3;
  margin-bottom: 8px;
}
h4, h5 {
  font-size: 1.1rem;
}
p, li, blockquote, span, label {
  color: #E8EBF3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.subtitle {
  color: #8A929C;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0;
}
blockquote {
  border-left: 5px solid var(--color-accent);
  background: #232933;
  color: #E8EBF3;
  padding: 18px 28px;
  margin: 16px 0;
  font-size: 1.1rem;
  font-style: italic;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* ------------------------------------------------------------------
   HEADER & NAVIGATION (Industrial Modern with Metal accent)
------------------------------------------------------------------- */
header {
  background: var(--color-bg-darker);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(30,34,44,0.10);
  border-bottom: 2px solid #232933;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.logo img {
  height: 44px;
  transition: filter 0.2s;
  filter: grayscale(10%) brightness(1.05) drop-shadow(0 1px 0 #22355A);
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 38px;
}
nav.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  padding: 2px 0;
  position: relative;
  transition: color 0.18s;
}
nav.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-accent);
  transition: width 0.17s cubic-bezier(0.6,0,0.4,1);
  position: absolute;
  left: 0; bottom: -3px;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--color-accent);
}
nav.main-nav a:hover:after,nav.main-nav a:focus:after {
  width: 100%;
}

/* CTA BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(30,34,44,0.10);
  background: linear-gradient(92deg,#22355A 75%, #434750 98%);
  color: #FFD43B;
  border: none;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.18s, color 0.18s;
  margin-left: 18px;
  margin-right: 0;
  outline: none;
  position: relative;
}
.btn-primary {
  background: linear-gradient(92deg,#22355A 75%, #434750 98%);
  color: #FFD43B;
  border: 1.7px solid #FFD43B;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FFD43B;
  color: #22355A;
  box-shadow: 0 2px 10px 0 #FFD43B55, 0 4px 32px 0 rgba(34, 53, 90,0.18);
}
.btn-secondary {
  background: #22355A;
  color: #E8EBF3;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #2e426e;
}

/* ------------------------------------------------------------------
   MOBILE NAVIGATION (Hamburger)
------------------------------------------------------------------- */
.mobile-menu-toggle {
  background: none;
  color: #FFD43B;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 6px 12px;
  z-index: 2100;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #232933;
}
@media (min-width: 1040px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34, 41, 51, 0.97);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding-top: 32px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #FFD43B;
  border: none;
  position: absolute;
  top: 18px; right: 18px;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  z-index: 2200;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232933;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFD43B;
  padding: 11px 0 11px 0;
  border-bottom: 1px solid #22355A33;
  width: 85vw;
  max-width: 400px;
  transition: background 0.15s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22355A;
  color: #E8EBF3;
}
@media (min-width: 1040px) {
  .mobile-menu {
    display: none !important;
  }
  nav.main-nav {
    display: flex !important;
  }
}
@media (max-width: 1039px) {
  nav.main-nav,
  .btn.btn-primary {
    display: none !important;
  }
}

/* ------------------------------------------------------------------
   FLEX SPACING & ALIGNMENT - GLOBAL PATTERNS
------------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card-bg);
  box-shadow: var(--color-shadow);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 30px 22px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 #22355A33;
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f9fafc;
  color: #22355A;
  border-left: 6px solid var(--color-accent);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 #22355A17;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  min-width: 220px;
}
.testimonial-card p {
  color: #22355A;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-card .client {
  font-size: 0.97rem;
  color: #555B68;
  font-style: italic;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------------------
   HERO & SECTION-SPECIFIC STYLES
------------------------------------------------------------------- */
.hero {
  background: linear-gradient(86deg, #22355a 76%, #232933 100%);
  box-shadow: 0 0 56px 0 #22355a13;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 640px) {
  .hero {
    min-height: 140px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
}

.features, .about, .services, .cta, .contact-info, .privacy-policy, .gdpr-info, .cookies-policy, .terms-of-use {
  background: var(--color-bg-darker);
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 #22355a15;
}
.features .content-wrapper > h2 {
  color: var(--color-accent);
}

.feature-grid, .expert-profiles, .credentials-list, .key-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  justify-content: flex-start;
  list-style: none;
}
.feature-grid li, .expert-profiles li, .key-benefits li {
  background: #232933;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 #22355a10;
  border-left: 4px solid var(--color-accent);
  padding: 16px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 180px;
  max-width: 340px;
}
.feature-grid img, .key-benefits img, .credentials-list img, .features img {
  width: 38px;
  height: 38px;
  filter: grayscale(70%) contrast(1.1) drop-shadow(0 1px 0 #FFD43B44);
}

/* Cards for services, workshops, blog-posts */
.services-grid, .blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
  align-items: stretch;
}
.services-grid > div,
.blog-post-grid > article {
  background: var(--color-card-bg);
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 1px 16px 0 #22355A18;
  padding: 26px 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 336px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.services-grid > div:hover,
.blog-post-grid > article:hover {
  box-shadow: 0 6px 36px 0 #FFD43B21;
  transform: translateY(-5px) scale(1.011);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 18px 0 6px 0;
}
.tag-cloud span {
  background: #232933;
  color: #FFD43B;
  border-radius: 7px;
  font-size: 0.97rem;
  padding: 5px 13px 6px 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
}

.popular-articles {
  margin-top: 12px;
  list-style-type: square;
}
.popular-articles li a {
  color: #FFD43B;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
  font-weight: 500;
}
.popular-articles li a:hover {
  color: #FFBB00;
}

/* Service/workshop/course lists */
.services-list, .workshop-list, .course-list, .credentials-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 12px 0 9px 0;
  padding-left: 0;
  list-style: none;
}
.services-list li, .workshop-list li, .course-list li, .credentials-list li {
  background: #232933;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 #22355A0d;
  border-left: 4px solid var(--color-accent);
  padding: 13px 18px 13px 18px;
  color: #E8EBF3;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-list span, .workshop-list span, .course-list span {
  color: var(--color-accent);
  font-weight: 500;
  margin-left: 10px;
}

/* Contact info */
.contact-info .content-wrapper > div {
  margin-bottom: 22px;
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #E8EBF3;
}
.contact-info img {
  width: 26px;
  height: 26px;
}

/* CTA section */
.cta {
  background: linear-gradient(96deg, #22355a 85%, #232933 100%);
  color: #FFD43B;
  box-shadow: 0 4px 24px 0 #FFD43B19;
  border-radius: 17px;
  padding: 46px 22px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  width: 100%;
}
.cta h2 { color: #FFD43B; text-shadow: 0 2px 6px #22355A22; }
.cta p { color: #E8EBF3; font-size: 1.12rem; }

@media (max-width: 700px) {
  .cta { padding: 32px 10px; }
  .cta .content-wrapper { align-items: flex-start; }
}

/* ------------------------------------------------------------------
   FOOTER (Industrial Modern)
------------------------------------------------------------------- */
footer {
  background: #161b24;
  color: #8A929C;
  padding: 40px 0 32px 0;
  border-top: 2px solid #232933;
  box-shadow: 0 -2px 14px 0 #22355A12;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #FFD43B;
}
.footer-brand img {
  height: 36px;
  filter: grayscale(26%) brightness(1.13);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #8A929C;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD43B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
@media (max-width: 920px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: start;
  }
  .footer-brand { margin-bottom: 8px; }
  .footer-contact { margin-top: 8px; }
}

/* ------------------------------------------------------------------
   RESPONSIVE TYPOGRAPHY
------------------------------------------------------------------- */
@media (max-width: 900px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.45rem; }
  .feature-grid li, .expert-profiles li, .key-benefits li { min-width: 130px; max-width: 320px; }
}
@media (max-width: 620px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1.09rem; }
  .feature-grid li, .expert-profiles li, .key-benefits li, .services-grid > div, .blog-post-grid > article {
    min-width: 106px;
    max-width: 99vw;
    padding: 14px 8px;
  }
  .services-list li, .workshop-list li, .course-list li { padding: 8px 6px 8px 10px }
}

/* ------------------------------------------------------------------
   ANIMATIONS
------------------------------------------------------------------- */
.btn, .services-grid > div, .card, .testimonial-card, .blog-post-grid > article {
  transition: box-shadow 0.18s, transform 0.15s, background 0.18s, color 0.15s;
}
.card:hover, .testimonial-card:hover, .blog-post-grid > article:hover {
  box-shadow: 0 8px 30px 0 #FFD43B24;
  transform: translateY(-4px) scale(1.015);
}

/* Focus outline for a11y */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* ------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232933;
  color: #E8EBF3;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 2500;
  box-shadow: 0 -4px 30px 0 #22355A14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  gap: 30px;
  animation: slideUpBanner 0.53s cubic-bezier(.13,.64,.5,1) 1;
}
.cookie-banner.hide {
  display: none;
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1.02rem;
  max-width: 440px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  background: #FFD43B;
  color: #22355A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 10px 24px;
  font-size: 1rem;
  margin: 0;
  box-shadow: 0 1px 8px 0 #FFD43B22;
  cursor: pointer;
  transition: background 0.20s, color 0.15s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #22355A;
  color: #FFD43B;
}
.cookie-btn.secondary {
  background: #232933;
  border: 1.7px solid #FFD43B;
  color: #FFD43B;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #FFD43B;
  color: #22355A;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #111822e0;
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInBackdrop 0.2s;
}
@keyframes fadeInBackdrop {
  from {opacity: 0;} to {opacity:1;}
}
.cookie-modal {
  background: #232933;
  color: #E8EBF3;
  border-radius: 15px 15px 0 0;
  max-width: 420px;
  width: 90vw;
  margin-bottom: 0;
  box-shadow: 0 2px 32px 0 #22355A3a;
  padding: 36px 28px 27px 28px;
  animation: slideCookieModal 0.45s cubic-bezier(.34,.66,.58,1.27);
  z-index: 3010;
  position: relative;
}
@keyframes slideCookieModal {
  0% { transform: translateY(110%); opacity: 0; }
  78% { transform: translateY(-10px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #FFD43B;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  flex: 1 1 0;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: #22355A;
  position: relative;
  outline: none;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #FFD43B;
}
.cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E8EBF3;
  box-shadow: 0 1px 3px #22355A22;
  transition: left 0.19s, background 0.18s;
}
.cookie-toggle:checked:after {
  left: 19px;
  background: #22355A;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 9px;
  background: none;
  border: none;
  color: #FFD43B;
  font-size: 1.55rem;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 7px;
  transition: background 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FFD43B11;
}

@media (max-width: 700px) {
  .cookie-banner-content { max-width: 98vw; font-size: 0.99rem; }
  .cookie-modal { max-width: 96vw; padding: 22px 9vw 17px 8vw; }
}
@media (max-width: 440px) {
  .cookie-banner { padding: 11px 2px; flex-direction: column; gap: 12px; }
  .cookie-banner .cookie-banner-actions { gap: 10px; }
  .cookie-modal { padding: 12px 2vw 12px 2vw; }
}

/* General Modal Animation reset helper (optional) */
body.modal-open {
  overflow: hidden;
}

/* ------------------------------------------------------------------
   UTILITIES
------------------------------------------------------------------- */
.hide { display: none !important; }
.text-center {text-align: center;}
.fw-bold {font-weight: bold;}
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.mb-2 {margin-bottom: 16px !important;}
.gap-2 {gap: 16px;}
.no-select {user-select: none;}

// END CSS
