/* 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233041;
  background: #F6F8FA;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
*, *::before, *::after { box-sizing: inherit; }
img { max-width: 100%; height: auto; display: block; border: 0; }
a { text-decoration: none; color: #003366; transition: color 0.16s; }
a:hover, a:focus { color: #FFBE00; }
ul, ol { list-style: none; }
strong { font-weight: bold; }
button, input, select, textarea { font: inherit; color: inherit; }

/* TYPOGRAPHY -------------------------------------------------------------- */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; color: #003366; margin-bottom: 16px; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.5rem; font-weight: 600; color: #003366; margin-bottom: 14px; margin-top: 0; line-height: 1.25; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.15rem; font-weight: 500; color: #003366; margin-bottom: 9px; margin-top: 0; }
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; font-weight: 500; color: #003366; margin-bottom: 6px; margin-top: 0; }
p { margin-bottom: 12px; }
blockquote { font-style: italic; color: #235084; padding: 0 0 0 18px; border-left: 4px solid #FFBE00; margin-bottom: 10px; background: none; }
.text-section ul, .text-section ol, ul, ol {
  margin-left: 22px;
  margin-bottom: 14px;
}
.text-section ul li, ul li { margin-bottom: 8px; position: relative; }
.text-section ul li::marker, ul li::marker { color: #FFBE00; }

@media (max-width: 600px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.17rem; }
  h3, .h3 { font-size: 1.02rem; }
}

/* CONTAINERS & LAYOUT ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main {
  flex: 1 1 auto;
  width: 100%;
  min-height: 1px;
  margin-top: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(67, 82, 111, 0.04);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(67, 82, 111, 0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 430px;
}
.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;
  background: #F6F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(67, 82, 111, 0.06);
  margin-bottom: 20px;
  flex-direction: column;
  color: #1B2431;
  font-size: 1.03rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .container {
    padding: 0 9px;
  }
  .section { padding: 28px 6px; }
}

@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section, .testimonial-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
}

/* HEADER --------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1.5px solid #e8eae9;
  position: sticky;
  top: 0;
  z-index: 70;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 68px;
  gap: 10px;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #233041;
  padding: 8px 8px 7px 8px;
  position: relative;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F8FA;
  color: #003366;
}
.cta.primary {
  background: #003366;
  color: #fff !important;
  border-radius: 6px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  margin-left: 18px;
  box-shadow: 0 2px 7px rgba(67,82,111,0.06);
  border: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.22s, transform 0.17s;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1B4477;
  box-shadow: 0 5px 20px rgba(0,51,102,.13);
  color: #FFBE00 !important;
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  background: rgba(0,0,0,0);
  border: none;
  font-size: 2rem;
  color: #003366;
  display: none;
  cursor: pointer;
  margin-left: 12px;
  padding: 2px 8px;
  line-height: 1;
}

@media (max-width: 900px) {
  .main-nav, .cta.primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  header .container { padding: 0 8px; }
}

/* MOBILE MENU ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 98vw;
  background: #fff;
  box-shadow: 0 2px 44px rgba(0,51,102,.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.31s cubic-bezier(.62,.16,.43,.99);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: rgba(0,0,0,0);
  border: none;
  font-size: 2.2rem;
  color: #003366;
  align-self: flex-end;
  margin: 23px 23px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover { color: #FFBE00; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 42px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  color: #233041;
  border-radius: 6px;
  padding: 10px 0 10px 0;
  width: 100%;
  transition: background 0.16s, color 0.16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F8FA;
  color: #003366;
  padding-left: 8px;
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO ----------------------------------------------------------- */
.hero {
  background: linear-gradient(128deg, #F6F8FA 60%, #fff 100%);
  padding: 58px 0 52px 0;
  border-radius: 0 0 26px 26px;
}
.hero .container { align-items: center; }
.hero .content-wrapper { align-items: center; gap: 12px; }
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #003366;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  color: #42526F;
  font-size: 1.14rem;
  margin-bottom: 24px;
  text-align: center;
}
.hero .cta.primary {
  margin-left: 0;
}
@media (max-width: 600px) {
  .hero { padding: 28px 0 22px 0; border-radius: 0 0 13px 13px; }
  .hero h1 { font-size: 1.45rem; }
}

/* FEATURES & CARDS --------------------------------------------- */
.features {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 44px 0 34px 0;
}
.features .content-wrapper { align-items: flex-start; }
.features h2 { margin-bottom: 26px; }
.features ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  width: 100%;
  justify-content: center;
}
.features ul li {
  background: #F6F8FA;
  border-radius: 12px;
  padding: 24px 19px 18px 19px;
  min-width: 220px;
  max-width: 350px;
  box-shadow: 0 1px 9px rgba(67,82,111,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 1rem;
}
.features ul li h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #003366;
}
.feature-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #003366;
  background: #E5E9EF;
  border-radius: 32px;
  padding: 7px 16px 7px 11px;
  font-size: 1.01rem;
}
.feature-icons img { height: 22px; width: 22px; }
@media (max-width: 900px) {
  .features ul { flex-direction: column; gap: 18px; align-items: stretch; }
  .features ul li { width: 100%; max-width: none; }
}

/* TEAM PREVIEW / TEAM LIST ------------------------------------- */
.team-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.team-list > div {
  background: #F6F8FA;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(67,82,111,0.05);
  padding: 28px 24px 24px 24px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.team-list h3 {
  margin-bottom: 5px;
  color: #003366;
  font-size: 1.07rem;
}
@media (max-width: 900px) {
  .team-list { flex-direction: column; gap: 17px; }
}

/* SERVICES LIST ------------------------------------------------- */
.services-list ul, .services-preview ul, .article-list ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  width: 100%;
  justify-content: center;
}
.services-list ul li, .services-preview ul li, .article-list ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(67,82,111,0.05);
  padding: 25px 21px 18px 21px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 1rem;
  transition: box-shadow 0.17s, transform 0.13s;
  border: 1.5px solid transparent;
}
.services-list ul li:hover, .services-preview ul li:hover, .article-list ul li:hover {
  box-shadow: 0 4px 18px rgba(0,51,102,0.09);
  transform: translateY(-2px) scale(1.01);
  border-color: #FFBE00;
}
.services-list ul li h3, .services-preview ul li h3, .article-list ul li h3 {
  color: #003366;
  margin-bottom: 8px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.services-list ul li h3 span, .services-preview ul li h3 span {
  color: #FFBE00;
  font-size: 0.99em;
  margin-left: 10px;
  font-weight: 500;
}
.services-list ul li a, .services-preview ul li a, .article-list ul li a {
  color: #003366;
  font-weight: 600;
  margin-top: 7px;
  font-size: 0.96rem;
  border-bottom: 1.5px solid #FFBE00;
  transition: color .17s, border-color .13s;
}
.services-list ul li a:hover, .services-preview ul li a:hover, .article-list ul li a:hover {
  color: #FFBE00;
  border-color: #003366;
}
@media (max-width: 900px) {
  .services-list ul, .services-preview ul, .article-list ul { flex-direction: column; gap: 16px; }
  .services-list ul li, .services-preview ul li, .article-list ul li { width: 100%; max-width: none; }
}

/* TESTIMONIALS ---------------------------------------------------------- */
.testimonials {
  background: #fff;
  border-radius: 20px;
  padding: 48px 0 44px 0;
  box-shadow: 0 1px 15px rgba(67,82,111,0.06);
  margin-bottom: 60px;
}
.testimonials .content-wrapper { align-items: flex-start; }
.testimonials h2 { margin-bottom: 28px; color: #003366; text-align: left; }
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.testimonial-card {
  background: #F6F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(67,82,111,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 18px 18px 24px;
  min-width: 260px;
  max-width: 360px;
  color: #222F44;
  font-size: 1.01rem;
  margin-bottom: 22px;
  border-left: 5px solid #FFBE00;
}
.testimonial-card blockquote { color: #003366; font-style: italic; border: none; margin-bottom: 8px; padding: 0; quotes: '\201E''\201C'; }
.testimonial-card blockquote:before { content: '\201E'; font-size: 1.7rem; color: #FFBE00; margin-right: 2px; vertical-align: -12px; }
.testimonial-card div { color: #42526F; font-size: 0.97rem; font-style: normal; }
@media (max-width: 900px) {
  .testimonial-slider { flex-direction: column; gap: 0; }
}

/* CASE STUDIES ---------------------------------------------------------- */
.case-studies > .content-wrapper > div {
  background: #F6F8FA;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(67,82,111,0.05);
  padding: 18px 19px;
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ABOUT PREVIEW --------------------------------------------------------- */
.about-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(67,82,111,0.04);
  margin-bottom: 38px;
  padding: 38px 0 33px 0;
}
.about-preview img {
  height: 49px;
  margin-bottom: 16px;
  border-radius: 9px;
  background: #F6F8FA;
  padding: 8px;
}

/* CTA-BANNER ------------------------------------------------------------ */
.cta-banner {
  background: #E5E9EF;
  border-radius: 13px;
  margin-bottom: 60px;
  padding: 42px 0 38px 0;
  text-align: center;
}
.cta-banner .content-wrapper { align-items: center; gap: 10px; }
.cta-banner h2, .cta-banner p { color: #003366; }

/* CONTACT DETAILS --------------------------------------------------------- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 16px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #003366;
  font-size: 1.07rem;
}
.contact-details ul img { height: 20px; width: 20px; }

/* CONTACT FORM (Simple) -------------------------------------------------- */
.contact-form .text-section {
  background: #F6F8FA;
  border-radius: 9px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-form ul {
  display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px;
}
.contact-form .cta.primary { align-self: flex-start; margin-top: 10px; }

/* ARTICLE LIST (Blog) ---------------------------------------------------- */
.article-list ul li h3 { margin-bottom: 6px; }
.article-list ul li p { font-size: .99rem; color: #42526F; }

/* THANK YOU PAGE --------------------------------------------------------- */
.thank-you.section, .thank-you {
  background: #fff;
  border-radius: 17px;
  margin-bottom: 60px;
  padding: 56px 20px;
  text-align: center;
  box-shadow: 0 1px 10px rgba(67,82,111,0.03);
}

/* LEGAL PAGE ------------------------------------------------------------- */
.legal .text-section {
  background: #F6F8FA;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(67,82,111,0.03);
  padding: 22px 16px;
  margin-bottom: 16px;
}

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1.5px solid #e8eae9;
  font-size: 0.99rem;
}
footer .container { padding: 0 22px; }
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 0 12px 0;
  flex-wrap: wrap;
}
.footer-top .logo img { height: 29px; margin-bottom: 12px; }
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-legal a {
  color: #42526F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 3px 0 3px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #003366;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
  color: #003366;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
}
.footer-contact img { height: 17px; width: 17px; }
.footer-bottom {
  padding: 14px 0 20px 0;
  color: #42526F;
  text-align: left;
  border-top: 1.5px solid #e8eae9;
  font-size: .96rem;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0 8px 0;
  }
  footer .container { padding: 0 8px; }
}

/* BUTTONS & INTERACTIVE -------------------------------------------------- */
button, .cta, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.11s, transform 0.13s;
}
.cta.primary, .cookie-btn.accept {
  background: #003366;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 11px 27px;
  font-size: 1rem;
}
.cta.primary:hover, .cookie-btn.accept:hover {
  background: #235084;
  color: #FFBE00;
  box-shadow: 0 5px 20px rgba(0,51,102,.15);
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 1rem;
}
.cookie-btn.settings { background: #FFBE00; color: #003366; }
.cookie-btn.settings:hover { background: #FFF5CC; color: #235084; }
.cookie-btn.reject { background: #E5E9EF; color: #003366; }
.cookie-btn.reject:hover { background: #CED5DF; color: #233041; }

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 1vw; right: 1vw; bottom: 18px;
  width: 98vw;
  max-width: 480px;
  margin: 0 auto;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid #E5E9EF;
  border-radius: 13px;
  box-shadow: 0 3px 26px rgba(0,51,102,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 19px 22px 24px;
  gap: 15px;
  font-size: .99rem;
  animation: cookieFadeIn 0.62s both;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(70px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-top: 4px;
}

/* COOKIE MODAL ----------------------------------------------------------- */
.cookie-modal-bg {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35, 62, 83, 0.38);
  z-index: 10009;
  display: flex; align-items: center; justify-content: center;
  animation: cookieBGFade 0.38s both;
}
@keyframes cookieBGFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 440px;
  width: 93vw;
  padding: 31px 23px 23px 28px;
  box-shadow: 0 9px 40px rgba(0, 51, 102, 0.19);
  position: relative;
  z-index: 10011;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.03rem;
  animation: cookieModalIn 0.42s both;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(130px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 11px;
  border: none;
  background: none;
  color: #003366;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover { color: #FFBE00; }
.cookie-toggle-group {
  margin: 12px 0 7px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-toggle input[type=checkbox] {
  width: 23px;
  height: 23px;
  accent-color: #FFBE00;
  border-radius: 7px;
  margin-right: 6px;
}
.cookie-toggle[disabled], .cookie-toggle input[disabled] {
  cursor: not-allowed;
  color: #9EA8B3 !important;
}

/* UTILITIES -------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-7 { margin-top: 7px !important; }
.gap-16 { gap: 16px !important; }
.gap-32 { gap: 32px !important; }

/* SCANDINAVIAN 'NATURAL' FEEL -------------------------------------------- */
body, .section, .card, .about-preview, .cta-banner, .testimonials, .features, .team-list > div, .case-studies > .content-wrapper > div, .testimonial-card, .contact-form .text-section, .legal .text-section, .thank-you.section {
  background: #fff;
}
section, footer, header, .card, .testimonials, .features, .about-preview, .cta-banner, .testimonial-card {
  box-shadow: 0 1px 10px rgba(67, 82, 111, 0.04);
}

/* SCROLLBAR -------------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; background: #F6F8FA; }
::-webkit-scrollbar-thumb { background: #E5E9EF; border-radius: 6px; }

/* TRANSITIONS ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6, .cta, .cta-banner .content-wrapper, .hero, .card, .testimonial-card, .features ul li, .footer-nav a, .footer-legal a, .team-list > div, .case-studies > .content-wrapper > div {
  transition: box-shadow 0.17s, transform 0.15s, color 0.16s;
}

/* ACCESSIBILITY ---------------------------------------------------------- */
:focus-visible { outline: 2px solid #FFBE00; outline-offset: 2px; z-index: 999; }

/* Spacing rules (override in specific layouts if needed) ----------------- */
.card:not(:last-child) { margin-bottom: 20px; }
.section, .cta-banner, .testimonials, .features, .about-preview, .thank-you.section {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .section, .cta-banner, .testimonials, .features, .about-preview, .thank-you.section { margin-bottom: 32px; }
  .card { padding: 17px 8px; }
}

/* Print-friendly adjustments (optional, unobtrusive) --------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .card, .about-preview, .cta-banner, .testimonials, .features { box-shadow: none !important; background: #fff !important; }
}
