/* =======================================================
   CSS RESET & BASELINE NORMALIZATION
   ======================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: color 0.2s;
}
img, picture {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
}
:focus-visible {
  outline: 2px solid #4EBFB7;
  outline-offset: 2px;
}

/* =======================================================
   CUSTOM PROPERTIES (WITH FALLBACKS)
   ======================================================= */
:root {
  --brand-primary: #274248;
  --brand-secondary: #4EBFB7;
  --brand-accent: #F7F5ED;
  --bg-white: #fff;
  --bg-light: #F7F5ED;
  --text-dark: #274248;
  --text-body: #3B494B;
  --border-light: #E8ECEB;
  --shadow: 0 2px 16px rgba(39,66,72,0.06);
  --radius-base: 12px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --transition: 0.23s cubic-bezier(.37,1.16,.34,1);
  --focus-outline: 2px solid var(--brand-secondary);
  font-family: 'Roboto', Arial, 'Noto Sans Lao', sans-serif;
  background: var(--bg-light);
}

body {
  font-family: 'Roboto', 'Noto Sans Lao', Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Noto Sans Lao', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, .content-wrapper > ul, .text-section > ul, .content-wrapper ol, .text-section ol {
  margin-bottom: 1.25em;
}

b, strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* =======================================================
   LAYOUT UTILITIES
   ======================================================= */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .content-wrapper { gap: 20px; padding: 0; }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* Main hero minimalist padding */
.hero {
  background: var(--bg-white);
  padding: 56px 0 48px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 24px 0 rgba(39, 66, 72, 0.03);
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 28px 0;
  }
}

.cta-section {
  background: var(--brand-accent);
  border-radius: var(--radius-base);
  text-align: center;
  margin-bottom: 0;
  padding: 44px 16px 48px 16px;
  box-shadow: var(--shadow);
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 14px;
}

/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
}
header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 500px) {
  .logo img { height: 28px; }
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-left: 20px;
}
.main-nav a {
  color: var(--text-dark);
  opacity: 0.86;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition), opacity var(--transition);
  padding: 2px 3px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-secondary);
  opacity: 1;
}
.cta-btn {
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 16px rgba(78,191,183,0.18);
  font-size: 1.07rem;
  font-weight: 600;
  text-align: center;
  margin-left: 28px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 24px rgba(39,66,72,0.11);
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: var(--radius-base);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition);
  z-index: 999;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(247, 245, 237, 0.99);
  z-index: 1200;
  transform: translateX(-110vw);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 38px 8px rgba(39,66,72,0.08);
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 26px 16px 0;
  font-size: 2.1rem;
  color: var(--text-dark);
  background: var(--brand-accent);
  border-radius: var(--radius-base);
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 11px;
  margin-left: 32px;
}
.mobile-nav a {
  padding: 16px 12px;
  font-size: 1.15rem;
  color: var(--text-dark);
  font-family: 'Noto Sans Lao', 'Roboto', sans-serif;
  letter-spacing: -.01em;
  border-radius: var(--radius-base);
  transition: background 0.18s, color 0.18s;
  margin-bottom: 6px;
  width: 220px;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-secondary);
  color: #fff;
}
@media (max-width: 400px) {
  .mobile-nav a { width: 90vw; }
}

/* Prevent background scroll when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* =======================================================
   FLEXBOX CONTENT & CARDS
   ======================================================= */
.feature-grid,
.services-list,
.industry-highlights,
.industry-sectors,
.blog-preview,
.blog-listing,
.case-studies-preview,
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > li,
.services-list > li,
.industry-highlights > li,
.industry-sectors > li,
.blog-preview > li,
.blog-listing > div,
.case-studies-preview > div,
.case-study-grid > div {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > li:hover,
.services-list > li:hover,
.industry-highlights > li:hover,
.industry-sectors > li:hover,
.blog-preview > li:hover,
.blog-listing > div:hover,
.case-studies-preview > div:hover,
.case-study-grid > div:hover {
  box-shadow: 0 8px 38px rgba(39,66,72,0.13);
  transform: translateY(-5px) scale(1.015);
}
.feature-grid img,
.industry-highlights img,
.industry-sectors img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .feature-grid, .services-list, .industry-highlights, .industry-sectors, .blog-preview, .case-studies-preview, .case-study-grid { gap: 14px; }
  .feature-grid > li, .services-list > li, .industry-highlights > li, .industry-sectors > li, .blog-preview > li, .case-studies-preview > div, .case-study-grid > div { min-width: 170px; padding: 18px 10px; }
}
@media (max-width: 600px) {
  .feature-grid, .services-list, .industry-highlights, .industry-sectors, .blog-preview, .case-studies-preview, .case-study-grid {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 6px;
  }
}

/* Blog Listing / Preview Listing */
.blog-listing, .blog-preview {
  margin-left: 0;
}
.blog-listing > div, .blog-preview > li {
  cursor: pointer;
}

/* Case Study Grid */
.case-study-grid {
  gap: 24px;
  margin-bottom: 22px;
}
.case-study-grid > div {
  flex: 1 1 260px;
}
@media (max-width: 768px) {
  .case-study-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Flexible text+image sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================================================
   TESTIMONIALS & FEATURE ITEMS
   ======================================================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 20px 28px 16px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-family: 'Noto Sans Lao', 'Roboto', sans-serif;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-weight: 500;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 10px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

/* Card container pattern */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 38px rgba(39,66,72,0.12);
  transform: translateY(-3px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* Utility: ensure no overlap in content */
.card, .card > * { z-index: 1; }

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 35px 0 24px 0;
  margin-top: 75px;
  font-family: 'Roboto', 'Noto Sans Lao', Arial, sans-serif;
  color: var(--text-dark);
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 180px;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 12px;
}
.footer-links, .footer-contact, .footer-social {
  flex: 1 1 150px;
}
.footer-links ul, .footer-contact ul {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a,
.footer-contact a {
  color: var(--text-body);
  font-size: 0.98rem;
  opacity: 0.78;
  transition: color .18s;
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--brand-secondary);
  opacity: 1;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-social a {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 7px;
  transition: transform var(--transition);
}
.footer-social a:hover {
  transform: scale(1.13);
}
.footer-social img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .footer-flex { gap: 22px; }
}
@media (max-width: 760px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand img { height: 26px; }
}

/* =======================================================
   FORMS & SEARCH
   ======================================================= */
input[type="text"], input[type="email"], select, textarea {
  border-radius: var(--radius-base);
  border: 1px solid var(--border-light);
  background: #fff;
  font-size: 1rem;
  padding: 9px 14px;
  margin-bottom: 12px;
  transition: border 0.18s;
  color: var(--text-dark);
  width: 100%;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--brand-secondary);
  outline: none;
}

.blog-search-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.blog-search-box input {
  min-width: 160px;
  width: 230px;
  max-width: 330px;
}
@media (max-width: 600px) {
  .blog-search-box input {
    width: 95vw;
    min-width: unset;
  }
}

select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16"><polyline points="3,6 8,11 13,6" fill="none" stroke="%234EBFB7" stroke-width="2"/></svg>') no-repeat right 12px center/18px 12px #fff;
}

/* =======================================================
   MISCELLANEOUS
   ======================================================= */
.static-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--brand-accent);
  border-radius: var(--radius-base);
  padding: 20px;
  margin-top: 15px;
}
.static-map-placeholder p { margin-top: 8px; color: var(--brand-primary); font-size: 0.96rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  padding: 0 2px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
}
.contact-details img {
  height: 20px;
  width: 20px;
}

/* List bullets for value/policy lists */
.text-section ul {
  padding-left: 22px;
  list-style-type: disc;
  color: var(--text-body);
}
.text-section ul li { margin-bottom: 5px; }
.text-section ol {
  padding-left: 22px;
  list-style-type: decimal;
  color: var(--text-body);
}
.text-section ol li { margin-bottom: 5px; }

/* Label for filters */
.blog-filters {
  margin: 18px 0 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* Cookie Banner Styles =================================*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-white);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  box-shadow: 0 -2px 24px 8px rgba(39,66,72,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 99vw;
  max-width: 600px;
  padding: 24px 22px 22px 22px;
  gap: 18px;
  z-index: 1301;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.31s, transform 0.36s cubic-bezier(.36,1.44,.38,1.02);
}
#cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
#cookie-banner p {
  color: var(--text-dark);
  font-size: 1.07rem;
  margin-bottom: 2px;
}
#cookie-banner .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 9px rgba(64,70,72,0.06);
}
.cookie-accept-btn {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--brand-primary);
}
.cookie-reject-btn {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--brand-secondary);
}
.cookie-settings-btn {
  background: var(--bg-light);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-secondary);
  box-shadow: none;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  color: #fff; background: var(--brand-secondary);
}
@media (max-width: 630px) {
  #cookie-banner { padding: 18px 8px 15px 8px; max-width: 97vw; }
  #cookie-banner .cookie-btn-row { flex-direction: column; gap: 8px; align-items: stretch; }
}

/* Cookie Modal ==================================== */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) scale(0.88);
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 38px 10px rgba(39,66,72,0.11);
  z-index: 1400;
  min-width: 320px;
  max-width: 95vw;
  width: 415px;
  padding: 34px 30px 24px 30px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-pop 0.38s cubic-bezier(.11,.88,.77,1.25);
}
#cookie-modal.show { display: flex; animation: cookie-modal-pop 0.4s; }
@keyframes cookie-modal-pop { from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
#cookie-modal h3 {
  color: var(--brand-primary);
  font-size: 1.4rem;
  margin-bottom: 7px;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-cat-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-base);
  padding: 11px 14px;
}
.cookie-cat-row label {
  font-size: 1.05rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.cookie-cat-row .cookie-toggle {
  margin-left: 10px;
}
.cookie-toggle {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #ddd;
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  vertical-align: middle;
}
.cookie-toggle-on {
  background: var(--brand-secondary) !important;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(41,46,64,0.13);
  transition: left var(--transition);
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle-thumb {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.19s;
}
.cookie-modal-actions .cookie-modal-close {
  background: var(--brand-primary);
}
.cookie-modal-actions .cookie-modal-save {
  background: var(--brand-secondary);
  margin-left: 5px;
}
.cookie-modal-actions .cookie-modal-close:hover, .cookie-modal-actions .cookie-modal-close:focus {
  background: var(--brand-secondary);
}
.cookie-modal-actions .cookie-modal-save:hover, .cookie-modal-actions .cookie-modal-save:focus {
  background: var(--brand-primary);
}
@media (max-width:500px) {
  #cookie-modal { width: 97vw; min-width: 0; padding: 24px 5vw 18px 5vw; }
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 600px) {
  .section, .cta-section { padding: 18px 4px 24px 4px; border-radius: 9px; }
}

/* Hide scrollbars for modal overlay, etc. */
body.modal-open {
  overflow: hidden;
}

/* =======================================================
   ACCESSIBILITY
   ======================================================= */
a, button {
  outline: none;
  transition: box-shadow 0.18s, color 0.18s, background 0.18s;
}
a:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2px var(--brand-secondary);
}

/* =======================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   ======================================================= */
.card, .testimonial-card, .services-list > li, .industry-sectors > li, .case-study-grid > div {
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .testimonial-card:hover, .services-list > li:hover, .industry-sectors > li:hover, .case-study-grid > div:hover {
  box-shadow: 0 8px 38px rgba(39,66,72,0.14);
  transform: translateY(-6px) scale(1.01);
}

.cta-btn, .cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, box-shadow 0.21s, transform 0.17s;
}

/* ================ END SCANDINAVIAN CLEAN CSS =========== */
