/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F2F2F2;
  color: #204060;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #204060;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

/* BASE SPACING & CONTAINERS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(32,64,96,0.08);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .container {
    padding: 0 12px;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #204060;
  line-height: 1.15;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}
p, ul, ol, address {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
}
.text-section {
  margin-bottom: 32px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 48px;
  min-width: 140px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(77,189,122,0.09);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}
.btn-primary {
  background: #204060;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #4DBD7A;
  color: #204060;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 26px rgba(77,189,122,0.16);
}
.btn-secondary {
  background: #4DBD7A;
  color: #fff;
  margin-top: 28px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #204060;
  color: #fff;
  box-shadow: 0 8px 18px rgba(32,64,96,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* HEADER & NAVBAR */
header {
  background: #fff;
  box-shadow: 0 3px 22px rgba(32, 64, 96, 0.10);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 38px;
  margin-right: 14px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #204060;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.16s, border-bottom 0.16s;
}
nav a:hover, nav a:focus {
  color: #4DBD7A;
  border-bottom: 2.5px solid #4DBD7A;
}
nav .btn-primary {
  margin-left: 18px;
  min-width: 160px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #204060;
  background: none;
  border: none;
  margin-left: 24px;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.19s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #4DBD7A22;
}

@media (max-width: 991px) {
  header .container {
    flex-wrap: wrap;
  }
  nav .btn-primary {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 830px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #204060;
  color: #fff;
  transform: translateX(102vw);
  transition: transform 0.35s cubic-bezier(.85,.02,.19,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #fff;
  border: none;
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 121;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #4DBD7A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 62px;
  gap: 4px;
  padding: 0 12vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  transition: color 0.20s, background 0.17s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #4DBD7A;
  background: #183050;
}
@media (min-width:830px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/* MAIN SECTIONS & FLEX CARDS */
.feature-grid, .service-list, .solution-highlight,
.industry-list, .team-section, .values-grid, .company-statistics,
.services-grid, .solutions-grid, .case-study-teasers, .client-stories, .posts-grid, .category-filters, .impact-metrics, .industry-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,64,96,0.04);
  padding: 28px 18px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(77,189,122,0.12);
  transform: translateY(-6px) scale(1.04);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .solution-highlight,
  .industry-list, .team-section, .values-grid, .company-statistics,
  .services-grid, .solutions-grid, .case-study-teasers, .client-stories, .posts-grid, .impact-metrics, .industry-categories {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  padding: 26px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(32,64,96,0.04);
}
.feature-item img {
  width: 38px;
  margin-bottom: 6px;
}

.team-section {
  gap: 38px;
}
.team-member {
  background: #F2F2F2;
  border-radius: 15px;
  padding: 26px 18px;
  box-shadow: 0 2px 11px rgba(32,64,96,0.03);
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.18s;
}
.team-member img {
  margin-bottom: 16px;
  width: 64px; height: 64px;
  border-radius: 50%;
}
.team-member h3 {
  color: #204060;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .team-section {
    gap: 22px;
  }
}

.values-grid {
  gap: 22px;
  margin-top: 32px;
}
.values-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(32,64,96,0.04);
  padding: 22px 12px;
  min-width: 185px;
  text-align: center;
}
.values-grid img {
  width: 28px;
}

.unique-selling ul {
  margin: 0 0 18px 1.5em;
  list-style-type: disc;
}
.unique-selling li {
  margin-bottom: 7px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.company-statistics {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  margin-top: 12px;
}
.company-statistics p {
  background: #4DBD7A11;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 24px;
}
@media(max-width:520px) {
  .company-statistics {
    gap: 12px;
    flex-direction: column;
  }
}

.category-filters {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  gap: 2px;
  margin: 16px 0 0 0;
}
.category-filters a {
  color: #204060;
  font-weight: 700;
  margin: 0 3px;
  transition: color 0.16s;
}
.category-filters a:hover {
  color: #4DBD7A;
  text-decoration: underline;
}

.posts-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,64,96,0.07);
  padding: 20px 16px;
  min-width: 230px;
  margin-bottom: 20px;
}
.posts-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #204060;
}
.posts-grid a {
  color: #4DBD7A;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.17s;
}
.posts-grid a:hover {
  color: #204060;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-left: 4px;
  margin: 24px 0 6px 0;
}
.process-steps li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,64,96,0.07);
  padding: 18px 16px 18px 54px;
  min-width: 210px;
  font-size: 1.07rem;
  font-weight: 600;
  position: relative;
}
.process-steps img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
}
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 16px;
  }
  .process-steps li {
    min-width: unset;
    width: 100%;
    padding-left: 50px;
  }
}

/* TESTIMONIALS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(32,64,96,0.08);
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 0px;
  transition: box-shadow 0.19s, transform 0.18s;
  color: #204060;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #204060;
  border-left: 4px solid #4DBD7A;
  padding-left: 18px;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #4DBD7A;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(77,189,122,0.11);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 920px) {
  .testimonials-slider {
    gap: 14px;
  }
  .testimonial-card {
    padding: 16px;
    max-width: 100%;
    min-width: unset;
    flex-direction: column;
    align-items: flex-start;
  }
}

.client-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.client-logos img {
  height: 36px;
}
@media (max-width: 650px) {
  .client-logos {
    justify-content: flex-start;
    gap: 12px;
  }
}

/* FOOTER */
footer {
  background: #204060;
  color: #fff;
  padding: 54px 0 22px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #fff;
  opacity: 0.84;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.15s, color .13s;
}
.footer-nav a:hover {
  color: #4DBD7A;
  border-bottom: 2px solid #4DBD7A;
  opacity: 1;
}
.footer-contact {
  font-size: 1rem;
  color: #f4f9fc;
  opacity: 0.92;
  margin-bottom: 0;
}
.footer-contact a {
  color: #4DBD7A;
  font-weight: 700;
  margin-left: 5px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social img {
  width: 36px;
  height: 36px;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.85;
  transition: filter 0.14s, opacity 0.14s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: none;
  opacity: 1;
}
.footer-copyright {
  font-size: 0.96rem;
  color: #c1c6cE;
  opacity: 0.83;
  margin-top: 10px;
}
@media (max-width: 880px) {
  footer .container {
    gap: 16px;
    padding: 0 8px;
  }
  .footer-social {
    gap: 10px;
  }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: #fff;
  color: #204060;
  box-shadow: 0 -3px 22px rgba(32,64,96,0.11);
  padding: 22px 26px 18px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px 18px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .banner-text {
  flex: 1;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin-left: 0;
  cursor: pointer;
  background: #204060;
  color: #fff;
  transition: background 0.17s, color 0.16s, transform 0.17s;
}
.cookie-btn.accept {
  background: #4DBD7A;
  color: #fff;
}
.cookie-btn.reject {
  background: #cf2c2c;
  color: #fff;
}
.cookie-btn.settings {
  background: #204060;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #204060;
  color: #4DBD7A;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #32a95f;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #aa2323;
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px 14px 8px;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cookie-btn {
    width: 100%;
    min-width: 0;
    margin-bottom: 5px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 401;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 64, 96, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.38s;
  pointer-events: auto;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 26px 26px 32px;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(32,64,96,0.16);
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  color: #204060;
}
.cookie-modal h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: #204060;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.cookie-category label {
  margin-left: 12px;
  font-weight: 600;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2rem;
  background: none;
  color: #204060;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #4DBD7A;
}
.cookie-modal .cookie-btn {
  margin-top: 24px;
}
input[type=checkbox] {
  accent-color: #4DBD7A;
  width: 20px;
  height: 20px;
}

/* THANK YOU PAGE */
.thank-you-message {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(77,189,122,0.08);
  padding: 36px 24px 40px 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.thank-you-message h1 {
  color: #204060;
  margin-bottom: 22px;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 18px 0 20px 0;
  list-style-type: disc;
  padding-left: 26px;
  color: #204060;
  font-weight: 500;
  text-align: left;
}


/* ACCESSIBILITY: FOCUSED STATES */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  outline: 2px solid #4DBD7A;
  outline-offset: 2px;
}

/* UTILS: MARGINS & SPACING */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Hide visually only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- BRAND COLOR OVERRIDES WHERE NEEDED --- */
::-webkit-input-placeholder { color: #204060CC; }
::-moz-placeholder { color: #204060CC; }
:-ms-input-placeholder { color: #204060CC; }
::placeholder { color: #204060BF; }

/* END CSS */
