/* ---------- 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;
}
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FFFFFF;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1B2432;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #E85D04;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DB5400;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
/* ---------- FONT FACE ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;700&display=swap');

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #1B2432;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #232A35;
  font-size: 1rem;
  margin-bottom: 10px;
}
strong, b {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #E85D04;
}

.subheadline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #DB5400;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

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

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  background: #1B2432;
  color: #fff;
  width: 100%;
  padding: 0 0 0 0;
  position: relative;
  z-index: 60;
  box-shadow: 0 2px 12px 0 rgba(30,40,50,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  height: 72px;
  position: relative;
  z-index: 61;
}
header img {
  height: 40px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 5px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover,
nav a:focus {
  color: #E85D04;
  background: #fff;
  outline: none;
}
.cta-button {
  display: inline-block;
  background: #E85D04;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 36px;
  box-shadow: 0 4px 16px 0 rgba(232,93,4,0.13);
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-transform: uppercase;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus {
  background: #DB5400;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 18px 0 rgba(232,93,4,0.19);
  outline: none;
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  display: none;
  background: #E85D04;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  padding: 8px 18px;
  border-radius: 14px;
  border: none;
  position: absolute;
  right: 1.25rem;
  top: 18px;
  z-index: 102;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #DB5400;
  outline: none;
  transform: scale(1.07);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: 100vw;
  height: 100vh;
  background: #1B2432;
  box-shadow: -6px 0 24px 0 rgba(27,36,50,0.25);
  padding: 0 32px 0 32px;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.47,1.64,.41,.8);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  position: absolute;
  right: 34px;
  top: 22px;
  z-index: 125;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E85D04;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 7px;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E85D04;
  color: #fff;
  outline: none;
}

/* ---------- HERO / SECTIONS ---------- */
.hero-section {
  background: #fff;
  position: relative;
  margin-bottom: 60px;
  padding: 64px 0 48px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}
.hero-section h1 {
  color: #1B2432;
  font-size: 2.5rem;
  max-width: 700px;
}
.hero-section .cta-button {
  margin-top: 24px;
}

.features-section {
  background: #F9FAFB;
}
.features-section h2 {
  color: #1B2432;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0 0 0;
}
.feature-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(30,40,50,0.09);
  padding: 28px 22px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px 4px rgba(232,93,4,0.10), 0 4px 16px 4px rgba(30,40,50,0.13);
  transform: translateY(-4px) scale(1.02);
  z-index: 5;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 9px;
  background: #E85D04;
  border-radius: 10px;
  padding: 6px;
}
.feature-item h3 {
  color: #E85D04;
  font-size: 1.22rem;
  margin-bottom: 5px;
  font-weight: 800;
}

/* ---------- CARDS AND GRIDS ---------- */
.card-container,
.card-grid,
.testimonial-grid,
.team-grid,
.blog-teaser-grid,
.course-list-grid,
.before-after-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .course-item, .blog-teaser, .team-member {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(30,40,50,0.09);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 22px;
  transition: box-shadow 0.18s, transform 0.14s;
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 350px;
}
.card:hover, .course-item:hover, .blog-teaser:hover, .team-member:hover {
  box-shadow: 0 12px 30px 0 rgba(232,93,4,0.13), 0 4px 18px 0 rgba(30,40,50,0.11);
  z-index: 4;
  transform: translateY(-2px) scale(1.01);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #F3F4F8;
  box-shadow: 0 2px 14px 0 rgba(30,40,50,0.07);
  min-width: 240px;
  max-width: 450px;
  border: 2px solid #E85D04;
}
.testimonial-card p {
  color: #1B2432;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E85D04;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-grid {
  gap: 24px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ---------- BUTTONS, LINKS, CTAS ---------- */
.content-wrapper > a, .content-wrapper a.cta-button, .cta-section .cta-button, .newsletter-signup-section .cta-button {
  margin-top: 24px;
}

.content-wrapper > a:not(.cta-button) {
  color: #E85D04;
  font-weight: 700;
  text-decoration: underline;
  border-bottom: 2px solid #DB5400;
  padding-bottom: 1px;
  transition: color 0.16s;
}
.content-wrapper > a:not(.cta-button):hover {
  color: #DB5400;
}

/* ---------- SECTIONS ---------- */
.about-preview-section, .about-section, .values-section, .legal-section, .newsletter-signup-section, .team-section, .contact-section, .thank-you-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(27,36,50,0.05);
  margin-bottom: 60px;
}

.cta-section {
  background: #E85D04;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px 0 rgba(232,93,4,0.08);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section .cta-button {
  background: #fff;
  color: #E85D04;
  border: 2px solid #E85D04;
  margin-top: 20px;
}
.cta-section .cta-button:hover {
  background: #DB5400;
  color: #fff;
  border-color: #fff;
}

/* ---------- OTHER GRIDS & FLEX LAYOUTS ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F5F8FA;
  border-radius: 13px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px 0 rgba(30,40,50,0.05);
}

.value-list, .credentials ul, .benefits-list ul, .benefit-list, .before-after-section ul, .metrics-improvements ul, .unique-approaches ul {
  margin: 0 0 12px 0;
  gap: 10px;
}

.step-by-step-process ol {
  margin: 0 0 12px 16px;
  padding: 0;
  color: #E85D04;
}
.step-by-step-process li {
  color: #1B2432;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.09rem;
}

.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

/* ---------- TABLES ---------- */
.comparison-table {
  overflow-x: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(232,93,4,0.08);
  margin-bottom: 28px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #CED4DA;
  text-align: left;
}
.comparison-table th {
  background: #E85D04;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 0;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ---------- CONTACT & FOOTER ---------- */
.contact-details ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.09rem;
}
.contact-details img {
  height: 22px;
  width: 22px;
}

footer {
  background: #1B2432;
  color: #fff;
  padding: 42px 0 30px 0;
  width: 100%;
  margin-top: 32px;
  box-shadow: 0 -2px 9px 0 rgba(30,40,50,0.09);
  position: relative;
  z-index: 15;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
.footer-main nav {
  gap: 18px;
}
.footer-main nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 4px;
  transition: color 0.18s;
}
.footer-main nav a:hover {
  color: #E85D04;
}
.footer-info {
  margin-top: 9px;
  background-color: #CED4DA;
  font-size: 0.98rem;
  letter-spacing: 0.1px;
}
.footer-info a, .footer-info a:visited {
  color: #E85D04;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-info a:hover {
  color: #fff;
}

/* ---------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: #e3dada;
  color: #fff;
  width: 100%;
  box-shadow: 0 -2px 14px 0 rgba(232,93,4,0.09);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 28px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.4s cubic-bezier(.39,1.66,.57,1) both;
}
@keyframes cookieBannerSlideIn {
  from {
    transform: translateY(100%); opacity: 0; 
  }
  to {
    transform: none; opacity: 1;
  }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 22px;
  border: none;
  background: #E85D04;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #DB5400;
  color: #fff;
  outline: none;
  transform: scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #E85D04;
  border: 2px solid #E85D04;
}
.cookie-banner .cookie-settings-btn:focus,
.cookie-banner .cookie-settings-btn:hover {
  background: #E85D04;
  color: #fff;
  border: 2px solid #fff;
}

/* ---------- COOKIE MODAL ---------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,36,50,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.3s cubic-bezier(.39,1.66,.57,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B2432;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px 0 rgba(30,40,50,0.18);
  padding: 36px 28px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 220;
  animation: cookieModalSlide 0.33s cubic-bezier(.39,1.66,.57,1);
}
@keyframes cookieModalSlide {
  from { transform: translateY(68px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #E85D04;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: #DB5400;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #E85D04;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: #232A35;
  margin-right: 16px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 48px;
  display: inline-block;
  height: 26px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #CED4DA;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #E85D04;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  transition: transform 0.18s;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(27,36,50,0.09);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 28px;
}
.cookie-modal .cookie-actions button {
  border-radius: 18px;
  border: none;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #E85D04;
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, transform 0.13s;
}
.cookie-modal .cookie-actions button:focus,
.cookie-modal .cookie-actions button:hover {
  background: #DB5400;
  color: #fff;
  outline: none;
  transform: scale(1.03);
}

/* ---------- RESPONSIVE - MOBILE FIRST ---------- */
@media (max-width: 1200px) {
  .container,
  .footer-main,
  .card-grid,
  .blog-teaser-grid,
  .team-grid,
  .feature-grid {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 930px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    gap: 15px;
  }
  .card-grid, .course-list-grid, .testimonial-grid, .team-grid, .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .features-section .feature-item,
  .testimonial-card, .team-member, .course-item, .blog-teaser {
    max-width: 46%;
    min-width: 210px;
    flex-basis: 46%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    gap: 8px;
    height: 62px;
  }
  nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-section {
    min-height: 200px;
    padding: 32px 0 28px 0;
  }
  .hero-section .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .feature-grid, .card-grid, .testimonial-grid, .team-grid, .blog-teaser-grid, .course-list-grid, .before-after-descriptions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .features-section .feature-item,
  .testimonial-card, .team-member, .course-item, .blog-teaser {
    max-width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }
  .about-preview-section, .about-section, .values-section, .legal-section, .newsletter-signup-section, .team-section, .contact-section, .thank-you-section {
    margin-bottom: 38px;
    padding: 24px 5px;
  }
  .cta-section {
    padding: 24px 5px;
  }
  .content-wrapper {
    padding: 0 2px;
    gap: 11px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .before-after-descriptions {
    gap: 14px;
  }
  .before-after-section .metrics-improvements {
    margin-top: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 14px 8px;
  }
  .cookie-banner .cookie-buttons {
    gap: 12px;
  }
  .cookie-modal {
    padding: 24px 8px 14px 8px;
    max-width: 98vw;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 13.5px;
  }
  .header img, .footer-main img {
    height: 32px !important;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.37rem;
  }
  .card, .course-item, .team-member, .blog-teaser, .testimonial-card {
    padding: 14px 6px;
  }
  .cta-section {
    padding: 16px 0px;
  }
}

/* ---------- MICRO-INTERACTIONS ---------- */
.cta-button, .cookie-banner button, .cookie-modal .cookie-actions button {
  transition: box-shadow 0.19s cubic-bezier(.4,2,.56,.85), transform 0.14s, background 0.17s, color 0.12s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .course-item:hover, .blog-teaser:hover {
  box-shadow: 0 9px 24px 0 rgba(232,93,4,0.17);
}
nav a:focus, .cta-button:focus {
  outline: 2px solid #E85D04;
  outline-offset: 2px;
}

/* ---------- MISC ---------- */
::-webkit-input-placeholder { color: #CED4DA; }
::-moz-placeholder { color: #CED4DA; }
:-ms-input-placeholder { color: #CED4DA; }
::placeholder { color: #CED4DA; }

/* ---------- ACCESSIBILITY ---------- */
:focus {
  outline: 2px solid #E85D04;
  outline-offset: 2px;
}

/* ---------- PRINT FRIENDLY ---------- */
@media print {
  .cookie-banner, .cookie-modal-backdrop, .mobile-menu { display: none !important; }
}
