/* RESET & BASE TYPOGRAPHY ------------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #ffffff;
  color: #234249;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}
a {
  color: #1749a1;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #d33682;
  text-decoration: underline;
}

/* BRAND COLORS & VIBRANT PALETTE -------------------------------------------------- */
:root {
  --primary: #234249;
  --secondary: #F4D180;
  --accent: #FFFFFF;
  --electric-blue: #1de9b6;
  --vivid-pink: #ff2d6f;
  --sun-yellow: #ffe144;
  --energy-orange: #ff9800;
  --black: #141e25;
  --shadow: rgba(35,66,73,0.09);
  --shadow-strong: rgba(35,66,73,0.18);
}

/* TYPOGRAPHY SCALE --------------------------------------------------------------- */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--primary);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  h2, .h2 { font-size: 2.3rem; }
}
h3, .h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vivid-pink);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
h4, .h4 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

/* LAYOUT WRAPPERS & CONTAINER ----------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}
/* FLEX UTILITY CLASSES ------------------------------------------------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 24px var(--shadow-strong);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--accent);
  border-left: 5px solid var(--electric-blue);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (min-width: 900px) {
  .testimonial-card {
    min-width: 320px;
  }
  .features .content-wrapper > ul {
    width: 45%;
    margin-right: 5%;
  }
  .features .content-wrapper > p {
    width: 50%;
  }
}

/* HEADER & NAVIGATION ------------------------------------------------------------- */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 10px var(--shadow);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  color: var(--accent);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .22s;
  padding: 6px 13px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  background: var(--electric-blue);
  color: var(--primary);
}
header .cta {
  background: var(--vivid-pink);
  color: var(--accent);
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 9px 26px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 4px 14px var(--shadow);
  margin-left: 14px;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .18s;
}
header .cta:hover, header .cta:focus {
  background: var(--sun-yellow);
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
}
header img {
  height: 40px;
  width: auto;
  display: block;
}

/* MOBILE NAVIGATION --------------------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  color: var(--accent);
  border: none;
  cursor: pointer;
  z-index: 1102;
  margin-left: auto;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1000px) {
  header .container nav,
  header .container .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
    gap: 28px;
    z-index: 1100;
    transform: translateX(-100vw);
    transition: transform .36s cubic-bezier(.7,.22,.17,1.1);
  }
  .mobile-menu.open {
    transform: translateX(0);
    box-shadow: 0 0 0 150vw rgba(35,66,73,0.35);
  }
  .mobile-menu-close {
    background: var(--vivid-pink);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px; height: 38px;
    font-size: 1.55rem;
    align-self: flex-end;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    box-shadow: 0 2px 12px var(--shadow-strong);
  }
  .mobile-menu-close:hover,.mobile-menu-close:focus {
    background: var(--electric-blue);
    color: var(--primary);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }
  .mobile-nav a {
    color: var(--accent);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 10px 0;
    border-radius: 4px;
    transition: background .15s, color .15s;
    letter-spacing: .03em;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--electric-blue);
    color: var(--primary);
  }
}
@media (min-width: 1001px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* HERO SECTION -------------------------------------------------------------------- */
.hero {
  width: 100%;
  min-height: 320px;
  background: var(--secondary);
  padding: 40px 0 30px 0;
  position: relative;
  box-shadow: 0 8px 30px var(--shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 710px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 2px 0 #fff4, 0 12px 30px var(--shadow);
}
.hero p {
  font-size: 1.2rem;
  color: var(--black);
}
.hero .cta {
  margin-top: 12px;
}

/* CTA BUTTONS --------------------------------------------------------------------- */
.cta {
  background: var(--electric-blue);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.14rem;
  padding: 13px 38px;
  border-radius: 32px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: .025em;
  border: none;
  box-shadow: 0 2px 10px var(--shadow);
  text-align: center;
  cursor: pointer;
  transition: background .19s, color .19s, transform .22s;
  display: inline-block;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--vivid-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

/* FEATURES/SERVICES SECTIONS ------------------------------------------------------ */
.features, .services, .team, .values, .about, .faq, .contact, .legal, .confirmation {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper, .services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.features ul, .values ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 0;
  padding: 0 0 0 4px;
  list-style: none;
}
.features li, .values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
  color: var(--primary);
  font-weight: 600;
}
.features li img, .values li img {
  width: 32px; height: 32px;
  margin-right: 8px;
}
.services .content-wrapper > div {
  background: var(--sun-yellow);
  flex: 1 1 250px;
  padding: 22px 17px;
  border-radius: 15px;
  min-width: 210px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow .25s, background .22s;
}
.services .content-wrapper > div:hover {
  background: var(--electric-blue);
  box-shadow: 0 6px 28px var(--shadow-strong);
}
.services .content-wrapper > div h3 {
  color: var(--energy-orange);
}
.services .content-wrapper > div a {
  color: var(--vivid-pink);
  font-weight: 700;
  margin-top: 10px;
  border-bottom: 2px solid var(--vivid-pink);
  transition: color .17s;
}
.services .content-wrapper > div a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.services ol {
  margin-bottom: 14px;
  margin-left: 24px;
}

/* TABLE STYLING (for adla-metaller.html) ------------------------------------------ */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fafbfc;
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 4px var(--shadow);
  font-size: 1rem;
}
th, td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}
th {
  background: var(--electric-blue);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06em;
}
tr:last-child td {
  border-bottom: none;
}

/* TESTIMONIALS -------------------------------------------------------------------- */
.testimonials {
  background: var(--electric-blue);
  padding: 40px 0 33px 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 6px 32px var(--shadow-strong);
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.testimonials h2 {
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 2px #fff6;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    gap: 30px;
    align-items: flex-stretch;
  }
}
.testimonial-card {
  background: #fff;
  color: #111;
  border-left: 5px solid var(--vivid-pink);
  min-width: 210px;
  max-width: 410px;
  flex: 1 1 240px;
  align-self: stretch;
  box-shadow: 0 2px 16px var(--shadow);
  margin-bottom: 0;
  transition: box-shadow .23s, border-color .18s;
}
.testimonial-card:hover {
  border-left: 5px solid var(--electric-blue);
  box-shadow: 0 8px 24px var(--shadow-strong);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #181C2B;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1.04em;
}

/* FOOTER -------------------------------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 36px 0 16px 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 14px var(--shadow-strong);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--secondary);
  font-weight: 600;
  transition: color .19s;
  font-size: 1.02rem;
  padding: 2px 7px;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--electric-blue);
  background: #fff1;
}
footer address {
  font-style: normal;
  color: var(--accent);
  font-size: 0.97rem;
  margin-top: 8px;
  line-height: 1.6;
}
footer img {
  height: 22px;
  width: auto;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}
footer a {
  color: var(--sun-yellow);
  text-decoration: underline dotted;
  transition: color .18s;
}
footer a:hover {
  color: var(--vivid-pink);
}

/* FAQ & LEGAL SECTIONS ------------------------------------------------------------ */
.faq .content-wrapper > div {
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-left: 4px solid var(--sun-yellow);
  padding-left: 17px;
}
.faq-cta {
  background: var(--energy-orange);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  margin-top: 18px;
  font-size: 1.08em;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--shadow);
}
.legal .content-wrapper {
  gap: 14px;
}
.legal ul {
  margin-left: 2em;
  margin-bottom: 14px;
  color: var(--electric-blue);
  font-weight: 500;
}

/* CONTACT PAGE -------------------------------------------------------------------- */
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact .content-wrapper > div {
  background: var(--sun-yellow);
  border-radius: 15px;
  padding: 18px 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px var(--shadow);
  flex: 1 1 220px;
}
.contact .content-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact .content-wrapper li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04em;
}
.contact .content-wrapper li img {
  width: 24px; height: 24px;
  margin-right: 5px;
}

/* CONFIRMATION PAGE --------------------------------------------------------------- */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation h1 {
  color: var(--vivid-pink);
}
.confirmation a.cta {
  margin-top: 18px;
}

/* RESPONSIVE STYLES --------------------------------------------------------------- */
@media (max-width: 900px) {
  .content-wrapper, .features .content-wrapper, .services .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .team .content-wrapper > div,
  .values .content-wrapper > ul, .values .content-wrapper > p {
    width: 100% !important;
  }
  .features .content-wrapper > ul, .features .content-wrapper > p {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  .section, .features, .services, .about, .values, .faq, .contact, .legal, .confirmation {
    padding: 29px 4px 22px 4px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .hero { padding: 27px 0 18px 0; }
}

/* MICRO-INTERACTIONS & ANIMATIONS ------------------------------------------------ */
.cta, header .cta, .services .content-wrapper > div, .testimonial-card,
footer nav a, .mobile-nav a, .mobile-menu-close {
  transition: all .17s cubic-bezier(.8,.2,.3,1.1);
}
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .55s cubic-bezier(.8,.2,.3,1.1), transform .56s cubic-bezier(.8,.2,.3,1.1);
}
[data-animate="fade-up"].visible {
  opacity: 1;
  transform: none;
}

/* COOKIE CONSENT BANNER ----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--electric-blue);
  color: var(--primary);
  z-index: 2100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  box-shadow: 0 -2px 24px var(--shadow-strong);
  font-size: 1.03em;
  pointer-events: auto;
  transform: translateY(120%);
  opacity: 0;
  transition: opacity .36s cubic-bezier(.6,1.23,.18,1), transform .32s;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner p {
  flex: 1 1 210px;
  margin-bottom: 0;
  color: var(--primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.96em;
  border-radius: 22px;
  padding: 9px 18px;
  box-shadow: 0 1px 8px var(--shadow);
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--primary);
  color: var(--accent);
  transition: background .14s, color .18s;
  margin-right: 2px;
}
.cookie-banner button.accept {
  background: var(--electric-blue);
  color: var(--primary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--vivid-pink);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--sun-yellow);
  color: var(--primary);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--vivid-pink);
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--vivid-pink);
  color: #fff;
}
.cookie-banner button.settings:hover,.cookie-banner button.settings:focus {
  background: var(--primary);
  color: var(--electric-blue);
}

/* COOKIE PREFERENCES MODAL -------------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,30,37,0.68);
  z-index: 2200;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .33s cubic-bezier(.8,.2,.4,1.2);
}
.cookie-modal.visible {
  display: flex;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 48px var(--shadow-strong);
  padding: 38px 28px 24px 28px;
  max-width: 420px;
  width: 98%;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: appearModal .29s cubic-bezier(.8,.15,.3,1.03);
}
@keyframes appearModal {
  from { transform: translateY(52px) scale(.92); opacity: .80; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.19rem;
  color: var(--vivid-pink);
  margin-bottom: 5px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--electric-blue);
  width: 18px; height: 18px;
}
.cookie-modal .close {
  position: absolute;
  top: 9px; right: 9px;
  background: var(--vivid-pink);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 33px; height: 33px;
  font-size: 1.2rem;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--electric-blue);
  color: var(--primary);
}
.cookie-modal .button-row {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 19px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background .16s, color .15s;
  font-size: 0.97em;
}
.cookie-modal button.save {
  background: var(--electric-blue);
  color: var(--primary);
}
.cookie-modal button.save:hover, .cookie-modal button.save:focus {
  background: var(--vivid-pink);
  color: #fff;
}

/* MISCELLANEOUS SPACING & BORDERS ------------------------------------------------ */
.section, .features, .services, .about, .values, .faq, .contact, .legal, .confirmation {
  box-sizing: border-box;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ENSURE NO OVERLAP -------------------------------------------------------------- */
section, .section, .features, .services, .team, .values, .about, .faq, .contact, .legal, .confirmation {
  margin-bottom: 60px;
  margin-top: 0;
}
.card, .testimonial-card, .services .content-wrapper > div {
  margin-bottom: 20px;
}
.content-wrapper > *, .content-grid > *, .card-container > *, .testimonials .content-wrapper > * {
  margin-bottom: 0;
}

/* SCROLLBAR (for vibrance) ------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--electric-blue);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--vivid-pink);
  border-radius: 6px;
}

/* PRINT: remove shadows for clarity ---------------------------------------------- */
@media print {
  * {
    box-shadow: none !important;
    background: #fff !important;
  }
}