/* --- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F5;
  color: #21223e;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol { list-style: none; }
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: #1A237E;
  letter-spacing: 0.5px;
}
p, li, span, label, input, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #21223e;
}
strong { font-weight: 600; }

/* --- COLORS --------------------------- */
:root {
  --cm-primary: #1A237E;
  --cm-primary-rgb: 26,35,126;
  --cm-secondary: #1565C0;
  --cm-accent: #F5F5F5;
  --cm-creative1: #FDA228;
  --cm-creative2: #EC407A;
  --cm-creative3: #00BFAE;
  --cm-creative4: #6D4AFF;
  --cm-neutral-dark: #21223e;
  --cm-neutral-light: #ffffff;
  --cm-grey: #E0E7EF;
}

/* --- CREATIVE/ARTISTIC TYPOGRAPHY SCALE -- */
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--cm-creative2);
  letter-spacing: 1.2px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--cm-primary);
  font-weight: 700;
}
h4 { font-size: 1.05rem; font-weight: 700; }

p, .brand_info p, .footer_nav a {
  font-size: 1rem;
  line-height: 1.7;
}
.header-secondary {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  color: var(--cm-creative3);
  font-weight: 600;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--cm-accent);
  border-radius: 30px 50px 30px 60px;
  box-shadow: 0 4px 24px 0 rgba(26,35,126,0.05), 0 1.5px 12px rgba(236,64,122,0.06);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(85deg, var(--cm-neutral-light) 60%, var(--cm-creative3) 140%);
  box-shadow: 0 2px 20px rgba(26,35,126,.08);
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.logo img {
  height: 45px;
  width: auto;
  transition: filter .3s;
}
.logo:hover img {
  filter: brightness(88%) drop-shadow(0 0 5px var(--cm-creative1));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0 22px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cm-primary);
  border-bottom: 2px solid transparent;
  transition: color .22s, border-bottom .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--cm-creative2);
  border-bottom: 2.5px solid var(--cm-creative2);
  outline: none;
}
.main-nav .btn-primary {
  margin-left: 10px;
}

/* --- MOBILE NAVIGATION BURGER --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--cm-creative2);
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 20px;
  transition: background .18s, box-shadow .29s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 1.5px 6px var(--cm-creative2);
  color: var(--cm-creative4);
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(90deg, var(--cm-neutral-light) 60%, var(--cm-creative3) 140%);
  transform: translateX(-105%);
  transition: transform .38s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex; flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: var(--cm-neutral-light);
  border: none;
  font-size: 2.25rem;
  color: var(--cm-creative2);
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: background .2s, color .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--cm-creative2);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  color: var(--cm-primary);
  background: none;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-radius: 0;
  border-bottom: 2px solid rgba(236,64,122,0.07);
  transition: background .19s, color .12s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--cm-creative2);
  color: #fff;
}

/* --- BUTTONS --- */
.btn-primary {
  background: var(--cm-creative2);
  color: #fff !important;
  border: none;
  border-radius: 30px 12px 32px 18px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  padding: 13px 28px;
  font-size: 1.12rem;
  letter-spacing: 2px;
  transition: background .20s, transform .16s, box-shadow .22s;
  box-shadow: 0 3.5px 18px 0 rgba(236,64,122,0.09);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--cm-creative1);
  color: #fff !important;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 7px 18px 0 rgba(26,35,126,.13);
  outline: none;
}

.btn-secondary {
  background: var(--cm-creative3);
  color: var(--cm-neutral-dark) !important;
  border: none;
  border-radius: 15px 30px 18px 32px;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  padding: 11px 30px;
  font-size: 1.04rem;
  margin-top: 10px;
  letter-spacing: 1.2px;
  transition: background .18s, transform .14s, box-shadow .11s;
  box-shadow: 0 2.5px 11px 0 rgba(13,201,191,0.07);
  cursor: pointer;
  position: relative;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--cm-creative4);
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 7px 12px 0 rgba(109,74,255,0.08);
}

/* --- HERO/BANNER SECTIONS --- */
section:first-of-type,
section.hero {
  min-height: 320px;
  background: linear-gradient(92deg, var(--cm-creative3) 8%, var(--cm-creative2) 72%, var(--cm-creative1) 110%);
  color: var(--cm-neutral-dark);
  border-radius: 0 0 80px 0;
  box-shadow: 0 17px 60px 0 rgba(236,64,122,0.06);
  display: flex;
  margin-bottom: 60px;
}
section:first-of-type h1 { color: var(--cm-primary); text-shadow: 1px 1px 22px #FFF3; }
section:first-of-type p { color: var(--cm-neutral-dark); }

/* --- FEATURE GRIDS & CARDS --- */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0;
  justify-content: space-between;
}
.feature_grid li {
  flex: 1 1 200px;
  min-width: 180px;
  background: #fff;
  border-radius: 34px 20px 34px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px 23px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px 0 rgba(109,74,255,.10);
  border-top: 3.5px solid var(--cm-creative2);
  border-right: 3.5px solid var(--cm-creative3);
  position: relative;
  transition: box-shadow .2s, transform .13s;
}
.feature_grid li img {
  height: 50px;
  width: 50px;
  margin-bottom: 6px;
}
.feature_grid li:hover, .feature_grid li:focus {
  box-shadow: 0 8px 35px 0 var(--cm-creative4), 0 2px 10px 0 #EC8;
  transform: translateY(-8px) scale(1.04) rotate(-2deg);
  z-index: 2;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 32px 14px 32px 18px;
  padding: 24px 18px;
  box-shadow: 0 4px 16px rgba(21,101,192,0.08);
  margin-bottom: 20px;
  transition: box-shadow .21s, transform .13s;
  position: relative;
}
.card:hover, .card:focus {
  box-shadow: 0 14px 26px rgba(26,35,126,0.13); 
  transform: scale(1.03) rotate(1.5deg);
  z-index: 2;
}

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

/* --- SERVICE LIST --- */
.service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service_list li {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 24px 40px 20px 26px;
  box-shadow: 0 1.5px 14px 0 rgba(21,101,192,0.09);
  padding: 25px 26px 15px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .16s;
}
.service_list li:hover, .service_list li:focus {
  box-shadow: 0 7px 32px 0 rgba(253,162,40,0.13);
  transform: scale(1.032) rotate(-1deg);
  z-index: 2;
}
.service_price {
  font-weight: 700;
  color: var(--cm-creative1);
  font-size: 1.13rem;
  margin-top: 10px;
}

.service_description {
  background: #fff;
  border-radius: 28px 12px 28px 40px;
  padding: 24px 30px;
  margin-bottom: 14px;
  box-shadow: 0 2.5px 14px 0 rgba(109,74,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
}
.service_description a { margin-top: 16px; }

/* --- TESTIMONIALS SLIDER --- */
.testimonial_slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 250px;
  max-width: 370px;
  background: #fff;
  border-radius: 36px 24px 24px 16px;
  box-shadow: 0 4.5px 18px 0 rgba(26,35,126,0.065), 0 1.5px 6px 0 #EC8;
  margin-bottom: 20px;
  position: relative;
  border-left: 6.5px solid var(--cm-creative2);
  border-bottom: 3px solid var(--cm-creative3);
  transition: box-shadow .18s, transform .16s;
  color: #25224a;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 16px 32px 0 rgba(253,162,40,0.07), 0 6px 16px #fff8;
  transform: scale(1.035) translateY(-3px);
  z-index: 2;
}
.testimonial-card p {
  color: #21223e;
  font-size: 1.05rem;
  line-height: 1.6;
}
.testimonial-meta {
  color: var(--cm-creative4);
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
}

/* --- CONTACT INFO & MAP --- */
.contact_info {
  background: var(--cm-grey);
  border-radius: 18px 36px 30px 12px;
  padding: 28px 32px 22px 18px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 1.5px 10px 0 rgba(109,74,255,.04);
}
.map_embed {
  margin-left: 24px;
  border-radius: 10px 40px 28px 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px #1a237e19;
  min-width: 220px;
  max-width: 370px;
}
.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 700px;
  font-size: 1.03rem;
  color: #1A237E;
}
.text-section ul {
  margin-left: 24px;
  margin-bottom: 12px;
  list-style-type: '✱ ';
  color: var(--cm-creative2);
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #21223e;
}

/* --- FOOTER STYLING --- */
footer {
  background: linear-gradient(90deg, var(--cm-primary) 70%, var(--cm-creative2) 130%);
  color: #fff;
  padding: 36px 0 22px 0;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer_nav {
  display: flex;
  gap: 16px;
  margin-bottom: 11px;
}
.footer_nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  letter-spacing: .5px;
  transition: color .16s;
  padding: 0 5px;
}
.footer_nav a:focus,
.footer_nav a:hover {
  color: var(--cm-creative1);
  text-shadow: 1px 1px 10px #EC407A77;
}
.social_links {
  display: flex;
  gap: 18px;
  margin-bottom: 5px;
}
.social_links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  width: 40px; height: 40px;
  box-shadow: 0 3px 14px #EC407A18;
  transition: background .19s, transform .14s;
  margin-bottom: 0;
}
.social_links a:hover, .social_links a:focus {
  background: var(--cm-creative1);
  transform: translateY(-4px) scale(1.07);
}
.social_links img {
  width: 24px; height: 24px;
}
.brand_info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  color: #fff;
  font-size: .99rem;
}
.brand_info img {
  height: 36px;
  border-radius: 8px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #fff 70%, var(--cm-creative3) 130%);
  border-top: 2px solid var(--cm-creative2);
  box-shadow: 0 -2.5px 14px 0 rgba(21,101,192,0.08);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 15px;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.88, .2, .18, 1.05);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  color: var(--cm-neutral-dark);
  font-size: 1rem;
  max-width: 500px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__btn {
  border: none;
  background: var(--cm-creative2);
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border-radius: 20px 10px 18px 22px;
  font-size: 1rem;
  padding: 9px 22px;
  box-shadow: 0 2.5px 10px rgba(236,64,122,.06);
  cursor: pointer;
  transition: background .17s, color .17s, transform .14s;
  outline: none;
}
.cookie-banner__btn:focus,
.cookie-banner__btn:hover {
  background: var(--cm-creative1);
  color: var(--cm-primary);
  transform: translateY(-1.5px) scale(1.04);
}
.cookie-banner__btn.secondary {
  background: var(--cm-creative3);
  color: var(--cm-primary);
}
.cookie-banner__btn.secondary:hover,
.cookie-banner__btn.secondary:focus {
  background: var(--cm-creative4);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2400;
  background: rgba(26,35,126,0.12);
  align-items: center;
  justify-content: center;
  transition: opacity .24s, visibility .2s;
}
.cookie-modal.open { display: flex; }
.cookie-modal__content {
  background: #fff;
  border-radius: 38px 14px 36px 22px;
  box-shadow: 0 7px 28px rgba(236,64,122,.13);
  padding: 32px 28px 28px 32px;
  max-width: 420px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__header {
  font-size: 1.3rem;
  color: var(--cm-primary);
  font-family: 'Roboto Slab', serif;
  margin-bottom: 14px;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 13px;
  background: var(--cm-creative3);
  color: var(--cm-creative2);
  border: none;
  font-size: 1.6rem;
  border-radius: 20px;
  padding: 3px 14px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: var(--cm-creative1);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--cm-creative2);
  width: 21px;
  height: 21px;
}
.cookie-category.essential label {
  color: var(--cm-neutral-dark);
  font-weight: 700;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal__actions button {
  border: none;
  background: var(--cm-creative2);
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  border-radius: 20px 10px 18px 22px;
  font-size: 1rem;
  padding: 9px 20px;
  box-shadow: 0 2.5px 9px rgba(236,64,122,.06);
  cursor: pointer;
  transition: background .17s, color .17s, transform .14s;
  outline: none;
}
.cookie-modal__actions button:focus,
.cookie-modal__actions button:hover {
  background: var(--cm-creative1);
  color: var(--cm-primary);
  transform: translateY(-2px) scale(1.05);
}


/* --- TEXT-IMAGE/COMBINED --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section > * {
  flex: 1 1 220px;
}

/* --- FLEX SPACING/UTILITIES --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FORMS/INPUTS -- none actively used, but style fallback */
input, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.2px solid var(--cm-creative3);
  padding: 10px 14px;
  transition: border .16s;
}
input:focus, textarea:focus {
  outline: 2px solid var(--cm-creative2);
  border: 1.8px solid var(--cm-creative2);
}

/* --- RESPONSIVE DESIGN: MOBILE FIRST --- */
@media (max-width: 1280px) {
  .container {
    max-width: 98vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 1020px) {
  .content-wrapper, .service_list, .feature_grid, .testimonial_slider {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  .feature_grid, .service_list, .testimonial_slider, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-nav a { font-size: 0.92rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  header .container { gap: 12px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  .content-wrapper,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .map_embed { margin-left: 0; }
  .contact_info { max-width: 99vw; }
  section,
  .section {
    padding: 27px 7px;
    margin-bottom: 32px;
  }
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1rem; }
  .btn-primary, .btn-secondary, .cookie-banner__btn, .cookie-modal__actions button { font-size: 0.93rem; padding: 8px 18px; }
}
@media (max-width: 590px) {
  .service_list,
  .feature_grid,
  .testimonial_slider,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .mobile-nav a { font-size: 1.08rem; }
  .cookie-banner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* --- ANIMATIONS / MICRO-INTERACTIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.feature_grid li, .service_list li, .testimonial-card, .card {
  animation: fadeInUp .53s cubic-bezier(.39,.58,.57,1.41);
}

.btn-primary, .btn-secondary,
.cookie-banner__btn, .cookie-modal__actions button {
  transition: background .20s, color .15s, transform .13s, box-shadow .17s;
}

/* --- UNIQUE ARTISTIC/CREATIVE --- */
.feature_grid li:before {
  content: '';
  position: absolute;
  left: -16px; top: -18px;
  width: 36px;  height: 36px;
  background: var(--cm-creative1);
  opacity: 0.09;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.feature_grid li:nth-child(2):before {
  background: var(--cm-creative2);
}
.feature_grid li:nth-child(3):before {
  background: var(--cm-creative3);
}
.feature_grid li:nth-child(4):before {
  background: var(--cm-creative4);
}
.feature_grid li:nth-child(5):before {
  background: var(--cm-primary);
}

.card:after {
  content: '';
  position: absolute;
  bottom: -6px; right: -10px;
  width: 40px; height: 40px;
  background: var(--cm-creative3);
  opacity: 0.10;
  border-radius: 50%;
  z-index: 0;
}

.service_list li:before {
  content: '';
  position: absolute;
  top: -10px; right: -7px;
  width: 33px; height: 33px;
  background: var(--cm-creative2);
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
}

/* --- A11Y: FOCUS OUTLINE --- */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px dashed var(--cm-creative4);
  outline-offset: 2px;
}

/* --- MISC --- */
::-webkit-scrollbar { width: 9px; background: #f5f5fa; }
::-webkit-scrollbar-thumb { background: #e0e0f7; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #B2B2ED; }
section {
  padding: 20px 0;
}
/* --- END CSS --- */
.brand_info p{
  color: #B2B2ED;
}