/* ------------------------------------------------- */
/* 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 for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7f9fb;
  color: #26394D;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
}
button {
  border: none;
  background: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* ------------------------------------------------- */
/* CUSTOM PROPERTIES (with fallbacks) */
/* ------------------------------------------------- */
:root {
  --color-primary: #26394D;
  --color-secondary: #688A6E;
  --color-accent: #F2E8DF;
  --color-bg: #f7f9fb;
  --color-bg-alt: #e9eef2;
  --color-border: #D3D6DC;
  --color-text: #26394D;
  --color-heading: #26394D;
  --color-link: #375776;
  --color-link-hover: #688A6E;
  --color-white: #fff;
  --color-shadow: rgba(38,57,77,0.10);
  --color-shadow-hover: rgba(38,57,77,0.18);
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ------------------------------------------------- */
/* TYPOGRAPHY */
/* ------------------------------------------------- */
body {
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-heading);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-heading);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: var(--color-text);
}
strong {
  font-weight: 700;
}
blockquote {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 16px;
  border-left: 4px solid var(--color-secondary);
  padding-left: 16px;
}
a {
  color: var(--color-link);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-link-hover);
}

/* ------------------------------------------------- */
/* SPACING & STRUCTURE */
/* ------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 3px 16px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 8px 32px var(--color-shadow-hover);
  z-index: 1;
}
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature,
.service-item {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 3px 8px var(--color-shadow);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow .2s, border-color .2s;
}
.feature:hover,
.service-item:hover {
  box-shadow: 0 8px 24px var(--color-shadow-hover);
  border-color: var(--color-secondary);
}
.price-tag {
  color: var(--color-secondary);
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 10px;
}
.usp-list {
  margin-top: 12px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1rem;
}
.usp-list li strong {
  color: var(--color-primary);
}
.text-section {
  max-width: 700px;
}
.map-placeholder {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-size: 1.1rem;
}
.feature-item, .participant-benefits, .coaching-methods, .coaching-benefits, .coaching-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Testimonials */
.testimonials-preview .content-wrapper,
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--color-white);
  border-radius: 14px;
  min-width: 260px;
  max-width: 420px;
  box-shadow: 0 3px 16px var(--color-shadow);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--color-shadow-hover);
  border-color: var(--color-secondary);
}
.testimonial-author {
  font-size: .98rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 500;
}
/* Project/Case Preview */
.project-preview {
  background: var(--color-bg-alt);
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--color-border);
}
.logos-clients {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 24px;
  align-items: center;
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 50px 20px 44px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}
.cta-section h2,
.cta-section p {
  color: var(--color-white);
}
/* Next Steps Section (Thank You)*/
.next-steps {
  background: var(--color-bg-alt);
  border-radius: 10px;
  padding: 22px 20px;
  margin: 24px 0 16px 0;
}

/* ------------------------------------------------- */
/* HEADER & NAVIGATION */
/* ------------------------------------------------- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 20px 10px 20px;
  max-width: 1160px;
  margin: 0 auto;
  font-family: var(--font-display);
}
.brand-header img {
  height: 38px;
}
.tagline {
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
  font-family: var(--font-body);
  font-weight: 400;
}
.main-nav {
  display: flex;
  gap: 24px;
  padding: 10px 20px 10px 20px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cta-btn.primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: 22px;
  padding: 11px 30px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin: 10px 24px 10px auto;
  transition: background 0.18s, box-shadow .18s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 18px var(--color-shadow-hover);
}

/* ------------------------------------------------- */
/* MOBILE NAVIGATION */
/* ------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 2px 14px;
  margin: 8px 10px 8px auto;
  transition: background 0.18s;
  z-index: 201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}
.mobile-menu-toggle:hover {
  background: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(38, 57, 77, 0.94);
  color: var(--color-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(0.88,0.05,0.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 10px 26px 32px 0;
  font-size: 2.2rem;
  background: transparent;
  color: var(--color-white);
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-secondary);
}
.mobile-nav {
  flex-direction: column;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  margin-left: 36px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.13rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 10px 0;
  border-radius: 4px;
  transition: background 0.15s, color .15s;
  width: 80vw;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
/* Hamburger visible & Main nav hidden on mobile */
@media (max-width: 1000px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------------------------------------- */
/* HERO SECTION */
/* ------------------------------------------------- */
.hero-section {
  background: var(--color-bg-alt);
  border-radius: 0 0 24px 24px;
  padding: 56px 0 56px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  align-items: flex-start;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-section h1 {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
}
.hero-section p {
  color: var(--color-primary);
  font-size: 1.12rem;
  margin-bottom: 4px;
}

/* ------------------------------------------------- */
/* FOOTER */
/* ------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 34px 0 28px 0;
  line-height: 1.7;
  border-radius: 20px 20px 0 0;
  margin-top: 30px;
}
.footer-nav {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-white);
  font-size: .98rem;
  transition: color .13s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
}
footer address {
  color: var(--color-accent);
  display: block;
  text-align: center;
  font-style: normal;
  font-size: .97rem;
  margin-top: 6px;
}
footer address a {
  color: var(--color-white);
  word-break: break-all;
}
/* ------------------------------------------------- */
/* COOKIE CONSENT BANNER & MODAL */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 12px 18px 12px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 -2px 22px var(--color-shadow);
  transition: transform .28s, opacity .18s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 0.98rem;
  margin-right: 32px;
  max-width: 440px;
}
.cookie-banner .cookie-btn {
  margin-right: 15px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 1.03rem;
  transition: background 0.17s, box-shadow 0.17s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-accent);
  color: var(--color-secondary);
  margin-left: 10px;
  font-weight: 500;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #e5decd;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 400;
  background: rgba(38,57,77,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-text);
  max-width: 430px;
  padding: 32px 30px 26px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 28px var(--color-shadow-hover);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  position: relative;
  min-width: 290px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.cookie-modal .category-label {
  font-weight: 500;
  font-size: 1.08rem;
}
.cookie-modal .category-toggle {
  background: var(--color-accent);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  font-size: .98rem;
  cursor: pointer;
  transition: background .17s, border .17s;
  color: var(--color-secondary);
}
.cookie-modal .category-toggle.selected {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.cookie-modal .category-toggle[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.6rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover {
  background: var(--color-accent);
}

/* ---------------------------------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
    padding: 0 14px;
  }
  .feature-grid, .service-list {
    gap: 16px;
  }
  .feature, .service-item {
    min-width: 175px;
    padding: 17px 12px;
  }
  .testimonial-card {
    padding: 16px 12px;
    min-width: 180px;
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero-section {
    padding: 33px 0;
  }
  .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .service-item {
    flex: 1 1 100%;
  }
  .testimonials-preview .content-wrapper,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .brand-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 6px 10px;
    gap: 7px;
  }
  .cta-section {
    padding: 30px 10px 28px 10px;
  }
  .footer-nav {
    gap: 12px;
    font-size: .94rem;
  }
  .logos-clients {
    gap: 14px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  section, .section {
    padding: 25px 4px;
  }
  .container {
    padding: 0 4px;
  }
  .testimonial-card {
    padding: 13px 6px;
  }
  .cta-section {
    padding: 18px 5px 18px 5px;
    border-radius: 10px;
  }
  .project-preview, .map-placeholder, .next-steps {
    padding: 13px 8px;
    font-size: .96rem;
  }
}

/* FLEX-ONLY WRAPPERS FOR COMPLIANCE */
.content-grid,.text-image-section { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { align-items: center; gap: 30px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ------------------------------------------------- */
/* MICRO-INTERACTIONS & TRANSITIONS */
/* ------------------------------------------------- */
.card, .feature, .service-item, .testimonial-card, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow .18s, border-color .18s, background .14s, color .14s, transform .16s;
}
.cta-btn.primary:active { transform: scale(0.96); }

/* Scrollbar styling (for professional/corporate look) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 5px;
  transition: background .18s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* ---------------------------------------------- */
/* UTILITIES & MISC */
/* ---------------------------------------------- */
.hide { display: none !important; }
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.flex-row {
  display: flex; flex-direction: row; flex-wrap: wrap; }
.flex-col {
  display: flex; flex-direction: column; }
/* Accessibility: Focus outlines */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Ensure no element overlaps by enforcing spacing */
.feature, .service-item, .testimonial-card, .card, .project-preview,
.next-steps, .map-placeholder, .participant-benefits, .coaching-methods, .coaching-benefits, .coaching-pricing {
  margin-bottom: 20px;
}

/* End of CSS */
