/* ==========================================================================
   CSS RESET & NORMALIZE
   ========================================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A2639;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
button, input[type="button"], input[type="submit"] {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ==========================================================================
   BRAND TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap');
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: #fff;
  color: #222;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
p, ul, ol, li, strong, em {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #111;
}
em {
  font-style: italic;
}

/* ==========================================================================
   COLOR PALETTE (monochrome_sophisticated)
   ========================================================================== */
:root {
  --color-primary: #1A2639; /* deep blue-black */
  --color-secondary: #64B6AC; /* subtle highlight */
  --color-accent: #F5E9DA; /* soft light sand */
  --color-dark: #121212;
  --color-mid: #222326;
  --color-light: #F7F7F9;
  --color-border: #D9DBDE;
  --color-heading: #1A2639;
  --color-body: #232323;
  --color-white: #fff;
}

/* ==========================================================================
   CONTAINER & SPACING UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(30,36,44,0.07);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* mimic typical grid */
  align-items: flex-start;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #F7F7F9;
  box-shadow: 0 2px 14px 0 rgba(30,36,44,0.09);
  margin-bottom: 20px;
  min-width: 0;
  flex-direction: column;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--color-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-meta strong {
  font-weight: 600;
  color: #222;
  margin-right: 12px;
}
.testimonial-meta span {
  color: #DAB748;
  font-weight: 600;
  font-size: 1.09em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px 0 rgba(38,38,38,0.08);
}


/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 15px 0 rgba(30,36,44,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
header .main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.84;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.04em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #111;
  opacity: 1;
}

.cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12em;
  letter-spacing: 0.02em;
  border-radius: 25px;
  padding: 13px 28px;
  margin-left: 20px;
  box-shadow: 0 2px 14px 0 rgba(26, 38, 57, 0.09);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  border: 2px solid transparent;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 6px 24px 0 rgba(26, 38, 57, 0.12);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  padding: 7px 12px;
  margin-left: 10px;
  display: none;
  z-index: 1002;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 18, 18, 0.96);
  z-index: 2001;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.74,.17,.22,.97), opacity 0.15s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--color-light);
  font-size: 2.4rem;
  border-radius: 8px;
  margin: 26px 26px 0 0;
  padding: 8px;
  border: 2px solid #2B2B2B;
  background: rgba(98,98,98,0.13);
  cursor: pointer;
  z-index: 2006;
  transition: border 0.13s, background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  border: 2px solid var(--color-accent);
  background: rgba(250,250,250,0.17);
}
.mobile-nav {
  margin: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 46px;
}
.mobile-nav a {
  color: var(--color-light);
  font-size: 1.22em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-radius: 9px;
  padding: 8px 12px;
  opacity: 0.96;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  opacity: 1;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: var(--color-light);
  padding: 64px 0 60px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 780px;
  gap: 8px;
}
.hero h1 {
  color: var(--color-heading);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero h2 {
  color: var(--color-primary);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero p {
  color: #232323;
  font-size: 1.08rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   FEATURES/GRID SECTIONS
   ========================================================================== */
.features {
  background: var(--color-white);
  padding: 24px 0 24px 0;
  margin-bottom: 48px;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.features h2 {
  margin-bottom: 6px;
  color: var(--color-heading);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid li {
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(22,26,34,0.07);
  padding: 24px 20px 18px 20px;
  min-width: 190px;
  flex: 1 1 220px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.23s, transform 0.19s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 20px 0 rgba(26,38,57,0.14);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--color-primary);
}
.feature-grid p {
  color: #232323;
  font-size: 0.97rem;
}
.feature-grid img {
  width: 38px;
  height: auto;
  margin-bottom: 6px;
}

/* ==========================================================================
   ABOUT / TEAM / STORY
   ========================================================================== */
.about-story, .footer-quick, .footer-extra {
  background: var(--color-light);
}
.team-section .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.team-member {
  background: var(--color-white);
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(18,18,18,0.06);
  padding: 22px 18px 16px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 3px;
}
.social-links a {
  opacity: 0.72;
  transition: opacity 0.18s, transform 0.16s;
}
.social-links a:hover {
  opacity: 1;
  transform: scale(1.08);
}
/* Quick contact */
.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: var(--color-white);
  padding: 32px 0 28px 0;
  margin-bottom: 44px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.testimonials h2 {
  margin-bottom: 0;
  color: var(--color-primary);
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  margin-bottom: 0px;
  padding: 44px 0 44px 0;
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-section h2 {
  color: var(--color-white);
}
.cta-section p, .cta-section a {
  color: var(--color-white);
}
.cta-section .cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-top: 8px;
  border: none;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta-section img {
  filter: invert(1);
  vertical-align: middle;
  margin-right: 5px;
}

/* ==========================================================================
   CONTACT/NOTICE/INFO BOX
   ========================================================================== */
.contact-info {
  background: var(--color-light);
  padding: 38px 0 30px 0;
  margin-bottom: 0px;
}
.notice-box {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(80,80,80,0.04);
}
.info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.info-list li {
  margin-bottom: 0;
}

/* ==========================================================================
   LEGAL SECTIONS (Datenschutz/GDPR/Cookie)
   ========================================================================== */
.legal-section {
  background: var(--color-white);
  padding: 44px 0 44px 0;
  margin-bottom: 44px;
}
.legal-section .content-wrapper {
  align-items: flex-start;
}
.legal-section h1,
.legal-section h2,
.legal-section h3 {
  color: var(--color-primary);
}
.legal-section ul, .legal-section ol {
  margin-left: 20px;
  margin-bottom: 16px;
  font-size: 1rem;
  list-style: disc inside;
}
.legal-section ol {
  list-style: decimal inside;
}
.legal-section li {
  margin-bottom: 8px;
}

/* ==========================================================================
   THANK YOU SECTION
   ========================================================================== */
.thankyou-section {
  background: var(--color-light);
  padding: 74px 0 74px 0;
  margin-bottom: 0;
}
.thankyou-section h1 {
  color: var(--color-primary);
  font-size: 2.25rem;
}
.thankyou-section .cta-btn {
  margin-top: 18px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  width: 100%;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 0;
  margin-top: 48px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  padding: 38px 20px 32px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-flex > * {
  flex: 1 1 200px;
  min-width: 180px;
}
footer img {
  max-height: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--color-light);
  opacity: 0.85;
  font-weight: 500;
  transition: color 0.14s, opacity 0.13s;
  font-size: 1.01em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  font-size: 0.97em;
  color: var(--color-light);
  opacity: 0.91;
  line-height: 1.7;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  filter: invert(1);
  vertical-align: middle;
  margin-right: 6px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-dark);
  color: var(--color-accent);
  padding: 28px 22px 22px 22px;
  box-shadow: 0 -2px 18px 0 rgba(0,0,0, .18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  transition: transform 0.36s, opacity 0.2s;
  transform: translateY(0);
  opacity: 1;
  font-size: 1.07em;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 21px;
  padding: 9px 24px;
  font-size: 1em;
  transition: background 0.18s, color 0.18s, border 0.18s;
  border: 2px solid var(--color-light);
  background: var(--color-light);
  color: var(--color-dark);
  margin-right: 8px;
}
.cookie-btn.accept {
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
  margin-right: 8px;
}
.cookie-btn.reject {
  border: 2px solid #B42424;
  background: #fff;
  color: #B42424;
}
.cookie-btn.settings {
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  z-index: 4000;
  width: 100vw; height: 100vh;
  background: rgba(15,18,22,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.49,.06,.41,.97);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-dialog {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 4px 34px 0 rgba(30,36,44,0.18);
  min-width: 320px;
  max-width: 90vw;
  padding: 38px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--color-dark);
  background: var(--color-light);
  border: 2px solid #ECECF3;
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 2.5px 8px;
  cursor: pointer;
  transition: border 0.13s, background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  border: 2px solid var(--color-secondary);
  background: #F6FAF8;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
  color: var(--color-primary);
}
.cookie-category-label {
  min-width: 160px;
  font-weight: 600;
}
.cookie-toggle {
  width: 46px; height: 28px;
  position: relative;
  margin-left: 14px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  background-color: #E8EAF0;
  border-radius: 16px;
  width: 46px; height: 28px;
  transition: .23s;
}
.cookie-toggle .slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  border-radius: 50%;
  background-color: #bdbec1;
  transition: .23s;
}
.cookie-toggle input:checked + .slider {
  background-color: var(--color-secondary);
}
.cookie-toggle input:checked + .slider:before {
  background: var(--color-primary);
  transform: translateX(18px);
}

/* ==========================================================================
   BUTTONS, LINKS, INTERACTIVES
   ========================================================================== */
a {
  cursor: pointer;
  transition: color 0.15s, text-decoration 0.14s;
}
a:active {
  color: var(--color-secondary);
}
button:focus, .cta-btn:focus, .main-nav a:focus, .footer-nav a:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
}

/* ==========================================================================
   RESPONSIVE DESIGN & FLEXBOX
   ========================================================================== */
@media (max-width: 1024px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
  .header-flex, .footer-flex {
    gap: 11px;
    flex-wrap: wrap;
  }
  .feature-grid, .card-container, .team-section .team-profiles {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .section,
  .hero,
  .legal-section,
  .cta-section,
  .about-story,
  .features,
  .testimonials,
  .contact-info,
  .thankyou-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, .features, .testimonials, .contact-info, .thankyou-section {
    margin-bottom: 33px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 10px 20px 10px;
  }
  .feature-grid,
  .card-container,
  .team-section .team-profiles,
  .info-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: flex-start;
  }
  .mobile-banner {
    font-size: 1em;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.18rem;
  }
  h2 {
    font-size: 1rem;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}
/* Prevent absolute positioned elements from overlapping content */
[style*="position:absolute"] {
  z-index: 2;
}
/* Misc - visually hide visually-hidden */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(100%);
  white-space: nowrap;
}

/* ==========================================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ========================================================================== */
.cta-btn, .cookie-btn, .main-nav a, .footer-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, border 0.17s;
}
.feature-grid li {
  transition: box-shadow 0.23s, transform 0.20s;
}
.card {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 26px 0 rgba(26,38,57,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* ==========================================================================
   SCROLLBAR CUSTOMIZATION (subtle)
   ========================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-light);
}
::-webkit-scrollbar-thumb {
  background: #d1d2d7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bcbec6;
}

/* ==========================================================================
   END OF FILE
   ========================================================================== */
