/* ===== Echo Wanderer Minimalist CSS ===== */

/* ========== 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;
}
/* HTML5 display-role reset */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F4;
  color: #134064;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #134064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #46AE8D;
  outline: none;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #134064;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, span, strong {
  color: #23272B;
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* ========== GLOBAL SPACING ========== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section,
.customer-benefits,
.mission-statement {
  margin-bottom: 20px;
  padding: 0;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

/* ========== FLEX LAYOUTS ========== */
.feature-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 4px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19,64,100,0.05);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(19,64,100,0.10);
}
.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;
  gap: 12px;
  background: #fff;
  padding: 20px 28px;
  box-shadow: 0 2px 8px rgba(19,64,100,0.06);
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 520px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(19,64,100,0.13);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #134064;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #46AE8D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.consulting-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

/* ========== NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(19,64,100,0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  padding: 20px 0 8px 0;
  font-size: 1rem;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #134064;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.16s;
  display: flex;
  align-items: center;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F5F5F4;
  color: #46AE8D;
}
.main-nav :is(a.cta-primary, a.cta-primary:visited) {
  background: #134064;
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(19,64,100,0.12);
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #46AE8D;
  color: #134064;
  box-shadow: 0 4px 16px rgba(70,174,141,0.16);
}

/* Logo image responsive */
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 24px;
  display: inline-block;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #134064;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: auto;
  z-index: 102;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F5F5F4;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19,64,100,0.12);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.8,0,0.2,1);
  z-index: 150;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 26px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #134064;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 200;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F5F5F4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 80px 40px 40px 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #134064;
  font-weight: 500;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #46AE8D;
  background: #F5F5F4;
}

/* Hamburger shown only on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none!important; }
}

/* ========== HERO SECTION ========== */
.hero {
  background: #F5F5F4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
  gap: 24px;
  padding: 0;
}
.hero h1 {
  font-size: 2.4rem;
  max-width: 700px;
}
.hero p {
  font-size: 1.12rem;
  max-width: 640px;
}

/* ========== SECTION SPACING ========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 6vw;
    margin-bottom: 42px;
  }
}

/* ========== CTA BUTTONS ========== */
.cta-primary {
  display: inline-block;
  background: #134064;
  color: #fff!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 36px;
  box-shadow: 0 2px 8px rgba(19,64,100,0.10);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #46AE8D;
  color: #134064!important;
  box-shadow: 0 4px 16px rgba(70,174,141,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* Small secondary CTA if needed */
.btn-secondary {
  background: #fff;
  color: #134064;
  border: 1.5px solid #134064;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 32px;
  margin-top: 8px;
  transition: background 0.14s, color 0.14s, border-color 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #46AE8D;
  color: #fff;
  border-color: #46AE8D;
}

/* ========== LISTS & ICONS ========== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  padding-left: 18px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
  font-size: 1rem;
  color: #23272B;
}
ul li::before {
  content: '•';
  color: #46AE8D;
  font-size: 1.2rem;
  font-family: inherit;
  display: inline-block;
  margin-right: 10px;
  margin-left: -20px;
}
/* For icon lists */
ul li img {
  vertical-align: middle;
  margin-right: 8px;
  width: 22px;
  height: auto;
  display: inline-block;
}

/* Ordered lists, no dot */
ol li::before { display: none; }

/* ========== FOOTER ========== */
footer {
  background: #fff;
  border-top: 1.5px solid #EAEAEA;
  padding: 40px 0 24px 0;
  margin-top: 34px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
footer nav a {
  font-size: 0.98rem;
  color: #134064;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.11s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #F5F5F4;
  color: #46AE8D;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: #5C6A79;
  margin-top: 8px;
}
.contact-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.96rem;
}
.contact-footer img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

/* ========== FAQ / TEXT SECTIONS ========== */
.faq-list > div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(19,64,100,0.04);
  padding: 18px 18px 14px 18px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s;
}
.faq-list > div:hover,
.faq-list > div:focus-within {
  box-shadow: 0 6px 16px rgba(70,174,141,0.07);
}
.faq-list h3 {
  font-size: 1.07rem;
  color: #134064;
  margin-bottom: 7px;
}
.faq-list p {
  font-size: .99rem;
  color: #23272B;
}
.text-section {
  font-size: 1.02rem;
}

/* ========== VALUE/FEATURE CARDS ========== */
.feature-grid > div,
.value-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 240px;
  box-shadow: 0 2px 12px rgba(19,64,100,0.04);
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within,
.value-grid > div:hover, .value-grid > div:focus-within {
  box-shadow: 0 6px 20px rgba(70,174,141,0.11);
  transform: translateY(-2px) scale(1.0105);
}
.feature-grid img,
.value-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.feature-grid h3,
.value-grid h3 {
  font-size: 1.14rem;
  margin-bottom: 4px;
}

/* ========== MISC MINI SECTIONS ========== */
.customer-benefits, .mission-statement {
  background: #46AE8D11;
  padding: 20px 18px;
  border-radius: 8px;
  color: #134064;
  font-size: 1.03rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 940px) {
  .feature-grid, .value-grid {
    gap: 18px;
  }
  .feature-grid > div, .value-grid > div {
    min-width: 180px;
    max-width: 100%;
    padding: 18px 12px;
  }
  .partner-logos {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { gap: 18px; }
  .feature-grid,
  .value-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid > div, .value-grid > div {
    min-width: 0;
    width: 100%;
    padding: 18px 14px;
  }
  .partner-logos {
    flex-wrap: wrap;
    gap: 12px;
  }
  .testimonial-card {
    padding: 16px 12px;
    max-width: 100%;
  }
  .contact-footer { flex-direction: column; gap: 8px; }
  .faq-list > div { padding: 14px 10px 10px 10px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .section, section { padding: 18px 2vw; }
  .content-wrapper { gap: 11px; }
  .cta-primary { font-size: .99rem; padding: 10px 16px; }
  .mobile-nav { padding: 60px 12vw 22px 12vw; gap: 18px; }
  .faq-list > div { padding: 10px 4px 8px 4px; font-size: 0.97rem; }
  .feature-grid > div, .value-grid > div { padding: 12px 6px; }
}

/* ========== MICRO-INTERACTIONS & TRANSITIONS ========== */
button, .cta-primary, .btn-secondary, a {
  transition: background 0.16s, color 0.16s, box-shadow 0.15s, border-color 0.16s, transform 0.14s;
}

/* ========== ACCESSIBILITY: FOCUS ========== */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px dashed #46AE8D;
  outline-offset: 2px;
  z-index: 2;
  background: #F5F5F4;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  width: 100vw;
  padding: 22px 12px 18px 12px;
  background: #fff;
  border-top: 1.5px solid #EAEAEA;
  box-shadow: 0 -2px 16px rgba(19,64,100,0.12);
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  animation: cookie-banner-fadein 0.43s ease;
}
@keyframes cookie-banner-fadein {
  0% { transform: translateY(40px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #23272B;
  font-size: 0.99rem;
  max-width: 600px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
.cookie-banner .cta-primary {
  padding: 9px 24px;
  font-size: 1.02rem;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #134064;
  border: 1.5px solid #134064;
  padding: 9px 16px;
  border-radius: 22px;
  font-size: 1.02rem;
}
.cookie-banner .btn-secondary:hover { background: #46AE8D; color: #fff; border-color: #46AE8D; }

@media (max-width: 600px) {
  .cookie-banner { padding: 14px 4px 10px 4px; }
  .cookie-banner-buttons { gap: 8px; }
  .cookie-banner p { font-size: 0.94rem; }
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 39, 43, 0.22);
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.5,.18,.2,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(19,64,100,0.18);
  max-width: 440px;
  padding: 36px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.44s cubic-bezier(.55,.19,.21,1);
  position: relative;
}
@keyframes cookie-modal-in {
  0% { transform: translateY(60px) scale(0.98); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 22px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #134064;
  padding: 2px 5px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F5F5F4;
}
.cookie-modal-content h3 {
  font-size: 1.14rem;
  color: #134064;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F5F5F4;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  background: #EAEAEA;
  width: 36px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #46AE8D;
}
.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle input[type="checkbox"]:checked::before {
  left: 18px;
}
.cookie-category label {
  font-size: 1rem;
  color: #23272B;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category .always-on {
  color: #46AE8D;
  font-size: 0.98rem;
  font-style: italic;
  margin-left: 4px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions .cta-primary { padding: 10px 24px; font-size: 1.01rem; }
.cookie-modal-actions .btn-secondary { padding: 10px 16px; font-size: 1.01rem; }

@media (max-width: 520px) {
  .cookie-modal-content {
    max-width: 94vw;
    padding: 18px 7vw 16px 7vw;
  }
}

/* ========== PRINT ========== */
@media print {
  header,footer,.mobile-menu,.cookie-banner,.cookie-modal { display:none!important; }
  body,section,.content-wrapper { background: #fff!important; }
}

/* ===================================================== */
