/* --- CSS RESET & BASE RULES --- */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #F7F9FA;
  color: #212936;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
img, picture, video {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #F0A030;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.6, .2, .7, 1);
}
a:hover,
a:focus {
  color: #1A3D6D;
  text-decoration: underline;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1em;
}


/* --- BRAND FONTS (web safe fallbacks) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');


/* --- CONTAINERS & SECTION LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 850px;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1A3D6D;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.07;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.subheadline {
  font-size: 1.3rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #F0A030;
  margin-bottom: 16px;
}
p {
  font-size: 1rem;
  color: #293043;
  margin-bottom: 12px;
  font-weight: 400;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #454D62;
  font-size: 1rem;
}
li {
  margin-bottom: 8px;
}


/* --- HEADER & NAVIGATION --- */
header {
  background: #1A3D6D;
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 0 18px 0 rgba(26,61,109,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 30px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  position: relative;
  padding: 8px 6px;
  border-radius: 3px;
  transition: background 0.14s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F0A030;
  background: #18345A;
}
.cta-btn {
  background: #F0A030;
  color: #1A3D6D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 10px 28px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 3px 14px 0 rgba(240,160,48,0.20);
  transition: background .19s, color .19s, box-shadow .18s;
  cursor: pointer;
  margin-left: 24px;
  letter-spacing: .5px;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #1A3D6D;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(26,61,109,0.15);
}

/* Hamburger button styles */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #F0A030;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 110;
  padding: 0 8px;
  transition: color .2s, background .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F0A030;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #1A3D6D;
  box-shadow: 0 6px 36px 0 rgba(26,61,109,.16);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.69,.01,.53,1.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 32px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F0A030;
  color: #F0A030;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: bold;
  padding: 13px 0;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F0A030;
  color: #1A3D6D;
}


/* --- HERO & INTRO --- */
.section:first-of-type {
  background: #1A3D6D;
  color: #fff;
  padding-top: 55px;
  padding-bottom: 55px;
  box-shadow: 0 8px 38px 0 rgba(26,61,109,0.09);
}
.section:first-of-type h1 {
  color: #fff;
}


/* --- FLEX-BASED CONTENT LAYOUTS (Required Patterns) --- */
.feature-grid,
.values-grid,
.industry-grid,
.services-list,
.case-study-list,
.resources-list,
.faq-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}
.feature,
.industry,
.value,
.service-item,
.case-study,
.resource-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 22px 0 rgba(26,61,109,0.07);
  padding: 28px 18px 24px 18px;
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.feature:hover,
.industry:hover,
.value:hover,
.service-item:hover,
.case-study:hover,
.resource-item:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 7px 26px -5px #F0A03068,0 3px 22px 0 rgba(26,61,109,0.13);
}
.feature img,
.industry img,
.value img,
.service-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Utility classes for grid containers (spacing patterns) */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(26,61,109,0.10);
  overflow: hidden;
  padding: 18px 24px 18px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(26,61,109,0.07);
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  border-left: 7px solid #F0A030;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS & REVIEW STYLING --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #1A3D6D;
  font-weight: 500;
}
.star-rating {
  color: #F0A030;
  font-size: 1.3rem;
  line-height: 1;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}
.testimonial-name {
  font-size: 1rem;
  color: #333a48;
  font-weight: 600;
  margin-top: 8px;
}


/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 10px 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 18px 0 rgba(26,61,109,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table thead {
  background: #F0A030;
  color: #1A3D6D;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #f0a03023;
}
.pricing-table tbody tr:last-child {
  border-bottom: 0;
}
.price-terms {
  font-size: 0.98rem;
  color: #5c6271;
  margin-top: 8px;
}
.service-price {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.02rem;
  color: #F0A030;
  font-weight: 700;
  background: #1A3D6D12;
  padding: 3px 12px;
  border-radius: 9px;
}


/* --- TEAM, CASE, INDUSTRY, RESOURCE LISTS --- */
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
}
.leadership, .core-team {
  background: #fff;
  padding: 22px 18px;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(26,61,109,0.08);
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 330px;
}
.core-team ul li {
  margin-bottom: 11px;
  color: #1A3D6D;
}

/* Industry grid */
.industry-grid .industry {
  min-width: 240px;
  max-width: 310px;
  flex: 1 1 220px;
  border-left: 5px solid #1A3D6D22;
}
.application {
  font-size: 0.98rem;
  color: #F0A030;
  font-weight: 600;
  margin-top: 7px;
}

.client-logos {
  display: flex;
  gap: 26px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.client-logos img {
  height: 38px;
  width: auto;
  display: block;
  filter: grayscale(15%);
  opacity: 0.9;
}

.resource-categories {
  margin-top: 24px;
}
.resource-categories strong {
  color: #1A3D6D;
}
.resource-categories ul {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.resource-categories li {
  color: #F0A030;
  background: #1a3d6d0f;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 0.97rem;
}

.resources-list .resource-item {
  min-width: 240px;
  max-width: 350px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.faq-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 16px 0 rgba(26,61,109,0.06);
  padding: 18px 16px 15px 16px;
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
}


/* --- INFRA, MAP, SPECIAL --- */
.map {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #1A3D6D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 16px;
}
.map img {
  width: 32px;
  height: 32px;
}

.infographic-stats img {
  width: 80px;
  height: auto;
  margin-top: 24px;
}


/* --- FOOTER --- */
footer {
  background: #1A3D6D;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 24px 18px 24px;
}
footer nav.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 3px;
  border-radius: 3px;
  transition: background .13s, color .12s, opacity .12s;
}
.footer-nav a:hover {
  background: #F0A030;
  color: #1A3D6D;
  opacity: 1;
}
.footer-copy {
  font-size: .98rem;
  opacity: .87;
  margin-top: 5px;
  color: #DFE6F3;
}
footer img {
  height: 38px;
  margin-bottom: 0;
}


/* --- BUTTONS & MICRO-INTERACTIONS --- */
button, .cta-btn {
  cursor: pointer;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #F0A030;
  outline-offset: 1px;
}

/* Subtle float-in animation for card hover */
@keyframes cardEntry {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: none; }
}
.card, .feature, .industry, .service-item, .case-study, .testimonial-card, .resource-item {
  animation: cardEntry 0.85s cubic-bezier(.46,1.18,.55,.96) both;
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #212936;
  color: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  box-shadow: 0 -4px 18px 0 rgba(26,61,109,0.08);
  animation: slideUpBanner .5s cubic-bezier(.46,1.18,.55,.96);
}
@keyframes slideUpBanner {
  from { transform: translateY(80px); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: #F0A030;
  color: #1A3D6D;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  margin-left: 0;
  transition: background .16s, color .16s;
}
.cookie-btn.reject {
  background: #1A3D6D;
  color: #fff;
  border: 2px solid #F0A030;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A3D6D;
  border: 1px solid #F0A030;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #1A3D6D;
  color: #F0A030;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(10,15,29,0.43);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .3s;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #1A3D6D;
  border-radius: 18px;
  padding: 34px 30px 24px 30px;
  min-width: 320px;
  max-width: 470px;
  box-shadow: 0 7px 32px 0 rgba(26,61,109,0.17);
  animation: cardEntry 0.67s cubic-bezier(.46,1.18,.55,.96) both;
  position: relative;
}
.cookie-modal .modal-title {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
}
.cookie-modal .modal-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A3D6D;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 24px;
  background: #F0A030;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background .13s;
  border: none;
}
.cookie-modal .cookie-switch[aria-checked="true"] {
  background: #1A3D6D;
}
.cookie-modal .cookie-switch::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s, background .12s;
}
.cookie-modal .cookie-switch[aria-checked="true"]::before {
  left: 17px;
  background: #F0A030;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px; right: 13px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #1A3D6D;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #F0A030;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1100px) {
  .feature-grid, .industry-grid, .values-grid,
  .team-overview, .services-list, .card-container,
  .case-study-list, .resources-list, .faq-list, .testimonial-slider {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
  .feature-grid, .industry-grid, .services-list, .case-study-list, .resources-list, .faq-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .team-overview, .values-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .text-section {
    padding: 0;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .feature, .service-item, .case-study, .resource-item, .industry {
    min-width: 94vw;
    max-width: 100vw;
  }
  .pricing-table {
    font-size: 0.96rem;
  }
  .testimonial-card {
    min-width: 92vw;
    max-width: 100vw;
  }
  .footer-nav {
    gap: 14px;
  }
  .footer-copy {
    font-size: .93rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 10px 12px 10px;
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 9px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 8px 22px;
  }
  .feature, .service-item, .case-study, .resource-item, .industry {
    padding: 16px 8px 15px 8px;
    min-width: 94vw;
  }
  .leadership, .core-team {
    min-width: 88vw;
    padding: 10px 6px;
  }
  .map {
    font-size: 0.93rem;
  }
}

/* --- DYNAMIC/ELECTRIC ELEMENTS (Brand Accent) --- */
.feature::before,
.service-item::before,
.resource-item::before {
  content: '';
  display: block;
  position: absolute;
  top: -13px; right: -15px;
  width: 46px;
  height: 46px;
  background: #F0A030;
  opacity: 0.18;
  border-radius: 40% 60% 55% 45%;
  z-index: 0;
  filter: blur(12px);
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -17px;
  width: 38px; height: 38px;
  background: #F0A030;
  opacity: .13;
  border-radius: 50%;
  z-index: 0;
  filter: blur(8px);
  pointer-events: none;
}

/* --- SCROLLBAR STYLING --- */
body::-webkit-scrollbar {
  width: 9px;
  background: #f5f7fa;
}
body::-webkit-scrollbar-thumb {
  background: #F0A030;
  border-radius: 6px;
}

/* --- MISC UTILITIES --- */
.text-center { text-align: center; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- ACCESSIBILITY --- */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #F0A030;
  outline-offset: 2px;
}

/* CRITICAL LAYOUT REQUIREMENT CHECK — NO GRID */
/* (Checked: NO display: grid or grid-* or columns, only flex and flex-wrap) */
