/* CSS RESET & NORMALIZE */
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;
}
.cta-banner p {
  color: white;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f6f8fb;
  color: #1a202c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #14213d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fca311;
}
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14213d;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22304c;
  font-size: 1rem;
}
strong, b { font-weight: 600; color: #14213d; }
em { color: #3a465b; font-style: italic; }

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(20,33,61,0.06);
  display: flex;
  flex-direction: column;
}
main > section {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section, main > section {
    padding: 24px 6px 28px 6px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 8px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #14213d;
  box-shadow: 0 2px 18px 0 rgba(20,33,61,0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 28;
}
header .container {
  min-height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.22s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #fca311;
  transition: width 0.25s;
  position: absolute;
  left: 0; bottom: -3px;
}
.main-nav a:hover:after,
.main-nav a:focus:after { width: 100%; }
.main-nav a:hover, .main-nav a:focus { color: #fca311; }

.cta-btn {
  background: #fca311;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 9px;
  padding: 12px 28px;
  margin-left: 32px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(252,163,17,0.13);
  transition: background 0.18s, box-shadow 0.26s, transform 0.13s;
  outline: none;
  display: inline-block;
  letter-spacing: 0.02em;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffbc2e;
  color: #14213d;
  box-shadow: 0 4px 20px 0 rgba(252,163,17,0.21);
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: #fca311;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  margin-left: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s;
  z-index: 100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffbc2e;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #14213d;
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.54,1.3,.46,1), box-shadow 0.2s;
  box-shadow: 0 6px 36px 2px rgba(20,33,61,0.17);
  z-index: 9999;
  padding: 40px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fca311;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 10px 0 10px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22304c;
  color: #fca311;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
  }
  .cta-btn {
    margin-left: 14px;
    padding: 11px 20px;
  }
  header .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  header img {
    height: 38px;
  }
  .cta-btn { font-size: 1rem; }
}
@media (max-width: 820px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    min-height: 68px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #f6f8fb 75%, #e8ecf6 100%);
  padding: 64px 0 44px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #e7eaf2;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 720px;
}
.hero h1 {
  color: #14213d;
  font-size: 2.5rem;
}
.hero p {
  color: #22304c;
  font-size: 1.18rem;
  margin: 0 0 12px 0;
}
@media (max-width: 620px) {
  .hero {
    padding: 36px 0 20px 0;
  }
  .hero h1 { font-size: 1.6rem; }
}

/* CARDS & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(20,33,61,0.09);
  padding: 26px 22px 18px 22px;
  transition: box-shadow 0.16s, transform 0.13s;
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 270px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(20,33,61,0.14);
  transform: translateY(-2px) scale(1.025);
}

.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;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 0;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f8fb;
  padding: 18px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px 0 rgba(20,33,61,0.04);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.service-item {
  flex: 1 1 230px;
  min-width: 180px;
  background: #f6f8fb;
  border-radius: 11px;
  padding: 17px 14px 19px 14px;
  box-shadow: 0 1px 6px 0 rgba(20,33,61,0.09);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.14s;
  border: 1px solid #e3e6ef;
}
.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.service-item strong {
  color: #fca311;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 4px 16px 0 rgba(20,33,61, 0.13);
  transform: translateY(-1px) scale(1.02);
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-item { min-width: 0 !important; }
}

.cta-banner {
  background: #14213d;
  color: #fff;
  border-radius: 13px;
  padding: 28px 22px;
  margin: 20px 0 2px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 16px 0 rgba(20,33,61,0.10);
}
.cta-banner .cta-btn {
  margin: 0;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f6f8fb;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(20,33,61,0.09);
  margin-bottom: 20px;
  border-left: 6px solid #fca311;
  max-width: 620px;
  transition: box-shadow 0.16s, background 0.18s;
}
.testimonial-card blockquote {
  margin: 0;
  color: #22304c;
  font-size: 1.18rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card p {
  margin: 0;
  color: #1a202c;
  font-weight: 500;
}
.testimonial-card strong {
  color: #14213d;
  font-weight: 700;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #e9eff9;
  box-shadow: 0 4px 22px 0 rgba(20,33,61,0.13);
}

/* FOOTER */
footer {
  background: #14213d;
  color: #fff;
  padding: 36px 0 14px 0;
  border-top: 2px solid #e3e6ef;
  width: 100%;
  margin-top: 48px;
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fca311;
}
.brand-logo img { height: 32px; margin: 0 auto 6px auto; }
.copyright {
  font-size: 0.94rem;
  text-align: center;
  color: #cfd6e6;
  margin-top: 8px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #14213d;
  color: #fff;
  z-index: 13000;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 18px 12px;
  box-shadow: 0 -2px 18px 0 rgba(20,33,61,0.12);
  transition: transform 0.45s cubic-bezier(.36,1.16,.43,1);
  transform: translateY(0);
  min-height: 58px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: center;
  max-width: 800px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: center;
  margin-bottom: 4px;
}
.cookie-btn {
  background: #fca311;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.16s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn.cookie-btn--secondary {
  background: #ffffff;
  color: #14213d;
  border: 1px solid #fca311;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffbc2e;
  color: #14213d;
}
.cookie-btn.cookie-btn--secondary:hover,
.cookie-btn.cookie-btn--secondary:focus {
  background: #e9eff9;
  color: #14213d;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 11px;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,33,61,0.42);
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #22304c;
  border-radius: 17px;
  max-width: 410px;
  width: 95vw;
  padding: 34px 30px 27px 30px;
  box-shadow: 0 8px 40px 0 rgba(20,33,61,0.23);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 1.1em; height: 1.1em;
  accent-color: #fca311;
  cursor: pointer;
}
.cookie-modal .cookie-category__desc {
  font-size: 0.98rem;
}
.cookie-modal .modal-btn-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal__close {
  background: none;
  color: #22304c;
  border: none;
  font-size: 1.7rem;
  position: absolute;
  top: 8px; right: 16px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #fca311;
}

@media (max-width: 540px) {
  .cookie-modal { padding: 22px 9px 21px 14px; }
}

/* ACCESSIBLE FOCUS */
a, button, .cta-btn, .cookie-btn, .cookie-modal__close, input[type="checkbox"] {
  outline: none;
}
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .cookie-modal__close:focus {
  box-shadow: 0 0 0 3px #fca31142;
  border-radius: 2px;
}

/* FORM ELEMENTS (for possible contact forms) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #c2cbe4;
  border-radius: 6px;
  padding: 8px 12px;
  outline: none;
  margin-bottom: 13px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #fca311;
}

/* SPACING & WHITE SPACE */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .content-wrapper { gap: 14px; }
}

/* LISTS */
ul, ol {
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 6px;
  padding-left: 3px;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }

/* TABLES (just in case) */
table { width: 100%; border-collapse: collapse; margin: 16px 0; }
th, td { border: 1px solid #dce2ef; padding: 8px 10px; text-align: left; }
th { background: #eaf0fa; font-weight: bold; }

/* VISUAL SEPARATORS */
hr {
  border: none;
  border-top: 1.5px solid #d4dae7;
  margin: 26px 0;
}

/* MICRO-INTERACTIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.section, .cta-banner, .testimonial-card, .card {
  animation: fadeInUp 0.7s cubic-bezier(.39,.66,.64,1) 0s 1;
}

/* UTILITIES */
.flex-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* SCROLLBAR STYLING FOR MODALS & MENU */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #fca311 #22304c;
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  width: 8px;
  background: #22304c;
}
.mobile-menu::-webkit-scrollbar-thumb,
.cookie-modal::-webkit-scrollbar-thumb {
  background: #fca311;
  border-radius: 8px;
}

/* HIDE ELEMENT FOR SCREEN READERS/INTERACTION */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  top: auto;
}

/* RESPONSIVENESS ADJUSTMENTS */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 508px) {
  footer {
    padding-top: 19px;
  }
  .footer-menu {
    gap: 4px;
    flex-direction: column;
    margin-bottom: 0;
  }
}
