/* CSS RESET & BASE - Professional Corporate */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1B3A57;
  background: #F7FAFC;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B3A57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #51A2C2;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #1B3A57;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h4, h5, h6 { font-size: 1rem; }
p, li, address { font-size: 1rem; color: #22415b; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Spacing & Section Layouts */
main { padding-top: 100px; }
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* On mobile text below image */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 20px; }
}


/***** HEADER *****/
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(27,58,87,0.06);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  width: 100%;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 24px;
}
.main-nav {
  display: flex; flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B3A57;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f4f8fa;
  color: #51A2C2;
}
header img {
  height: 44px;
}
.btn-primary {
  background: #1B3A57;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px 0 rgba(27,58,87,0.08);
  font-size: 1rem;
  letter-spacing: .04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.08s;
  cursor: pointer;
  margin-left: 18px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #51A2C2;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px 0 rgba(81,162,194,0.12);
}

/* Hamburger (burger) menu btn */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B3A57;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1102;
}
@media (max-width: 1024px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------ MOBILE MENU OVERLAY ----------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #18324A;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1,.4,1);
  z-index: 1100;
  padding: 0 0 0 0;
  box-shadow: 2px 0 24px rgba(27,58,87,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  margin: 26px 0 0 22px;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 54px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 6px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #223c55;
  color: #F6C862;
}
@media (max-width: 376px) {
  .mobile-nav { padding-left: 18px; padding-right: 18px; }
}

/* Disable background scroll when mobile menu open (handled via body.no-scroll) */
body.no-scroll {
  overflow: hidden;
}

/***************** HERO, SECTION & GRID LAYOUTS *****************/
.hero-section {
  background: linear-gradient(88deg, #EAF3F9 60%, #fff 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .hero-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
.hero-section .container {
  min-height: 320px;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-section .container {
    flex-direction: column;
    gap: 36px;
  }
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #18324A;
}
.hero-section p {
  font-size: 1.18rem;
  color: #22415b;
  margin-bottom: 18px;
}

.features-section h2, .about-preview-section h2, .testimonials-section h2 {
  font-size: 1.7rem;
  color: #1B3A57;
  margin-bottom: 24px;
}

.features-section .content-wrapper, .features-section .feature-grid,
.features-section .benefit-grid, .features-section .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.features-section .feature-grid, .features-section .benefit-grid, .features-section .benefits-grid {
  gap: 24px;
}
.feature-item, .benefit-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(27,58,87,0.06);
  padding: 28px 26px 22px 26px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.16s;
  margin-bottom: 20px;
}
.feature-item img, .benefit-item img {
  width: 38px; height: 38px;
  object-fit: cover;
  margin-bottom: 10px;
}
.feature-item:hover, .benefit-item:hover {
  box-shadow: 0 6px 28px 0 rgba(81,162,194,.16);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 768px) {
  .features-section .feature-grid, .features-section .benefit-grid, .features-section .benefits-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .benefit-item {
    max-width: 100%;
    min-width: unset;
  }
}

/***** ABOUT/TEAM/CORE VALUES *****/
.core-values-grid, .growth-opportunities-grid, .service-areas-grid, .analysis-areas-grid, .case-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-item, .opportunity-item, .service-area, .analysis-area, .case-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(27,58,87,0.06);
  padding: 26px 22px 21px 22px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.value-item:hover, .opportunity-item:hover, .service-area:hover, .analysis-area:hover, .case-item:hover {
  box-shadow: 0 6px 22px 0 rgba(81,162,194,.13);
  transform: translateY(-4px) scale(1.01);
}
@media (max-width: 768px) {
  .core-values-grid, .growth-opportunities-grid, .service-areas-grid, .analysis-areas-grid, .case-summary-list {
    flex-direction: column;
    gap: 18px;
  }
  .value-item, .opportunity-item, .service-area, .analysis-area, .case-item {
    max-width: 100%;
  }
}

/***** TESTIMONIALS *****/
.testimonials-section, .testimonials-section .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F8FA;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(81,162,194,.07);
  padding: 20px 24px;
  color: #17344c;
  min-height: 90px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card p {
  color: #1B3A57;
  font-size: 1.07rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-weight: 700;
  font-size: 1rem;
  color: #18324A;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px rgba(27,58,87,.17);
  background: #EAF3F9;
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 600px) {
  .testimonials-section .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
  }
}

/***** CARDS, CTA, ETC. *****/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(27,58,87,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow .19s, transform .12s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(81,162,194,0.13);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item, .feature-item * {
  text-align: left;
}

/***** FORMS, MAPS, CONTACT *****/
.map-placeholder {
  background: #eaf3f9;
  border-radius: 11px;
  padding: 16px 18px;
  margin-top: 28px;
  font-size: 0.98rem;
  color: #22415b;
  box-shadow: 0 1.5px 6px #1b3a570d;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 8px 0;
}
.contact-details li img {
  vertical-align: middle; margin-right: 8px; width: 23px; height: 23px;
}

/***** FOOTER *****/
footer {
  background: #1B3A57;
  color: #fff;
  font-size: 1rem;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  padding: 0 16px 16px 16px;
}
footer img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.footer-nav a {
  color: #F6C862;
  padding: 3px 7px;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #223c55;
  color: #fff;
}
footer address {
  font-style: normal;
  color: #ddeaf6;
  font-size: 0.98rem;
  margin: 0 0 8px 0;
}
footer a {
  color: #F6C862;
  text-decoration: underline;
  transition: color 0.18s;
}
footer a:hover { color: #fff; text-decoration: none; }
footer > .container > div:last-child {
  align-self: flex-end;
  color: #b3c9e1;
  font-size: .97rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/***** CTA SECTION *****/
.cta-section, .contact-cta-section, .thank-you-section {
  background: linear-gradient(91deg, #EAF3F9 50%, #fff 100%);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(27,58,87,0.08);
  padding: 38px 20px;
  margin-bottom: 44px;
  margin-top: 24px;
  position: relative;
}
.cta-section h2, .contact-cta-section h2, .thank-you-section h1 {
  color: #1B3A57;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.cta-section p, .contact-cta-section p, .thank-you-section p {
  color: #22415b;
  margin-bottom: 17px;
}
.cta-section .btn-primary, .contact-cta-section .btn-primary {
  margin-left: 0;
}

/* Cards section - spacing */
.card-container, .card-grid, .feature-grid, .benefit-grid, .case-summary-list, .core-values-grid, .growth-opportunities-grid, .service-areas-grid, .analysis-areas-grid {
  gap: 24px;
  margin-bottom: 0;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1024px) {
  .container {
    padding: 0 8px;
  }
  main {
    padding-top: 74px;
  }
  footer {
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5px;
    max-width: 100vw;
  }
  section, .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
  .cta-section, .contact-cta-section {
    padding: 28px 8px;
    margin-bottom: 18px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.04rem; }
}

/***** BUTTONS, LINKS, MICRO-INTERACTIONS *****/
button, .btn-primary {
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: none;
}
button:focus, .btn-primary:focus {
  box-shadow: 0 0 0 2px #51A2C2;
}

/***** COOKIES CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #1B3A57;
  color: #fff;
  box-shadow: 0 -6px 26px #1B3A5733;
  border-radius: 16px 16px 0 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  animation: cookieBannerSlideIn 0.45s cubic-bezier(.4,1,.4,1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(60px); opacity: 0; } 100% { transform: none; opacity: 1; }
}
.cookie-banner p { color: #fff; margin-right: 20px; flex-basis: 280px; flex: 2 1 320px; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: #1B3A57;
  border: none;
  transition: background .19s, color .16s;
  margin-top: 0;
}
.cookie-banner button.cookie-reject {
  background: #D3DAE4;
  color: #1B3A57;
}
.cookie-banner button.cookie-action-settings {
  background: transparent;
  color: #F6C862;
  border: 2px solid #F6C862;
  padding: 8px 18px;
}
.cookie-banner button:hover {
  background: #51A2C2;
  color: #fff;
}
.cookie-banner button.cookie-action-settings:hover {
  background: #F6C862;
  color: #1B3A57;
}
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 10px;
  }
  .cookie-banner .cookie-actions { gap: 12px; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,58,87,0.75);
  z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  animation: cookieModalFadeIn .32s cubic-bezier(.34,1,.67,1.11);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B3A57;
  border-radius: 18px;
  box-shadow: 0 8px 38px 0 rgba(27,58,87,0.11);
  max-width: 420px;
  width: 95%;
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalSlideModal .3s cubic-bezier(.34,1,.67,1.11);
}
@keyframes cookieModalSlideModal {
  0% { transform: translateY(64px); opacity: 0; } 100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #1B3A57;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex; align-items: center; gap: 14px;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #d3dae2;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: 0.15s;
  box-shadow: 0 1px 4px #1b3a5733;
}
.cookie-toggle input:checked + .slider {
  left: 18px;
  background: #51A2C2;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1B3A57;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 3px;
}
.cookie-modal .modal-close:hover {
  background: #ecf5fa;
}

/***** VISUAL MICRO-ANIMATIONS *****/
.btn-primary, .feature-item, .card, .card-content, .testimonial-card, .mobile-nav a, .footer-nav a {
  transition: box-shadow 0.21s, background 0.2s, color 0.19s, transform 0.13s;
}

/***** UTILITIES & OVERRIDES *****/
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }

/***** Z-INDEX CONTROLS *****/
header { z-index: 1010; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1300; }

/***** VISUAL HIERARCHY & MISC ******/
h1, h2, h3 { letter-spacing: -.01em; }
h1 {
  margin-bottom: 20px;
  color: #18324A;
  font-size: 2.15rem;
}
@media (max-width: 570px) { h1 { font-size: 1.36rem; } h2 { font-size: 1rem; } }

/***** Accessibility: Focus Ring Custom Colors *****/
a:focus, button:focus, .btn-primary:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #51A2C2;
  outline-offset: 2px;
}

/***** Success/Thank You Page ******/
.thank-you-section {
  text-align: center;
  background: linear-gradient(84deg, #EAF3F9 70%, #fff 100%);
}
.thank-you-section ul {
  margin: 20px auto 24px auto; padding: 0; display: flex; flex-direction: column; gap: 7px;
  max-width: 420px; text-align: left; color: #1B3A57;
}

/***** IMPACT/PROFIT/STAT LISTS *****/
.impact-stats, .profit-boost-highlights {
  background: #F7FAFC;
  border-radius: 12px;
  color: #22415b;
  box-shadow: 0 1px 8px #1B3A570c;
  padding: 13px 17px;
  margin-top: 18px;
  font-size: .96rem;
  display: flex; flex-direction: column; gap: 7px;
}
.impact-stats ul, .profit-boost-highlights ul {
  margin: 0 0 5px 0;
  padding: 0 0 0 14px;
}
.impact-stats small, .profit-boost-highlights small {
  color: #1B3A57;
  font-size: 0.93rem;
}

/***** DESIGN SYSTEM: COLORS *****/
:root {
  --color-primary: #1B3A57;
  --color-secondary: #51A2C2;
  --color-accent: #F6C862;
  --color-bg: #F7FAFC;
  --color-card: #fff;
  --color-dark: #18324A;
  --color-grey: #64748B;
}

/***** Print styles *****/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .section, .container { box-shadow: none !important; border-radius: 0 !important; background: #fff !important; }
  html, body { background: #fff !important; }
}
