/* 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, 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; }
*, *:before, *:after { box-sizing: inherit; }
body { 
  line-height: 1.5; 
  background-color: #fff;  
  color: #111;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0a0a0a;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 14px; }
p {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 20px;
}
strong, b { font-weight: 700; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MONOCHROME-SOPHISTICATED COLORS -------------------------------------- */
:root {
  --primary: #1a4661;
  --primary-dark: #102537;
  --secondary: #fff;
  --gray-900: #111;
  --gray-700: #232323;
  --gray-500: #7a7a7a;
  --gray-200: #e9ecee;
  --gray-100: #f7f7f7;
  --accent: #FFB81C;
  --white: #fff;
  --black: #0a0a0a;
}

/* LAYOUT SPACING & FLEX ------------------------------------------------ */
.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 {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER ------------------------------------------------------------- */
header {
  background: var(--black);
  color: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
.header-logo img { height: 44px; width: auto; display: block; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--white);
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.cta-button.button-primary {
  background: var(--accent);
  color: #151515;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 12px 26px;
  border: none;
  margin-left: 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 18px 0 rgba(16, 37, 55, 0.05);
  cursor: pointer;
  outline: none;
  letter-spacing: .03em;
}
.cta-button.button-primary:hover, .cta-button.button-primary:focus {
  background: #ffd54e;
  color: #333;
  box-shadow: 0 4px 28px 0 rgba(33,87,121,0.12);
}

/* MOBILE HEADER ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  z-index: 130;
  transition: color 0.18s;
  padding: 6px 10px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { color: #ffd54e; }

.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--black);
  box-shadow: 0 10px 32px rgba(10,10,10,0.24);
  z-index: 120;
  padding: 28px 28px 24px 28px;
  transform: translateX(-100%);
  animation: mobileMenuIn 0.45s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes mobileMenuIn {
  to { transform: translateX(0); }
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--accent);
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
  padding: 6px 10px;
  transition: color 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { color: #ffd54e; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray-900);
  color: var(--accent);
}

@media (max-width:992px) {
  .main-nav, .cta-button.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-right: 48px;
  }
}

@media (min-width:993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN CONTENT ------------------------------------------------------- */
main { min-height: 60vh; background: var(--secondary); }
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: var(--secondary);
  border-radius: 16px;
}
section .container { padding: 0; }

/* FEATURES GRID ------------------------------------------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature-grid li {
  background: var(--gray-100);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(33,87,121,0.05);
  flex: 1 1 240px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 26px 22px;
  gap: 12px;
  color: #191919;
  transition: box-shadow 0.18s, background 0.22s;
}
.feature-grid li:hover {
  background: var(--white);
  box-shadow: 0 4px 30px 0 rgba(33,87,121,0.17);
}
.feature-grid img {
  height: 46px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

/* SERVICE CARDS ------------------------------------------------------ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: var(--gray-100);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(33,87,121,0.05);
  padding: 26px 22px 22px 22px;
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, background 0.22s;
}
.service-card:hover {
  background: var(--white);
  box-shadow: 0 6px 28px 0 rgba(33,87,121,0.13);
}

/* SERVICE LIST (SERVICES PAGE) --------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(33,87,121,0.06);
  padding: 28px 20px 22px 20px;
  flex: 1 1 210px;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.17s, background 0.23s;
}
.service-item:hover {
  background: var(--white);
  box-shadow: 0 4px 30px 0 rgba(33,87,121,0.13);
}
.service-item .price {
  background: var(--accent);
  color: #222;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 12px;
  align-self: flex-end;
}

/* TEAM (ABOUT) ------------------------------------------------------- */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.team-members > div {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(33,87,121,0.05);
  padding: 30px 20px 24px 20px;
  flex: 1 1 210px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.team-icons img { height: 38px; opacity: 0.92; }

/* VALUES ------------------------------------------------------------- */
.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.value-card {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(33,87,121,0.047);
  padding: 28px 20px 22px 20px;
  flex: 1 1 210px;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, background 0.18s;
}
.value-card:hover {
  background: var(--white);
  box-shadow: 0 4px 24px 0 rgba(33,87,121,0.13);
}

/* TESTIMONIALS ------------------------------------------------------- */
.testimonial-card {
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(33,87,121,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 22px 20px 22px;
  min-width: 240px;
  max-width: 420px;
  margin-bottom: 20px;
  color: #161616;
  transition: box-shadow 0.17s, background 0.19s;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #232323;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #424242;
}
.testimonial-slideshow, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 25px 0 rgba(33,87,121,0.13);
}

/* BLOG --------------------------------------------------------------- */
.blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-previews article {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,87,121,0.06);
  padding: 26px 22px 18px 22px;
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, background 0.18s;
}
.blog-previews article:hover {
  background: var(--white);
  box-shadow: 0 4px 26px 0 rgba(33,87,121,0.10);
}
.blog-previews article a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 7px;
  transition: color 0.16s;
  text-decoration: underline;
}
.blog-previews article a:hover { color: var(--accent); }

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.blog-list article {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,87,121,0.06);
  padding: 26px 22px 18px 22px;
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, background 0.18s;
}
.blog-list article:hover {
  background: var(--white);
  box-shadow: 0 4px 26px 0 rgba(33,87,121,0.10);
}
.blog-list article a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 7px;
  text-decoration: underline;
  transition: color 0.14s;
}
.blog-list article a:hover { color: var(--accent); }

.blog-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.blog-filter span {
  font-weight: 700;
  color: #222;
}
.blog-filter a {
  color: #888;
  background: #f0f1f3;
  border-radius: 12px;
  padding: 5px 15px;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.blog-filter a:hover,
.blog-filter a:focus {
  color: var(--primary);
  background: var(--accent);
}

/* WEBINARS ----------------------------------------------------------- */
.webinar-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.webinar-card {
  background: var(--gray-100);
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,87,121,0.07);
  padding: 26px 22px 16px 22px;
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, background 0.15s;
}
.webinar-card .cta-button {
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 20px;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(33,87,121,0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.webinar-card .cta-button:hover, .webinar-card .cta-button:focus {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 6px 22px 0 rgba(33,87,121,0.16);
}
.webinar-card:hover {
  background: var(--white);
  box-shadow: 0 4px 22px 0 rgba(33,87,121,0.12);
}

/* LINKS -------------------------------------------------------------- */
.link-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.04rem;
  text-decoration: underline;
  transition: color 0.14s;
}
.link-more:hover,
.link-more:focus { color: var(--accent); }

/* CTA BUTTONS -------------------------------------------------------- */
.cta-button {
  display: inline-block;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 17px 0 rgba(33,87,121,0.025);
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.15s, letter-spacing 0.13s;
  outline: none;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: #111;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 26px 0 rgba(33,87,121,0.10);
}
.button-primary {
  background: var(--accent);
  color: #101010;
  font-weight: 700;
}
.button-primary:hover,
.button-primary:focus {
  background: #ffd54e;
  color: #161616;
}

/* FOOTER ------------------------------------------------------------ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 0 22px 0;
  border-top: 1px solid var(--gray-200);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
.footer-logo img { height: 42px; margin-bottom: 14px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--gray-200);
  font-size: 0.98rem;
  padding: 2px 0;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact img { height: 1.1em; vertical-align: middle; margin-right: 6px; }

/* COOKIES BANNER ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--black);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.11);
  font-size: 1rem;
  gap: 20px;
  animation: cookieBannerIn .6s ease;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 20px;
  font-size: 0.98rem;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: #222;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #ffd54e; color: #191919; }
.cookie-banner .reject {
  background: #fafafa;
  color: #232323;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #e9ecee; color: #000; }
.cookie-banner .settings {
  background: var(--primary);
  color: #fafafa;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus { background: var(--gray-700); color: var(--accent); }

/* COOKIES MODAL ------------------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(15,15,15,0.74);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.39s cubic-bezier(.85,.02,.29,1) forwards;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: #131313;
  border-radius: 18px;
  max-width: 96vw;
  width: 410px;
  box-shadow: 0 8px 38px 0 rgba(33,87,121,0.17);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: scaleIn 0.35s cubic-bezier(.7,-0.16,.42,1.25) forwards;
}
@keyframes scaleIn {
  from { transform: scale(.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 9px;
  border: none;
  background: none;
  color: var(--accent);
  font-size: 1.81rem;
  cursor: pointer;
  z-index: 80;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus { color: var(--primary); }
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-100);
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  margin-right: 9px;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
}
.cookie-category input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal .accept {
  background: var(--accent);
  color: #222;
  border-radius: 16px;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus { background: #ffd54e; color: #191919; }
.cookie-modal .save {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus { background: #16344c; color: #ffd54e; }

/* FORMS, LISTS, GENERAL ELEMENTS -------------------------------------- */
ul, ol {
  margin-left: 1em;
  margin-bottom: 1em;
  color: #222;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style-type: disc;
  margin-left: 12px;
}
ul li strong, ul li b,
ol li strong, ol li b {
  color: var(--primary-dark);
}

/* TYPOGRAPHY --------------------------------------------------------- */
h1, .display-1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--black);
  line-height: 1.11;
  letter-spacing: -0.04em;
}
h2, .display-2 {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.018em;
  margin-bottom: 0.7em;
}
h3 { font-size: 1.22rem; }
p, li, a, span, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* RESPONSIVE --------------------------------------------------------- */
@media (max-width: 1020px) {
  .container { padding: 0 14px; }
  .feature-grid, .service-cards, .service-list,
  .blog-previews, .testimonial-slideshow, .testimonial-list, .team-members,
  .value-cards, .content-grid, .webinar-cards, .blog-list { gap: 14px; }
}

@media (max-width: 900px) {
  section { padding: 35px 0 35px 0; }
  .feature-grid li,
  .service-card,
  .service-item,
  .team-members > div,
  .value-card,
  .blog-previews article,
  .webinar-card,
  .testimonial-card,
  .blog-list article {
    min-width: 180px;
    padding: 20px 10px 16px 10px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .section, section { padding: 10px 0 25px 0; margin-bottom: 44px; }
  .feature-grid,
  .service-cards,
  .service-list,
  .team-members,
  .value-cards,
  .testimonial-slideshow,
  .testimonial-list,
  .blog-previews,
  .webinar-cards,
  .blog-list { flex-direction: column; gap: 16px; }
  .content-wrapper { gap: 14px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  header .container { flex-direction: row; }
  footer .container { flex-direction: column; gap: 22px; }
}

@media (max-width: 512px) {
  h1, .display-1 { font-size: 1.6rem; }
  h2, .display-2 { font-size: 1.17rem; }
  section { margin-bottom: 26px; }
  .service-item, .service-card, .testimonial-card,
  .blog-previews article, .webinar-card, .value-card { padding: 14px 7px 9px 9px; }
  .cookie-banner { flex-direction: column; padding: 13px 11px; font-size: 0.98rem; }
}

/* ANIMATIONS/MICROINTERACTIONS --------------------------------------- */
.card, .service-card, .service-item, .value-card, .testimonial-card, .blog-previews article, .webinar-card, .blog-list article {
  transition: box-shadow 0.18s, background 0.15s, transform 0.13s;
}
.card:hover, .service-card:hover, .service-item:hover, .value-card:hover, .testimonial-card:hover, .blog-previews article:hover, .webinar-card:hover, .blog-list article:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(33,87,121,0.13);
}

/* FOCUS VISIBLE ------------------------------------------------------ */
a:focus, button:focus, .cta-button:focus, input:focus, .cookie-banner button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background: #fbfbfb11;
}

/* UTILS -------------------------------------------------------------- */
.mt-0 { margin-top: 0!important; }
.mt-1 { margin-top: 16px!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 20px!important; }

/* Z-INDEX FIX for overlays & mobile menu ----------------------------- */
.mobile-menu,
.cookie-modal-overlay { z-index: 10001; }

/* DARK/LIGHT CONTRAST TESTIMONIALS ----------------------------------- */
.testimonial-card, .testimonial-list .testimonial-card {
  background: #fafbfc;
  color: #161616;
}

/* HIDE NATIVE SCROLLBAR ON MOBILE MENU ------------------------------- */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* NON-GRID, ONLY FLEX ------------------------------------------------ */
/* All layouts are flex-based, no grid properties used anywhere. */