/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #274163;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #274163;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FAB91D;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', "Georgia", serif;
  color: #1d293b;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.13;
}
h1 { font-size: 2.25rem; margin-bottom: 30px; }
h2 { font-size: 1.5rem; margin-bottom: 24px; }
h3 { font-size: 1.13rem; margin-bottom: 14px; font-weight: 500; }

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
}

/* Layouts: Flexbox only! */
.card-container,
.card-grid,
.content-grid,
.features,
.services-list,
.team-grid,
.industry-list,
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.team-grid, .industry-list {
  gap: 24px;
  flex-wrap: wrap;
}
.team-grid > div, .industry-list > div {
  background: #F3F7F8;
  border-radius: 10px;
  padding: 22px 20px;
  min-width: 220px;
  min-height: 120px;
  flex: 1 1 220px;
  font-size: 1rem;
  color: #1d293b;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(39,65,99,0.06);
  margin-bottom: 20px;
  padding: 22px 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover { 
  box-shadow: 0 6px 28px 0 rgba(39,65,99,0.12);
  transform: translateY(-6px);
}

/* Hero Section */
.hero {
  margin-bottom: 60px;
  padding: 60px 20px 40px;
  background: #F3F7F8;
  border-radius: 0 0 24px 24px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 240px;
}
.hero h1 {
  color: #274163;
  font-size: 2.6rem;
  font-family: 'Oswald', Georgia, serif;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.12;
}
.hero p {
  font-size: 1.125rem;
  color: #2b2b2b;
  margin-bottom: 32px;
}

/* CTA Section */
.cta-section {
  background: #274163;
  color: #fff;
  border-radius: 20px;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section a.cta-primary {
  background: #FAB91D;
  color: #274163;
}

/* Buttons */
.cta-primary,
button,
input[type="submit"] {
  font-family: 'Oswald', Georgia, serif;
  display: inline-block;
  border-radius: 8px;
  border: none;
  background: #FAB91D;
  color: #274163;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 14px 28px;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(39,65,99,0.13);
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.16s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cta-primary:focus,
.cta-primary:hover,
button:focus,
button:hover,
input[type="submit"]:hover {
  background: #274163;
  color: #FAB91D;
  box-shadow: 0 4px 16px 0 rgba(39, 65, 99, 0.19);
  transform: translateY(-2px) scale(1.04);
}

/* Nav */
header {
  width: 100%;
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 2px 8px rgba(39, 65, 99, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 68px;
  width: 100%;
  padding: 0 20px;
}
header nav img {
  width: 128px;
  margin-right: 36px;
  flex-shrink: 0;
}
header nav a {
  font-family: 'Oswald', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: #274163;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.14s, color 0.16s;
}
header nav a.cta-primary {
  margin-left: auto;
  background: #FAB91D;
  color: #274163;
  font-weight: 700;
  border-radius: 7px;
  box-shadow: 0 1px 5px rgba(39,65,99,0.05);
  padding: 10px 22px;
}
header nav a:hover, header nav a:focus {
  background: #F3F7F8;
  color: #FAB91D;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #274163;
  color: #FAB91D;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 45;
  background: #FAB91D;
  color: #274163;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  margin-left: 24px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(39,65,99,0.17);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #274163;
  color: #FAB91D;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,65,99, 0.96);
  z-index: 1000;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  transform: translateX(100%);
  box-shadow: none;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FAB91D;
  color: #274163;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  padding: 10px 20px;
  margin: 28px 24px 0;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 2px 14px rgba(39,65,99,0.13);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #274163;
  color: #FAB91D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 40px 40px 0 40px;
  width: auto;
}
.mobile-nav a {
  font-family: 'Oswald', Georgia, serif;
  font-size: 1.27rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border-radius: 7px;
  padding: 12px 22px;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FAB91D;
  color: #274163;
}
.mobile-nav a.cta-primary {
  background: #FAB91D;
  color: #274163;
}

/* Testimonial cards */
.testimonial-card {
  background: #F3F7F8;
  color: #274163;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(39,65,99,0.08);
  margin-bottom: 24px;
  padding: 24px 22px;
  gap: 18px;
  min-width: 250px;
  transition: box-shadow 0.24s, transform 0.24s;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 12px;
  color: #274163;
}
.testimonial-card strong {
  font-family: 'Oswald', Georgia, serif;
  color: #1d293b;
  font-size: 1.04rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(39,65,99,0.14);
  transform: scale(1.03);
}

/* Lists & Icons */
ul li,img + strong, .industry-list img, .team-grid img {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.services-list {
  gap: 22px;
  justify-content: flex-start;
}
.services-list > div {
  flex: 1 1 260px;
  background: #F3F7F8;
  border-radius: 14px;
  padding: 24px 18px 20px 18px;
  box-shadow: 0 1px 7px rgba(39,65,99,0.08);
  text-align: left;
  margin-bottom: 22px;
  min-width: 220px;
}
.services-list > div h3 {
  color: #274163;
  margin-top: 13px;
}
.services-list > div img {
  width: 48px;
  height: 48px;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 32px 20px;
  background: #F3F7F8;
  border-radius: 24px 24px 0 0;
  gap: 24px;
  margin-top: 70px;
  box-shadow: 0 -1px 10px rgba(39, 65, 99, 0.05);
}
.footer-brand img {
  width: 80px;
  height: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
footer nav a {
  color: #274163;
  font-family: 'Oswald', Georgia, serif;
  font-size: 1rem;
  opacity: 0.92;
  text-decoration: underline;
  margin-bottom: 0;
}
footer nav a:hover, footer nav a:focus {
  color: #FAB91D;
}
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  color: #274163;
  align-items: center;
}
.contact-snippet span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-snippet img {
  width: 18px;
  margin-right: 5px;
  opacity: 0.77;
}

/* Card containers / flex layouts */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Breadcrumb (if any used) */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .98rem;
  margin-bottom: 28px;
  color: #8F98A3;
}

/* Client logos (industries) */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 32px;
  width: auto;
  vertical-align: middle;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #274163;
  color: #fff;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
  z-index: 3000;
  box-shadow: 0 -3px 16px rgba(39,65,99,0.14);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  animation: cookieBannerIn 0.44s 1 cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieBannerIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 12px;
}
.cookie-banner button {
  font-family: 'Oswald', Georgia, serif;
  font-size: .98rem;
  font-weight: 600;
  background: #FAB91D;
  color: #274163;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(39,65,99,0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #274163;
  color: #FAB91D;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #274163;
  border: 1px solid #FAB91D;
}
.cookie-banner .cookie-settings:hover {
  background: #FAB91D;
  color: #274163;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3001;
  background: rgba(20,33,52,0.69);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popupIn 0.38s 1 cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: #fff;
  color: #274163;
  border-radius: 18px;
  padding: 38px 30px 32px 32px;
  box-shadow: 0 4px 28px 0 rgba(39,65,99,0.22);
  min-width: 310px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  font-family: 'Oswald', Georgia, serif;
  font-weight: 600;
  margin-bottom: 14px;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Oswald', Georgia, serif;
  color: #274163;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #F3F7F8;
  border: 1px solid #FAB91D;
  margin-left: 10px;
  position: relative;
  transition: background 0.14s;
}
.cookie-toggle input[type='checkbox'] {
  opacity: 0; width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FAB91D;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1);
}
.cookie-toggle input[type='checkbox']:checked + .cookie-toggle-slider {
  transform: translateX(18px);
  background: #274163;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 11px 25px;
  font-size: 1rem;
}

/* ---  Typography scale --- */
@media (min-width: 480px) {
  h1 { font-size: 2.48rem; }
  h2 { font-size: 1.68rem; }
  h3 { font-size: 1.08rem; }
  body { font-size: 1.09rem; }
}
@media (min-width: 800px) {
  h1 { font-size: 2.95rem; }
  h2 { font-size: 2.05rem; }
  h3 { font-size: 1.29rem; }
  body { font-size: 1.14rem; }
}

/* --- Responsive Design / Media Queries --- */
@media (max-width: 1024px) {
  .container { max-width: 90vw; }
  header nav { gap: 13px; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  .hero {
    padding: 35px 10px 14px;
    border-radius: 0 0 16px 16px;
  }
  section {
    padding: 26px 7px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 13px 12px;
    min-width: 100%;
  }
  .card, .services-list > div, .team-grid > div,
  .industry-list > div {
    min-width: 96vw;
    padding: 18px 10px;
  }
  .content-grid, .services-list, .card-container,
  .card-grid, .team-grid, .industry-list, .client-logos {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-brand img { width: 56px; }
  footer {
    padding: 22px 6px 16px 6px;
    gap: 13px;
    border-radius: 10px 10px 0 0;
    margin-top: 44px;
  }
  .contact-snippet {
    gap: 11px;
    flex-direction: column;
    align-items: flex-start;
    font-size: .97rem;
  }
  .mobile-menu {
    font-size: 1.05rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.36rem; }
  .container { padding: 0 3vw; }
  .cookie-modal-content { min-width: unset; padding: 16px 7px; }
}

/* --- Utility classes for spacing --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* --- Micro-Interactions / Transitions --- */
.card, .testimonial-card, .services-list > div, .cta-primary, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.2s, background 0.24s, color 0.19s, transform 0.18s;
}

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

/* Ensure no grid or columns used! */
/* --- END OF STYLE.CSS --- */