/* ------------------------------------------------------
   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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #fff;
  color: #1B242A;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
ul, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font: inherit;
  border-radius: 4px;
  border: 1px solid #dee1e5;
  background: #fff;
  padding: 10px;
  color: #194267;
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #194267;
}
::-webkit-input-placeholder { color: #b4b4b4; }
:-moz-placeholder { color: #b4b4b4; }
::-moz-placeholder { color: #b4b4b4; }
:-ms-input-placeholder { color: #b4b4b4; }

/* ------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------ */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #194267;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #194267;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1B242A;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B242A;
}
p, ul, ol, li, table, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1B242A;
}
strong {
  font-weight: 600;
  color: #194267;
}
.cta-link {
  color: #194267;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid #19426722;
  padding-bottom: 2px;
  position: relative;
  transition: color .2s, border-color .2s;
}
.cta-link:hover, .cta-link:focus {
  color: #194267cc;
  border-color: #194267;
}

/* ------------------------------------------------------
   GENERAL LAYOUT & SPACING
------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  .section, section {
    padding: 24px 0 0 0;
    margin-bottom: 32px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------ */
header {
  background: #fff;
  border-bottom: 1px solid #F3F4F6;
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 8px 0 rgba(25,66,103, .02);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  width: 144px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B242A;
  opacity: 0.90;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #194267;
  border-color: #194267;
  opacity: 1;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #194267;
  color: #fff;
  padding: 12px 28px;
  border-radius: 27px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(25,66,103, .07);
  border: none;
  margin-left: 14px;
  transition:  background .2s,box-shadow .2s, color .2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #194267;
  border: 1.5px solid #194267;
}
@media (max-width: 990px) {
  header .container {
    gap: 12px;
  }
  .main-nav {
    gap: 17px;
  }
  .btn-primary {
    margin-left: 8px;
    padding: 10px 18px;
  }
}
@media (max-width: 800px) {
  .main-nav, .btn-primary {
    display: none;
  }
}

/* ------------------------------------------------------
   MOBILE MENU
------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 210;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 42px;
  color: #194267;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(25,66,103,.07);
  border: 1.5px solid #dee1e5;
  justify-content: center;
  align-items: center;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #194267;
  color: #fff;
}

@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.71,.33,.32,1.19);
  box-shadow: 2px 0 16px 0 rgba(25,66,103,.08);
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #194267;
  padding: 1em;
  background: none;
  border: none;
  position: absolute;
  top: 14px;
  right: 24px;
  z-index: 999;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
  background: #194267;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 90px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  color: #1B242A;
  opacity: 0.93;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  width: max-content;
  transition: color .2s, border-color .2s, opacity .2s;
  margin-bottom: 6px;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #194267;
  opacity: 1;
  border-color: #194267;
}
/* Mobile nav overlay animation */
.mobile-menu.open {
  animation: menuFadeIn .33s cubic-bezier(.71,.33,.32,1.19) both;
}
@keyframes menuFadeIn {
  0% { opacity: 0.7; transform: translateX(-100vw); }
  90% { opacity: 1; }
  100% { opacity: 0.98; transform: translateX(0); }
}

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

/* ------------------------------------------------------
   HERO SECTIONS
------------------------------------------------------ */
.hero {
  background: #fafdff;
  padding: 42px 0 0 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  max-width: 700px;
}
.hero p {
  max-width: 540px;
  color: #36404a;
}

/* ------------------------------------------------------
   FEATURES & CARDS
------------------------------------------------------ */
.features-list,
.services-list,
.service-preview-list,
.approach-points,
.team-list,
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 8px;
  align-items: flex-start;
}
.features-list li,
.services-list li,
.service-preview-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 min(330px, 100%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(25,66,103,.05);
  padding: 24px 20px;
  transition: box-shadow .22s, transform .14s;
  min-width: 220px;
  min-height: 140px;
}
.features-list li:hover,
.services-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(25,66,103,.12);
  transform: translateY(-3px) scale(1.019);
}
.features-list img, .services-list img {
  width: 50px;
  height: 50px;
}
.features-list div, .services-list div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-preview-list li {
  background: #F6E7CF22;
  border: 1px solid #F6E7CF;
  padding: 18px 18px;
  min-height: unset;
}

.projects-snippets,
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.projects-snippets > div, .project-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(25,66,103,.05);
  padding: 22px 24px 20px 22px;
  min-width: 220px;
  flex: 1 1 min(320px, 100%);
  max-width: 340px;
  transition: box-shadow .22s, transform .13s;
}
.projects-snippets > div:hover,
.project-card:hover {
  box-shadow: 0 8px 34px 0 rgba(25,66,103,0.13);
  transform: translateY(-5px) scale(1.016);
}

/* Card container spacing */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(25,66,103,.04);
  padding: 22px 18px;
  transition: box-shadow .18s, border-color .1s;
  border: 1px solid #F3F4F6;
}
.card:hover {
  box-shadow: 0 10px 30px 0 rgba(25,66,103,.12);
  border-color: #86999433;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* ------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------ */
.testimonials-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F6E7CF;
  color: #1B242A;
  padding: 20px 22px 22px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 18px 0 rgba(25,66,103,.09);
  min-width: 240px;
  flex: 1 1 min(320px,100%);
  margin-bottom: 20px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #F6E7CFcc;
  transition: box-shadow .2s, transform .17s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #194267;
  font-size: 1rem;
}
.testimonial-card span {
  font-size: 1.1rem;
  color: #FFC300;
  margin-top: -12px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 33px 0 rgba(25,66,103,.15);
  transform: translateY(-3px) scale(1.01);
}

/* Feature item (flex-col) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------
   TABLES
------------------------------------------------------ */
.options-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 1rem;
}
.options-table th, .options-table td {
  padding: 13px 8px;
  text-align: left;
  border-bottom: 1px solid #F3F4F6;
}
.options-table th {
  color: #194267;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.options-table tbody tr:hover {
  background: #F6E7CF33;
}

/* ------------------------------------------------------
   FORMS
------------------------------------------------------ */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
}
form > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
label {
  font-size: 1rem;
  color: #194267;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
input, textarea, select {
  min-width: 120px;
  max-width: 430px;
}
textarea {
  min-height: 66px;
  resize: vertical;
}
button[type="submit"], .btn-primary {
  align-self: flex-start;
}

/* ------------------------------------------------------
   FOOTER
------------------------------------------------------ */
footer {
  background: #fff;
  border-top: 1.5px solid #F3F4F6;
  padding: 38px 0 16px 0;
  font-size: 1rem;
  margin-top: 44px;
  box-shadow: 0 -3px 20px 0 rgba(25,66,103,.03);
}
.footer-logo img {
  width: 120px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #194267;
  opacity: .86;
  font-size: .98rem;
  transition: color .15s;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1B242A;
  border-color: #19426744;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-copy {
  margin-top: 10px;
  font-size: .93rem;
  color: #869994;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  footer {
    padding-bottom: 16px;
  }
}

/* ------------------------------------------------------
   CONTACT INFO & THANK YOU
------------------------------------------------------ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 60vh;
  justify-content: center;
  padding: 64px 0 42px 0;
}
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.next-steps {
  margin: 22px 0 0 0;
  padding: 0 0 10px 0;
  color: #194267;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}
.next-steps a {
  color: #194267;
  text-decoration: underline;
  font-size: 1.07rem;
}

/* ------------------------------------------------------
   GENERAL RESPONSIVE
------------------------------------------------------ */
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
  .project-list, .projects-snippets, .features-list, .services-list, .service-preview-list, .card-container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  .testimonials-preview,
  .features-list,
  .project-list,
  .projects-snippets,
  .service-preview-list,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.13rem; }
  h3, .h3 { font-size: .98rem; }
  .section, section { margin-bottom: 32px; }
  .features-list li, .services-list li, .service-preview-list li, .projects-snippets > div, .project-card {
    min-width: 90%;
    max-width: unset;
    padding: 13px 11px;
  }
  .testimonial-card { min-width: unset; max-width: 99vw; }
  footer .container { gap: 14px; }
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 888;
  background: #fff;
  border-top: 1.5px solid #F3F4F6;
  box-shadow: 0 -4px 22px 0 rgba(25,66,103,.07);
  padding: 18px 6vw 18px 6vw;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  opacity: 1;
  transition: transform .35s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__info {
  flex: 1 1 50%;
  color: #1B242A;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 1px 6px 0 rgba(25,66,103,.03);
  transition: background .17s, color .17s, border .17s;
}
.cookie-accept {
  background: #194267;
  color: #fff;
  border: 1.5px solid #194267;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #194267;
  border-color: #194267;
}
.cookie-reject {
  background: #eee;
  color: #194267;
  border: 1.5px solid #ccc;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F6E7CF;
  color: #194267;
}
.cookie-settings {
  background: none;
  color: #1B242A;
  border: 1.5px solid #F6E7CF;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F6E7CF44;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 10px 20px 10px;
    font-size: .97rem;
  }
  .cookie-banner__actions { gap: 9px; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1200;
  background: rgba(27, 36, 42, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: cookieModalIn .28s cubic-bezier(.78,-0.14,.33,1.17) both;
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  90% { opacity: .995; }
  100% { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 94vw;
  box-shadow: 0 8px 44px 0 rgba(25,66,103,.15);
  padding: 36px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.7rem;
  color: #194267;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F6E7CF33;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #194267;
  font-size: 1.27rem;
  font-weight: 600;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  margin: 9px 0;
}
.cookie-modal__category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B242A;
  font-weight: 500;
}
.cookie-modal__toggle {
  appearance: none;
  width: 39px;
  height: 22px;
  background: #dee1e5;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal__toggle:checked {
  background: #194267;
}
.cookie-modal__toggle::before {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s cubic-bezier(.34,1.2,.22,.99);
  box-shadow: 0 1px 5px 0 rgba(25,66,103,0.09);
}
.cookie-modal__toggle:checked::before {
  left: 19px;
}
.cookie-modal__category--essential label {
  color: #194267;
  opacity: .82;
}
.cookie-modal__category--essential .cookie-modal__toggle {
  display: none;
}
.cookie-modal__desc {
  font-size: .92rem;
  color: #829191;
  margin-left: 3px;
  line-height: 1.45;
}

.cookie-modal__actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cookie-modal__dialog {
    max-width: 98vw;
    padding: 17px 4vw 18px 4vw;
    font-size: .97rem;
    gap: 18px;
  }
}

/* ------------------------------------------------------
   FLEX UTILITIES
------------------------------------------------------ */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ------------------------------------------------------
   OTHER COMPONENTS
------------------------------------------------------ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 780px;
}
.team-list,
.brands-list {
  gap: 22px;
}
.team-list li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(25,66,103,0.04);
  padding: 19px 15px 10px 16px;
  flex: 1 1 min(265px, 100%);
  min-width: 160px;
  margin-bottom: 18px;
}
.team-list strong {
  color: #194267;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brands-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 0;
}

/* Approach and process steps */
.approach-points li,
.process-steps li {
  background: #F6E7CF11;
  border: 1.5px solid #F6E7CF88;
  border-radius: 11px;
  padding: 16px 12px 13px 16px;
  margin-bottom: 10px;
  font-size: .99rem;
}

/* ------------------------------------------------------
   ANIMATIONS & INTERACTIONS
------------------------------------------------------ */
a, .btn-primary, button, .cookie-btn, .cta-link {
  transition: color .14s, background .14s, border-color .14s, box-shadow .18s, transform .18s;
}
.card, .project-card, .testimonial-card {
  transition: box-shadow .21s, transform .13s;
}

/* ------------------------------------------------------
   COLOR UTILITIES & HIDE
------------------------------------------------------ */
.text-primary   { color: #194267; }
.text-secondary { color: #869994; }
.text-accent    { color: #F6E7CF; }
.bg-primary     { background: #194267; }
.bg-accent      { background: #F6E7CF; }
.bg-secondary   { background: #fff; }
.hide { display: none !important; }

/* ------------------------------------------------------
   ACCESSIBILITY
------------------------------------------------------ */
:focus {
  outline: 2px solid #19426755;
  outline-offset: 2px;
}

/* ------------------------------------------------------
   DEDICATED MARGINS/PADDING BETWEEN CARDS/SECTIONS
------------------------------------------------------ */
.section > .container > .content-wrapper > * + * {
  margin-top: 16px;
}
.section + .section, section + section, section + .section {
  margin-top: 60px;
}
.card + .card, .testimonial-card + .testimonial-card, .project-card + .project-card, .features-list li + li {
  margin-top: 0;
}

/* ------------------------------------------------------
   PRINT
------------------------------------------------------ */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #222; }
}
