/* ============================
   CSS RESET & BASE STYLES
   ============================ */
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;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(132deg, #F5F5F5 0%, #DCC8A3 100%);
  color: #233B47;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #233B47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b49454;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #233B47;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }
p { margin-bottom: 18px; }

/* ============================
   CONTAINERS & LAYOUT
   ============================ */
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* We'll manage section spacing using .section as per instructions */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 800px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ============================
   GLOBAL FLEXBOX PATTERNS
   ============================ */
.card-container, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(35,59,71,0.10);
  padding: 24px;
  min-width: 270px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(35,59,71,0.14);
  transform: translateY(-2px) scale(1.02);
  z-index: 1;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 14px;
  box-shadow: 0 1px 5px 0 rgba(35,59,71,0.09);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #2D3236;
  margin: 0;
  font-size: 1.06em;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #233B47;
  font-weight: 600;
  font-size: 0.96em;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(35,59,71,0.09);
  padding: 20px;
  min-width: 220px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 26px 0 rgba(35,59,71,0.15);
  transform: translateY(-2px) scale(1.015);
}

.contact-details, .contact-snippet, .contact-info, .support-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.contact-details div,
.contact-snippet div,
.contact-info div,
.support-contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-highlight, .consultant-profiles, .consulting-examples, .customer-stories-preview, .faq-teaser {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.step-by-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}
.step-by-step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-by-step-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.rating-summary,
.awards,
.press-mentions {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(35,59,71,0.09);
  padding: 12px 18px;
  margin-bottom: 16px;
}

/* ============================
   HEADER 
   ============================ */
header {
  background: linear-gradient(90deg, #F5F5F5 60%, #DCC8A3 100%);
  border-bottom: 1px solid #e5e2de;
  box-shadow: 0 8px 32px -12px rgba(35,59,71,0.05);
}
.logo img {
  max-height: 56px;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #233B47;
  border-radius: 4px;
  padding: 4px 10px;
  transition: background 0.14s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #DCC8A3;
  color: #1C2932;
}
.button-primary {
  background: linear-gradient(90deg, #233B47 60%, #DCC8A3 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px 0 rgba(35,59,71,0.13);
  transition: background 0.19s, box-shadow 0.18s, color 0.17s;
  margin-left: 22px;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #233B47 28%, #b49454 100%);
  color: #fff6e7;
  box-shadow: 0 6px 22px 0 rgba(35,59,71,.18);
  outline: none;
}
.button-secondary {
  background: #fff;
  border: 2px solid #233B47;
  color: #233B47;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  transition: background 0.18s, color 0.14s, border-color 0.19s;
  margin-top: 12px;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  background: #233B47;
  color: #fff;
  border-color: #DCC8A3;
  outline: none;
}
.button-link {
  background: none;
  border: none;
  color: #233B47;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
  transition: color 0.18s;
}
.button-link:hover, .button-link:focus {
  color: #b49454;
  text-decoration: underline;
  outline: none;
}

.mobile-menu-toggle {
  background: #233B47;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  display: none;
  transition: background 0.15s, color 0.14s;
  z-index: 3002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #b49454;
  color: #fff6e7;
  outline: none;
}

/* ============================
   MOBILE NAVIGATION
   ============================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(132deg, #233B47 85%, #DCC8A3 100%);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 44px;
  padding-left: 24px;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.75,.05,.32,1);
  box-shadow: 0 10px 40px -10px rgba(35,59,71,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 12px 10px;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 26px;
  z-index: 3020;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #DCC8A3;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.14rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.16s, background 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #DCC8A3;
  background: rgba(255,255,255,0.08);
  outline: none;
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    gap: 0;
  }
  .main-nav {
    gap: 5px;
    font-size: 0.94em;
  }
  header .container {
    min-height: 68px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  header .container {
    flex-direction: row;
    align-items: center;
    min-height: 56px;
  }
  .main-nav {
    display: none;
  }
  .button-primary {
    margin-left: 6px;
    padding: 10px 16px;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
    padding: 14px;
  }
  .team-highlight, .consultant-profiles, .consulting-examples, .customer-stories-preview, .faq-teaser {
    padding: 12px 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.23rem; }
  .logo img {
    max-height: 38px;
  }
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(132deg, #DCC8A3 0%, #F5F5F5 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 32px -12px rgba(35,59,71,0.09);
  margin-bottom: 60px;
  padding: 70px 0 54px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 26px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  color: #233B47;
  letter-spacing: -0.6px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 640px;
  color: #233B47;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 20px 0;
    margin-bottom: 34px;
    border-radius: 0 0 12px 12px;
  }
  .hero h1 { font-size: 1.36rem; }
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: linear-gradient(270deg, #F5F5F5 63%, #DCC8A3 100%);
  border-top: 1px solid #ede6da;
  box-shadow: 0 -4px 18px -8px rgba(35,59,71,0.04);
  padding: 40px 0 0 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #233B47;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #b49454;
}
.footer-brand img {
  max-height: 48px;
  margin-bottom: 10px;
}
.footer-address {
  margin: 8px 0 10px 0;
  color: #233B47;
  font-style: normal;
  font-size: 0.98rem;
}
.footer-legal {
  margin: 8px 0 10px 0;
  color: #647888;
  font-size: 0.92rem;
  text-align: center;
}

/* ============================
   COOKIES CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -3px 12px 0 rgba(35,59,71,0.17);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 30px;
  z-index: 3500;
  font-size: 1rem;
  transition: transform 0.29s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 0;
  color: #233B47;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.button-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.button-cookie-accept {
  background: #233B47;
  color: #fff;
}
.button-cookie-accept:hover, .button-cookie-accept:focus {
  background: #b49454;
  color: #fff6e7;
  outline: none;
}
.button-cookie-reject {
  background: #fff;
  color: #233B47;
  border: 2px solid #233B47;
}
.button-cookie-reject:hover, .button-cookie-reject:focus {
  background: #233B47;
  color: #fff;
  outline: none;
}
.button-cookie-settings {
  background: #F5F5F5;
  color: #233B47;
  border: 1px solid #DCC8A3;
}
.button-cookie-settings:hover, .button-cookie-settings:focus {
  color: #b49454;
  outline: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 8px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* Cookiemodal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,59,71,0.36);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 40px 0 rgba(35,59,71,0.29);
  padding: 32px 26px 24px 26px;
  max-width: 410px;
  min-width: 280px;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 4002;
  position: relative;
  animation: fadeInModal 0.27s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.97) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ede6da;
  padding: 12px 0 8px 0;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-modal__category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #DCC8A3;
  outline: none;
  border-radius: 13px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #233B47;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.button-cookie-modal {
  background: #233B47;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s;
}
.button-cookie-modal:hover, .button-cookie-modal:focus {
  background: #b49454;
  color: #fff6e7;
  outline: none;
}
.button-cookie-modal-cancel {
  background: #fff;
  color: #233B47;
  border: 2px solid #233B47;
}
.button-cookie-modal-cancel:hover, .button-cookie-modal-cancel:focus {
  background: #233B47;
  color: #fff;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 15px 8px 16px 8px;
    min-width: 0;
    max-width: 97vw;
    font-size: 0.96rem;
  }
}

/* ============================
   TYPOGRAPHY & UTILITY CLASSES
   ============================ */
.display-font {
  font-family: 'Montserrat', Arial, sans-serif;
}
.body-font {
  font-family: 'Open Sans', Arial, sans-serif;
}
.accent-bg {
  background: #DCC8A3;
  color: #233B47;
  border-radius: 7px;
  padding: 5px 9px;
}
.text-accent {
  color: #DCC8A3 !important;
}
.bg-light {
  background: #F5F5F5;
}
.bg-primary {
  background: #233B47;
  color: #fff;
}
.bg-secondary {
  background: #DCC8A3;
  color: #233B47;
}
.rounded {
  border-radius: 12px;
}
.shadow {
  box-shadow: 0 2px 10px 0 rgba(35,59,71,0.11);
}

/* ============================
   VISUAL MICRO-ANIMATIONS
   ============================ */
.card, .feature-item, .button-primary, .button-secondary, .testimonial-card {
  transition: box-shadow 0.25s, transform 0.18s, background 0.2s, color 0.15s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.99) translateY(1px);
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.99);
}

/* ============================
   SPECIAL CTA BUTTONS & INFOS
   ============================ */
.cta-section {
  background: linear-gradient(90deg, #233B47 70%, #DCC8A3 100%);
  border-radius: 17px;
  padding: 32px 24px;
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(35,59,71,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cta-section .button-primary {
  background: #fff;
  color: #233B47;
}
.cta-section .button-primary:hover {
  background: #DCC8A3;
  color: #233B47;
}

/* ============================
   MISCELLANEOUS
   ============================ */
::-webkit-input-placeholder { color: #888; opacity: 1; }
::-moz-placeholder { color: #888; opacity: 1; }
:-ms-input-placeholder { color: #888; opacity: 1; }
::placeholder { color: #888; opacity: 1; }

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

/* ============================
   PRINT STYLES (BASIC)
   ============================ */
@media print {
  header, nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  body { color: #000; background: none !important; }
}
