/* ---------------------------------------------------------------------------
   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, menu, 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,
main, 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #191919;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #191919;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button, [type='button'], [type='submit'] {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------
   BRAND TYPOGRAPHY (Montserrat & Roboto)
--------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;  /* 16px default */
  color: #232323;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #101010;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1.06rem;
  line-height: 1.64;
  color: #3a3a3a;
}
strong {
  font-weight: 700;
  color: #181818;
}

/* Typography scales for monochrome sophistication */
@media (min-width: 700px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.38rem; }
}

/* ---------------------------------------------------------------------------
   LAYOUT BASE CLASSES & CONTAINERS
--------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
  }
}

/* ---------------------------------------------------------------------------
   HEADER, NAVIGATION & BRAND IDENTITY
--------------------------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #141414;
  margin-bottom: 0px;
  box-shadow: 0 2px 10px 0 rgba(10,10,10,0.05);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  min-height: 70px;
}
.logo img {
  height: 38px;
  filter: grayscale(1) contrast(1.2);
  display: block;
}
@media (max-width: 600px) {
  .logo img {
    height: 32px;
  }
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  z-index: 1;
}
.main-nav a {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.06rem;
  color: #232323;
  padding: 8px 0;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .22s, color .22s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #003366;
  border-bottom: 2px solid #003366;
  background: none;
}
.btn-primary {
  background: #101010;
  color: #fff;
  padding: 12px 32px;
  border-radius: 28px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: background 0.22s, color 0.22s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #003366;
  border: 2px solid #003366;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  outline: none;
  transform: translateY(-2px) scale(1.01);
}
/* Burger menu for mobile */
.mobile-menu-toggle {
  background: none;
  color: #101010;
  border-radius: 8px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  line-height: 1;
  transition: background 0.16s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f1f1f1;
  color: #003366;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 210;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 30px 60px 30px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.55,.16,.39,1);
  box-shadow: -6px 0 18px rgba(0,0,0,0.13);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.55,.16,.39,1);
}
.mobile-menu-close {
  position: absolute;
  top: 25px; right: 32px;
  font-size: 2.3rem;
  background: none;
  color: #101010;
  z-index: 212;
  transition: color .16s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #003366;
  background: #e8e8e8;
  border-radius: 8px;
}
.mobile-nav {
  width: 100%;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  color: #101010;
  font-weight: 600;
  padding: 13px 0 11px 0;
  border-bottom: 1px solid #eee;
  transition: color .18s;
  letter-spacing: .25px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #003366;
}
@media (max-width: 480px) {
  .mobile-menu {
    padding: 16px 8px 40px 8px;
  }
  .mobile-menu-close {
    right: 16px;
    top: 15px;
  }
  .mobile-nav {
    padding-top: 48px;
  }
}
.mobile-menu[aria-hidden="true"] {
  display: none;
}

/* Overlay behind mobile menu for click-outside */
.mobile-menu::before {
  content: "";
  display: none;
}
.mobile-menu.is-open::before {
  display: block;
}

/* Hide mobile menu on desktop */
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ---------------------------------------------------------------------------
   HERO SECTIONS
--------------------------------------------------------------------------- */
.hero {
  background: #fff;
  color: #101010;
  padding: 64px 0 44px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.048);
  margin-bottom: 34px;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  color: #070707;
  font-size: 2.5rem;
}
.hero p {
  max-width: 700px;
  font-size: 1.22rem;
  color: #333;
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .hero {
    padding: 40px 0 23px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------
   FEATURES & CARDS & FLEXBOX LAYOUTS
--------------------------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 8px 0 8px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f6f6;
  border-radius: 14px;
  box-shadow: 0 0.5px 4px rgba(40,40,40,0.045);
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 250px;
  transition: background .21s, box-shadow .18s, transform .19s;
  border: 1px solid #e5e5e5;
}
.feature-item:hover {
  background: #fff;
  box-shadow: 0 3px 18px rgba(25,25,25,0.09);
  transform: translateY(-2px) scale(1.022);
}
.feature-item img {
  width: 42px; height: 42px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: grayscale(1) contrast(1.08);
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.feature-item p, .feature-item ul {
  font-size: 1.04rem;
  color: #232323;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 195px;
    padding: 18px 14px 18px 14px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-item {
    width: 100%;
    min-width: unset;
    padding: 14px 10px 14px 10px;
  }
}

/* CARD/ARTICLE LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(25,25,25,0.075);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(10,10,10,0.17);
  transform: translateY(-3px) scale(1.01);
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.article-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 0.5px 4px rgba(0,0,0,0.03);
  flex: 1 1 310px;
  min-width: 180px;
  transition: box-shadow .15s, background .15s;
}
.article-card:hover {
  box-shadow: 0 3px 13px rgba(0,0,0,.07);
  background: #fff;
}
.featured-article {
  background: #101010;
  color: #fafafa;
  border-radius: 15px;
  padding: 25px 28px 18px 28px;
  box-shadow: 0 3px 30px rgba(10,12,24,.10);
  margin-bottom: 24px;
}
.featured-article h3 { color: #fff; }
.featured-article p { color: #e7e7e7; }

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 26px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 280px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  border: 1px solid #e7e7e7;
  transition: box-shadow .15s, background .15s;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.12rem;
  font-style: italic;
}
.testimonial-card .star-rating {
  color: #101010;
  font-size: 1.11rem;
  letter-spacing: 2px;
  margin-right: 9px;
}
.testimonial-client span {
  color: #232323;
  font-size: 1rem;
}
.testimonial-client strong {
  color: #003366;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.16);
  background: #f8f8f8;
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* CONTACT BLOCK LAYOUT */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 12px;
}
.contact-info, .contact-extra {
  flex: 1 1 230px;
  min-width: 210px;
}
.contact-info a {
  color: #003366;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .contact-block {
    flex-direction: column;
    gap: 17px;
  }
}

/* General text-image/flexbox patterns */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ---------------------------------------------------------------------------
   CTA + BUTTONS
--------------------------------------------------------------------------- */
.btn-primary, a.btn-primary {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

a {
  transition: color .18s, border .16s;
}
a:hover, a:focus {
  color: #003366;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------------- */
footer {
  background: #101010;
  color: #fff;
  padding: 52px 0 29px 0;
  border-top: 4px solid #191919;
}
footer .container {
  flex-direction: column;
  gap: 17px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #e6e6e6;
  font-size: 1.01rem;
  letter-spacing: .25px;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFCB05;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-contact p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cecece;
  margin-bottom: 0;
}
.footer-contact img {
  width: 21px;
  filter: grayscale(1) brightness(1.11) contrast(1.2);
}
.footer-copy {
  margin-top: 16px;
  font-size: .98rem;
  color: #777;
}

@media (max-width: 900px) {
  .footer-nav {
    gap: 14px;
    flex-direction: column;
  }
  .footer-contact {
    gap: 13px;
    flex-direction: column;
  }
}

/* ---------------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #191919;
  color: #f8f8f8;
  z-index: 9999;
  font-size: 1.05rem;
  padding: 19px 18px 16px 18px;
  box-shadow: 0 -7px 22px rgba(0,0,0,0.11);
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  transition: transform .27s, opacity .2s;
  will-change: transform;
}

.cookie-banner a{
	color: #fff
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border-radius: 24px;
  padding: 9px 23px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #fff;
  color: #191919;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-left: 0px;
  transition: background .16s, color .16s, border .16s, transform .12s;
}
.cookie-banner .cookie-btn.accept {
  background: #003366;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: #FFCB05;
  color: #003366;
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #003366;
  border: 1.5px solid #003366;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #191919;
  color: #fff;
  border-color: #191919;
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: #FFCB05;
  border: none;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  text-decoration: underline;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 16px 8px 12px 12px;
    font-size: .98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    justify-content: flex-start;
  }
}
/* Banner slide-in/out (add .hide for hide) */
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .22s, opacity .2s;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,20,20,0.74);
  z-index: 99991;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
  opacity: 1;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #132133;
  border-radius: 17px;
  max-width: 400px;
  width: 92vw;
  padding: 36px 28px 22px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.21);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalIn .38s cubic-bezier(.21,.8,.47,1.01);
}
@keyframes modalIn {
  from { transform: translateY(30px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.32rem;
  margin-bottom: 9px;
  color: #003366;
}
.cookie-modal ul {
  margin-bottom: 14px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal li {
  color: #262626;
  font-size: 1rem;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .99rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #003366;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btns .cookie-btn {
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 22px;
}
.cookie-modal .essential {
  color: #999;
  font-style: italic;
  margin-left: 7px;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 20px 10px 18px 10px;
  }
}

/* ---------------------------------------------------------------------------
   UTILITY CLASSES & MISC
--------------------------------------------------------------------------- */
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.my-2 { margin: 20px 0; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* General list stylings */
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 7px;
}
ul li::before {
  content: "• ";
  color: #003366;
  margin-right: 4px;
}

/* Remove bullet in .feature-item, .footer-contact, .footer-nav, .main-nav, .mobile-nav */
.feature-item ul, .feature-item li,
.footer-contact ul, .footer-contact li,
.footer-nav ul, .footer-nav li,
.main-nav ul, .main-nav li,
.mobile-nav ul, .mobile-nav li {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

/* ---------------------------------------------------------------------------
   MONOCHROME SOPHISTICATED EFFECTS
--------------------------------------------------------------------------- */
body {
  background: #f6f6f8;
  color: #181818;
}
.section {
  background: #fff;
  border: 1.5px solid #e0e0e0;
}
h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
  text-shadow: 0 0.65px 0 #fff, 0 1.5px 7px #00000011;
}
.btn-primary {
  background: #191919;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #003366;
  border: 2px solid #003366;
}
.feature-item, .card, .testimonial-card, .article-card {
  border-radius: 14px;
  box-shadow: 0 2.5px 15px rgba(10,10,14,0.06);
  border: 1px solid #ececec;
}

/* Nice subtle shadows for monochrome sophistication */
.card, .testimonial-card, .feature-item, .article-card {
  transition: box-shadow .16s, transform .16s, background .19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .article-card:hover {
  box-shadow: 0 4.5px 30px rgba(0,0,0,0.12);
  transform: scale(1.014) translateY(-1.5px);
  z-index: 2;
}

/* Fine contrast for dark/light blocks */
.section {
  box-shadow: 0 4px 34px rgba(0,0,0,.07);
}

/* ---------------------------------------------------------------------------
   FORM ELEMENTS (for contacts etc if needed)
--------------------------------------------------------------------------- */
input, textarea, select {
  border: 1px solid #cfd1d4;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #232323;
  margin-bottom: 13px;
  transition: border .17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #003366;
}
label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #003366;
  margin-bottom: 5px;
  font-size: .97rem;
}

/* Responsive global tweaks for monochrome elegance */
@media (max-width: 500px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.17rem; }
  p, li {
    font-size: .99rem;
  }
}
@media (max-width: 500px) {
  .section, .card, .testimonial-card, .feature-item, .featured-article {
    padding: 10px 6px !important;
  }
  .container {
    padding: 0 7px !important;
  }
}

/* ---------------------------------------------------------------------------
   ANIMATION & MICRO-INTERACTIONS
--------------------------------------------------------------------------- */
.btn-primary, .cookie-btn {
  transition: background .15s, color .14s, border .13s, box-shadow .18s, transform .16s !important;
}
.card, .testimonial-card, .feature-item, .article-card {
  transition: box-shadow .14s, background .14s, transform .11s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .article-card:hover {
  box-shadow: 0 8px 32px #19191918;
  transform: scale(1.017);
  z-index: 1;
}

/* ---------------------------------------------------------------------------
   MISC
--------------------------------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: #2d2d2d25; border-radius: 5px; }

/* Touch highlight for links/buttons */
a, button, .btn-primary, .cookie-btn {
  -webkit-tap-highlight-color: #00336633;
}

/* Error/success messages (for forms) */
.form-success {
  background: #e2ffe2;
  color: #1e4b1e;
  padding: 17px 22px;
  border-radius: 9px;
  margin-bottom: 22px;
}
.form-error {
  background: #fff2f2;
  color: #ba1818;
  padding: 17px 22px;
  border-radius: 9px;
  margin-bottom: 22px;
}

/* ---------------------------------------------------------------------------
   END OF CSS
--------------------------------------------------------------------------- */