/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #151515;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #0B2545;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D8A441;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin: 12px 0 18px 0;
}
li {
  margin-bottom: 6px;
}
strong, b {
  font-weight: 700;
}
blockquote {
  margin: 20px 0;
  padding-left: 18px;
  border-left: 3px solid #0B2545;
  color: #333;
  font-style: italic;
  background: #F7F8FA;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #0B2545;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #111111;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #151515;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #202020;
}
@media (min-width: 601px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #24262A;
}
small {
  font-size: 0.92rem;
  color: #7E7E7E;
}

/* SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(11, 37, 69, 0.03);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 2px solid #F1F2F6;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 22px;
  position: relative;
}
.logo-link, .header-flex > a img {
  display: block;
  height: 48px;
  width: auto;
}
.main-nav {
  display: none;
}
@media (min-width: 1050px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 2px;
  color: #0B2545;
  transition: color 0.18s, border-color 0.18s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D8A441;
  border-bottom: 2px solid #D8A441;
}
.cta-btn {
  display: inline-block;
  background: #0B2545;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(11,37,69,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #0B2545;
  border: 2px solid #0B2545;
  box-shadow: 0 4px 24px 0 rgba(11,37,69,0.11);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #0B2545;
  margin-left: auto;
  cursor: pointer;
  z-index: 1101;
  padding: 12px 14px;
  border-radius: 7px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EDEDED;
  color: #D8A441;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 40px rgba(0,0,0,0.16);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(.6,.03, .2,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #0B2545;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: -6px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D8A441;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #101010;
  font-weight: 500;
  font-size: 1.13rem;
  padding: 10px 0;
  border-bottom: 1px solid #ECECEC;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D8A441;
}
@media (min-width: 1050px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero, .section-cta {
  background: #0B2545;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(11,37,69,0.09);
  text-align: left;
  margin-bottom: 60px;
  padding: 48px 20px 48px 20px;
}
.hero h1, .section-cta h2 {
  color: #fff;
}
.hero p, .section-cta p {
  color: #F3F5F7;
}
.hero .cta-btn, .section-cta .cta-btn {
  background: #D8A441;
  color: #0B2545;
  box-shadow: 0 4px 28px 0 rgba(216, 164, 65, 0.13);
}
.hero .cta-btn:hover, .section-cta .cta-btn:hover {
  background: #fff;
  color: #D8A441;
  border: 2px solid #D8A441;
}

/* FLEX GRIDS */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 24px;
  margin: 24px 0 0 0;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 18px rgba(11, 37, 69, 0.06);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(11, 37, 69, 0.14);
  transform: translateY(-2px) scale(1.015);
  z-index: 1;
}
.content-grid {
  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: stretch;
    gap: 20px;
  }
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F8FA;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(11,37,69,0.04);
  padding: 24px 18px 18px 18px;
  min-width: 205px;
  flex: 1 1 230px;
  transition: background 0.15s, box-shadow 0.18s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  filter: grayscale(100%);
  opacity: 0.75;
}
.feature-item h3 {
  color: #0B2545;
  font-size: 1.11rem;
  margin-bottom: 5px;
}
.feature-item strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D8A441;
  font-weight: 700;
  margin-top: 7px;
  font-size: 1.08rem;
}
.feature-item:hover, .feature-item:focus {
  background: #fff;
  box-shadow: 0 6px 20px 0 rgba(11,37,69,0.10);
}

/* TESTIMONIALS */
.testimonials {
  background: #F7F8FA;
  border-radius: 18px;
  box-shadow: 0 4px 26px rgba(11,37,69,0.07);
  padding: 42px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.07);
  padding: 20px 26px;
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 630px;
}
.testimonial-card p {
  color: #23262A;
  font-size: 1.08rem;
  text-align: center;
}
.testimonial-meta {
  font-style: normal;
  font-size: 0.98rem;
  color: #0B2545;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}
@media (min-width: 800px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .testimonial-card {
    margin-bottom: 0;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0 28px 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2.5px 12px 0 rgba(11,37,69,0.045);
  padding: 20px 22px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.faq-item h3 {
  color: #0B2545;
  margin-bottom: 9px;
  font-size: 1.1rem;
  font-weight: 600;
}
.faq-item p {
  color: #292929;
  font-size: 0.99rem;
}
.faq-item:hover {
  box-shadow: 0 6px 19px 0 rgba(11,37,69,0.11);
  transform: translateY(-1px);
  z-index: 1;
}

/* CARDS - CASE STUDY, GENERAL */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card-content img {
  border-radius: 8px;
}

/* FOOTER */
footer {
  background: #18191E;
  color: #fff;
  padding-top: 46px;
  padding-bottom: 0;
  border-top: 3px solid #0B2545;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 20px;
}
.footer-flex > a img {
  height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: .85;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.footer-nav a {
  color: #F3F5F7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  transition: color 0.13s, border-bottom 0.13s;
  border-bottom: 1.4px solid transparent;
  padding-bottom: 1px;
  width: max-content;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D8A441;
  border-bottom: 1.4px solid #D8A441;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #fff;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 22px;
  width: auto;
  margin-right: 8px;
  filter: grayscale(1) contrast(0.7);
  vertical-align: middle;
  opacity: .75;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.copyright {
  padding: 15px 0 6px 0;
  font-size: 0.95rem;
  color: #B0B2BE;
  text-align: left;
}

/* RESPONSIVE FIXES */
@media (max-width: 600px) {
  .container {
    padding: 0 9px;
  }
  .section, section {
    padding: 25px 6px;
    margin-bottom: 40px;
  }
  .hero, .section-cta, .testimonials {
    padding-left: 5px;
    padding-right: 5px;
  }
  .card, .feature-item, .faq-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 13px;
  }
}

/* BUTTONS */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  background: #D8A441;
  color: #0B2545;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #0B2545;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(11,37,69,0.12);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  box-shadow: 0 -3px 24px rgba(11,37,69,0.16);
  padding: 20px 16px 25px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 9999;
  justify-content: space-between;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 420px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #D8A441;
  color: #0B2545;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1.5px 6px 0 rgba(11,37,69,0.1);
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.17s, color 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #D8A441;
  border: 2px solid #D8A441;
}
.cookie-btn.reject {
  background: #fff;
  color: #555;
  border: 2px solid #0B2545;
}
.cookie-btn.reject:hover {
  background: #0B2545;
  color: #fff;
}
.cookie-btn.settings {
  background: #0B2545;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #D8A441;
  color: #0B2545;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 6px 18px 6px;
  }
  .cookie-banner .cookie-btns {
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10005;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 20, 33, 0.58);
  animation: fadeInCookieModal 0.23s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 64px rgba(11,37,69,0.19);
  z-index: 10010;
  width: 95vw;
  max-width: 470px;
  padding: 36px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scaleInCookieModal 0.19s;
}
@keyframes scaleInCookieModal {
  from {
    opacity: 0;
    transform: translate(-50%,-50%) scale(.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
  }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: #0B2545;
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: #23262A;
  font-size: 1rem;
  margin-right: 6px;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #D8A441;
  width: 18px;
  height: 18px;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal .btn, .cookie-modal button {
  font-size: 1rem;
  min-width: 46px;
}
.cookie-modal .close-btn {
  background: #fff;
  color: #0B2545;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  right: 14px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-btn:hover {
  background: #0B2545;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 7px 14px 7px;
  }
}

/* TABLES (FOR POLICY PAGES) */
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1rem;
  background: #fff;
  border-radius: 6px;
  margin: 18px 0;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 9px 16px;
  border-bottom: 1px solid #EDEDED;
  color: #23272B;
}
th {
  background: #F7F8FA;
  color: #0B2545;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* MISC */
::-webkit-scrollbar {
  width: 8px;
  background: #E7EBF0;
}
::-webkit-scrollbar-thumb {
  background: #BABFC8;
  border-radius: 6px;
}

/* HTML Utility Classes */
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* --- End of CSS --- */
