/*------------------------------------------------------------
  CSS RESET & BASE
------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #22223B;
  color: #F2E9E4;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(135deg, #22223B 60%, #4A4E69 100%);
  transition: background 0.7s cubic-bezier(.4,.8,.2,1);
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: none;
}
a {
  color: #9A8CFC;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,.8,.2,1);
}
a:hover, a:focus {
  color: #E9C46A;
  outline: none;
}

/*------------------------------
  TYPOGRAPHY
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #F2E9E4;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #F2E9E4;
}
.subheadline {
  font-size: 1.125rem;
  font-weight: 400;
  color: #E4DEF7;
  margin-bottom: 32px;
  opacity: .88;
}
strong {
  color: #9A8CFC;
}
p, ul, ol, blockquote, .text-section p {
  margin-bottom: 18px;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #22223B;
  background: #F2E9E4;
  border-left: 4px solid #9A8CFC;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 12px;
}

ul, ol {
  margin-left: 24px;
}
li + li {
  margin-top: 8px;
}


/*------------------------------
  BASE CONTAINERS
------------------------------*/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*------------------------------
  HEADER & NAV
------------------------------*/
header {
  background: #22223B;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 32px 0 rgba(36,42,94,0.12);
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  min-height: 74px;
  justify-content: flex-start;
}
.main-navigation img {
  height: 42px;
  margin-right: 25px;
  vertical-align: bottom;
}
.main-navigation a {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 7px 16px;
  color: #F2E9E4;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-navigation a:hover:not(.button-primary),
.main-navigation a:focus:not(.button-primary) {
  background: #353557;
  color: #9A8CFC;
}
.button-primary {
  background-color: #9A8CFC;
  color: #22223B;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 12px 1px #9A8CFC40;
  padding: 9px 28px;
  border: none;
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.button-primary:hover, .button-primary:focus {
  background: #E9C46A;
  color: #22223B;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 18px 2px #E9C46A60;
}
header .mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #9A8CFC;
  margin-left: auto;
  padding: 6px 12px;
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
  z-index: 1200;
}
header .mobile-menu-toggle:focus {
  color: #fff200;
  outline: none;
}

/*------------------------------
  MOBILE NAVIGATION
------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34, 34, 59, 0.98);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  transition: opacity 0.36s cubic-bezier(.4,.8,.2,1), transform 0.36s cubic-bezier(.4,.8,.2,1);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #9A8CFC;
  font-size: 2rem;
  margin: 24px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 2500;
}
.mobile-menu-close:focus {
  color: #E9C46A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 32px;
  gap: 24px;
  padding: 0 36px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  color: #F2E9E4;
  background: #353557;
  border-radius: 12px;
  font-size: 1.19rem;
  padding: 12px 28px;
  margin-bottom: 4px;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: right;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E9C46A;
  background: #4A4E69;
}

@media (max-width: 1050px) {
  .main-navigation {
    gap: 10px;
  }
  .main-navigation a {
    font-size: 0.98rem;
    padding: 7px 10px;
  }
  .main-navigation img {
    height: 38px;
    margin-right: 10px;
  }
}

@media (max-width: 890px) {
  .main-navigation a.button-primary {
    padding: 8px 15px;
    font-size: 1rem;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .main-navigation a:not(:first-child) {
    display: none;
  }
  .main-navigation a.button-primary {
    display: none !important;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

/*------------------------------
  HERO SECTION
------------------------------*/
.hero {
  background: linear-gradient(110deg, #343450 50%, #4A4E69 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  border-bottom: 2px solid #312F45;
  box-shadow: 0 8px 42px 0 #19183344;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #9A8CFC;
  text-shadow: 0 0 12px #9A8CFC60;
  margin-bottom: 18px;
}
.hero .button-primary {
  margin-top: 22px;
  box-shadow: 0 8px 24px 0 #6454c944;
}

/*------------------------------
  SECTIONS & FLEX CONTAINERS
------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #2B2C48;
  border-radius: 18px;
  box-shadow: 0 2px 12px 3px #9A8CFC0a;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 36px 10px #9A8CFC22;
  transform: translateY(-4px) scale(1.03);
}

/* Content grid pattern */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text-image section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Testimonial cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F2E9E4;
  color: #22223B !important;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 #4A4E6933;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card blockquote {
  color: #22223B;
  background: none;
  border-left: 4px solid #9A8CFC;
  margin-bottom: 0;
}
.testimonial-card div {
  color: #2B2C48;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px 0 #4A4E693B;
  transform: translateY(-2px) scale(1.01);
}

.star-rating-summary {
  margin: 18px 0 10px;
  color: #F2E9E4;
  background: #343450;
  border-radius: 11px;
  padding: 7px 14px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 0 18px 1px #9A8CFC25;
}

/* Feature pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 12px;
  background: #232443;
  border-radius: 12px;
}

/*------------------------------------------
  SPECIFIC SECTION STYLES
------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #2B2C48;
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 #9A8CFC0a;
  padding: 28px 20px 22px 20px;
  min-width: 210px;
  flex: 0 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  position: relative;
  border: 1px solid #302e5a;
  transition: box-shadow 0.19s, border 0.17s;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px #9A8CFC44);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4px 32px 0 #9A8CFC33;
  border-color: #9A8CFC;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.text-section ul {
  margin-left: 24px;
}
.team-teaser {
  background: #4A4E691d;
  color: #9A8CFC;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  margin-top: 14px;
  box-shadow: 0 2px  12px 0 #9A8CFC11;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}
.service-list li {
  background: #2B2C48;
  border-radius: 12px;
  padding: 24px 16px 16px 16px;
  flex: 1 1 270px;
  min-width: 210px;
  box-shadow: 0 1px 14px 0 #9A8CFC0a;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #322e48;
  transition: box-shadow 0.19s, border 0.17s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 4px 28px 0 #9A8CFC33;
  border-color: #9A8CFC;
}
.price {
  color: #E9C46A;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.09rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.service-cards li {
  background: #232443;
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 #9A8CFC0a;
  padding: 24px 16px 16px 16px;
  min-width: 210px;
  flex: 1 1 260px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #302e5a;
  transition: box-shadow 0.19s, border 0.17s;
}
.service-cards li:hover, .service-cards li:focus-within {
  box-shadow: 0 4px 28px 0 #9A8CFC33;
  border-color: #9A8CFC;
}

.category-filters {
  margin: 28px 0 0 0;
  color: #BFC0E5;
}
.category-filters strong {
  color: #E9C46A;
}
.category-filters span {
  color: #9A8CFC;
  font-weight: 500;
  margin: 0 7px 0 0;
}

.blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.blog-post-previews > div {
  background: #2B2C48;
  border-radius: 13px;
  flex: 1 1 280px;
  min-width: 220px;
  padding: 22px 17px 15px 17px;
  box-shadow: 0 1px 12px 0 #9A8CFC10;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 0;
  border: 1px solid #302e5a;
  transition: box-shadow 0.16s, border 0.16s;
}
.blog-post-previews > div:hover, .blog-post-previews > div:focus-within {
  box-shadow: 0 4px 24px 0 #9A8CFC25;
  border-color: #9A8CFC;
}
.blog-post-previews a {
  color: #E9C46A;
  font-weight: 700;
  margin-top: 11px;
  text-decoration: underline;
}
.blog-post-previews a:hover {
  color: #9A8CFC;
}

.cta-box {
  border-radius: 18px;
  background: linear-gradient(105deg, #9A8CFC 85%, #4A4E69 100%);
  color: #22223B;
  padding: 32px 23px;
  text-align: left;
  box-shadow: 0 4px 28px 0 #9A8CFC25;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-box h2, .cta-box h3 {
  color: #22223B;
  margin-bottom: 10px;
}
.cta-box p {
  color: #322e40;
  margin-bottom: 21px;
}
.cta-box .button-primary {
  margin-top: 12px;
}

.city-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.city-list-grid > div {
  background: #2B2C48;
  border-radius: 16px;
  flex: 1 1 240px;
  min-width: 180px;
  padding: 22px 14px 14px 14px;
  box-shadow: 0 1px 14px 0 #9A8CFC14;
  margin-bottom: 0;
  border: 1px solid #302e5a;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.city-list-grid h3 {
  color: #9A8CFC;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.success-statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  background: none;
}
.success-statistics li {
  background: #2B2C48;
  padding: 20px 18px;
  border-radius: 11px;
  color: #E9C46A;
  font-size: 1.04rem;
  font-weight: 600;
  min-width: 180px;
  flex: 1 1 180px;
}

.quote-highlight {
  background: #F2E9E4;
  color: #22223B;
  border-left: 4px solid #E9C46A;
  padding: 20px 30px;
  border-radius: 13px;
  margin: 20px 0 0 0;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 14px 0 #E9C46A10;
}

/*------------------------------------------------------------
  FOOTER
------------------------------------------------------------*/
footer {
  background: #22223B;
  color: #fff;
  padding: 36px 0 12px 0;
  box-shadow: 0 -6px 54px 0 #9A8CFC07;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #9A8CFC;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #E9C46A;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  color: #E4DEF7;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 5px;
}
.footer-brand span:first-of-type {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F2E9E4;
}
.footer-brand span:not(:first-of-type) {
  font-weight: 400;
  color: #BFC0E5;
  font-size: 0.96rem;
}

/*------------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2B2C48;
  color: #F2E9E4;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 14px 14px 14px;
  box-shadow: 0 0 28px 8px #9A8CFC55;
  font-size: 0.98rem;
  width: 100vw;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.4,.8,.2,1), bottom 0.32s cubic-bezier(.4,.8,.2,1);
}
.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  bottom: 0;
  pointer-events: auto;
}
.cookie-banner-message {
  flex: 2 1 280px;
}
.cookie-banner-buttons {
  display: flex;
  flex: 1 1 160px;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-btn {
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, transform 0.13s;
  margin: 0;
  outline: none;
}
.cookie-btn.accept {
  background: #9A8CFC;
  color: #22223B;
  box-shadow: 0 0 16px 1px #9A8CFC55;
}
.cookie-btn.accept:hover {
  background: #E9C46A;
  color: #22223B;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn.reject {
  background: #4A4E69;
  color: #fff;
  border: 1px solid #F2E9E4;
  box-shadow: 0 0 12px 0 #4A4E6940;
}
.cookie-btn.reject:hover {
  background: #232443;
  color: #E9C46A;
}
.cookie-btn.settings {
  background: transparent;
  color: #9A8CFC;
  border: 1px solid #9A8CFC;
}
.cookie-btn.settings:hover {
  background: #9A8CFC;
  color: #22223B;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34,34,59,0.8);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn .3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #2B2C48;
  color: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 40px 0 #4A4E699a, 0 0 0 4px #9A8CFC19;
  width: 96vw;
  max-width: 390px;
  padding: 36px 26px 28px 26px;
  position: relative;
  transition: transform 0.3s cubic-bezier(.19,1,.22,1);
}
.cookie-modal h2 {
  margin-top: 0;
  color: #9A8CFC;
  margin-bottom: 16px;
  font-size: 1.43rem;
}
.cookie-modal-categories {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid #353557;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category label {
  flex: 1 1 110px;
  font-weight: 500;
}
.cookie-modal-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #9A8CFC;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  color: #9A8CFC;
  font-size: 1.36rem;
  cursor: pointer;
  transition: color 0.18s, transform 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff200;
}

.cookie-modal-category input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 19px 6px 8px 6px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-banner-message, .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .cookie-modal {
    padding: 20px 8px 15px 10px;
    max-width: 97vw;
  }
}

/*------------------------------
  RESPONSIVE FLEXBOX LAYOUTS
------------------------------*/
@media (max-width: 1100px) {
  .feature-grid, .service-list, .service-cards, .city-list-grid, .success-statistics, .blog-post-previews {
    gap: 16px;
  }
  .container {
    max-width: 980px;
  }
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .service-cards, .city-list-grid, .success-statistics, .blog-post-previews {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    max-width: 100%;
  }
  .hero {
    padding: 42px 0 29px 0;
  }
}

@media (max-width: 600px) {
  .main-navigation {
    padding: 0 6px;
    min-height: 58px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  h1 {
    font-size: 1.89rem;
  }
  h2 {
    font-size: 1.33rem;
  }
  .hero {
    padding: 25px 0 14px 0;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 2px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }
}

/*------------------------------
  MICROINTERACTIONS & ANIMATION
------------------------------*/
.button-primary, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.17s, transform 0.13s;
}
.card, .feature-grid li, .service-list li, .service-cards li, .city-list-grid > div, .blog-post-previews > div {
  transition: box-shadow 0.16s, transform 0.16s, border 0.13s;
}
.card:hover, .feature-grid li:hover, .service-list li:hover, .service-cards li:hover, .city-list-grid > div:hover, .blog-post-previews > div:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 32px 4px #9A8CFC19;
  border-color: #9A8CFC;
  z-index: 2;
}

/*------------------------------
  ACCESSIBILITY
------------------------------*/
:focus-visible {
  outline: 2px dashed #9A8CFC;
  outline-offset: 3px;
}

/*------------------------------
  UTILITIES
------------------------------*/
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }

/*------------------------------
  CUSTOM SCROLLBAR (optional)
------------------------------*/
::-webkit-scrollbar {
  background: #22223B;
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #4A4E69;
  border-radius: 8px;
}
@media (max-width: 650px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
}
