/* GLOBAL / RESET */
* {
  box-sizing: border-box;
}

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, td, tfoot, th, thead, tr,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: #1a202c;
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.2px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a202c 0%, #147690 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f8fc 40%, #e8f5ff 100%);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid #d0e5f0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(42, 170, 181, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.card:hover {
  border-color: #2aaab5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5ff 100%);
}

/* HEADER / NAV */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #f0f0f0;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
}

.main-nav a:hover {
  color: #147690;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  padding: 8px 12px;
  background-color: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding: 96px 0 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 25%, #e8f4ff 50%, #e0f0ff 75%, #aecdff 100%);
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  right: 50%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 800px;
  height: 100%;
  background-image: url('assets/images/watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* PAGE HERO - Apply hero style to first section on all pages */
.page-hero {
  padding: 96px 0 80px 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 25%, #e8f4ff 50%, #e0f0ff 75%, #aecdff 100%);
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  right: 50%;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 800px;
  height: 100%;
  background-image: url('assets/images/watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  background: linear-gradient(135deg, #1a202c 0%, #b63932 50%, #147690 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero h1 {
  background: linear-gradient(135deg, #1a202c 0%, #b63932 50%, #147690 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(135deg, #1a202c 0%, #b63932 50%, #147690 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a202c;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a202c;
  letter-spacing: -0.1px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.hero-text > p:first-of-type {
  font-size: 18px;
  line-height: 1.75;
  color: #374151;
}

.hero-sub {
  font-size: 17px;
  color: #52606d;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-meta {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5ff 50%, #d4efff 100%);
  border: 2px solid #2aaab5;
  border-radius: 12px;
  padding: 32px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(42, 170, 181, 0.08);
  transition: all 0.3s ease;
}

.hero-card:hover {
  box-shadow: 0 8px 20px rgba(42, 170, 181, 0.15);
  border-color: #147690;
  background: linear-gradient(135deg, #ffffff 0%, #d4efff 50%, #b8e8ff 100%);
}

.hero-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-card p {
  color: #6b7280;
  font-size: 15px;
}

.hero-visual img,
.about-photo img,
.section-image img,
.results-image-strip img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: none;
  display: block;
}

.results-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tagline {
  font-size: 13px;
  background: linear-gradient(90deg, #b63932 0%, #147690 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  margin-top: 0;
}

.link-cta {
  color: #147690;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
}

.link-cta:hover {
  color: #0d5a70;
  text-decoration: underline;
}

.outcome {
  font-weight: 500;
  color: #1a202c;
  margin-top: 16px;
  font-size: 15px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  letter-spacing: 0px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #b63932 0%, #c74a41 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(182, 57, 50, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a02d26 0%, #b63932 100%);
  box-shadow: 0 6px 16px rgba(182, 57, 50, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  border: 2px solid #147690;
  color: #147690;
  font-weight: 600;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e8f5ff 0%, #d4efff 100%);
  border-color: #0d5a70;
  color: #0d5a70;
}

.btn-outline {
  border: 1px solid #d0d5dd;
  background-color: transparent;
  color: #374151;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* LISTS */
.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #147690;
  font-weight: 600;
}

/* STAR BULLET LIST */
.star-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.star-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.star-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #147690;
  font-weight: 600;
}

/* STATS BAND */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5ff 50%, #d9f0ff 100%);
  border: 2px solid #aecdff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 6px rgba(20, 118, 144, 0.06);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #147690;
  box-shadow: 0 6px 16px rgba(20, 118, 144, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #d4efff 50%, #b8e8ff 100%);
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #147690 0%, #2aaab5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #1a202c;
  margin-bottom: 8px;
}

.stat-note {
  display: block;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

.stat-citation {
  display: block;
  font-size: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d9f0ff;
}

.stat-citation a {
  color: #147690;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.stat-citation a:hover {
  color: #0d5a70;
  text-decoration: underline;
}

/* TESTIMONIALS */
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial .quote {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #374151;
}

.testimonial .person {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* CTA SECTION */
.section-cta {
  background: linear-gradient(135deg, #13374b 0%, #147690 35%, #2aaab5 65%, #b63932 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(42, 170, 181, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(182, 57, 50, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.section-cta h2 {
  color: #ffffff;
  font-size: 32px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* FOOTER */
.site-footer {
  border-top: 2px solid #2aaab5;
  padding: 40px 0;
  background: linear-gradient(135deg, #fafbfc 0%, #e8f5ff 100%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-inner p {
  font-size: 14px;
  color: #6b7280;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  text-decoration: none;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #147690;
  text-decoration: none;
}

.footer-meta {
  color: #9ca3af;
  font-size: 13px;
}

/* CHAT WIDGET */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #147690;
  color: #ffffff;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 118, 144, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-toggle:hover {
  background-color: #0d5a70;
  box-shadow: 0 12px 28px rgba(20, 118, 144, 0.35);
  transform: scale(1.05);
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 520px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.chat-window.open {
  display: flex;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  background: linear-gradient(135deg, #147690 0%, #0d5a70 100%);
  color: #ffffff;
  padding: 20px;
  position: relative;
}

.chat-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.chat-subtitle {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.5;
}

.chat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.chat-close:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #fafbfc;
}

.chat-message {
  display: flex;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message.user .chat-bubble {
  background-color: #147690;
  color: #ffffff;
  border-radius: 12px 4px 12px 12px;
  padding: 12px 14px;
  max-width: 80%;
  word-wrap: break-word;
  box-shadow: 0 2px 6px rgba(20, 118, 144, 0.15);
}

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.bot .chat-bubble {
  background-color: #ffffff;
  color: #1a202c;
  border-radius: 4px 12px 12px 12px;
  padding: 12px 14px;
  max-width: 80%;
  word-wrap: break-word;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.chat-bubble {
  word-break: break-word;
}

.chat-bubble a {
  color: #147690;
  font-weight: 600;
  text-decoration: underline;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 14px;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.chat-input-area input {
  flex: 1;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
}

.chat-input-area input:focus {
  outline: none;
  border-color: #147690;
  box-shadow: 0 0 0 2px rgba(20, 118, 144, 0.1);
}

#chatSend {
  padding: 8px 16px;
  background-color: #147690;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

#chatSend:hover {
  background-color: #0d5a70;
}

.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background-color: #f5f9fc;
}

.chat-quick-reply {
  padding: 10px 12px;
  background-color: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #374151;
  font-weight: 500;
}

.chat-quick-reply:hover {
  background-color: #e8f5ff;
  border-color: #147690;
  color: #147690;
}

/* Chat widget mobile styles */
@media (max-width: 480px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-window {
    width: calc(100vw - 32px);
    max-width: 380px;
    height: 420px;
  }
}

/* WORKSHOPS PAGE STYLES */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.workshop-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
  border: 2px solid;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--workshop-color-start), var(--workshop-color-end));
}

.workshop-card-1 {
  --workshop-color-start: #b63932;
  --workshop-color-end: #d4524d;
  border-color: #e8ccc9;
}

.workshop-card-1:hover {
  border-color: #b63932;
  box-shadow: 0 20px 40px rgba(182, 57, 50, 0.08);
  background: linear-gradient(135deg, #fffcfb 0%, #fef5f3 100%);
  transform: translateY(-6px);
}

.workshop-card-2 {
  --workshop-color-start: #147690;
  --workshop-color-end: #2aaab5;
  border-color: #c8dfe8;
}

.workshop-card-2:hover {
  border-color: #147690;
  box-shadow: 0 20px 40px rgba(20, 118, 144, 0.08);
  background: linear-gradient(135deg, #f5fbfd 0%, #f0f8fc 100%);
  transform: translateY(-6px);
}

.workshop-card-3 {
  --workshop-color-start: #2aaab5;
  --workshop-color-end: #147690;
  border-color: #c8dfe8;
}

.workshop-card-3:hover {
  border-color: #2aaab5;
  box-shadow: 0 20px 40px rgba(42, 170, 181, 0.08);
  background: linear-gradient(135deg, #f5fbfd 0%, #f0f8fc 100%);
  transform: translateY(-6px);
}

.workshop-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #9fb3c8;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.workshop-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 8px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.workshop-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #9fb3c8;
  margin-bottom: 20px;
}

.workshop-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #b63932, #2aaab5);
  border-radius: 2px;
  margin: 20px 0 24px 0;
}

.workshop-section {
  margin-bottom: 32px;
  flex-grow: 0;
}

.workshop-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #1a202c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.workshop-card > .workshop-section:last-of-type {
  margin-bottom: 32px;
  flex-grow: 1;
}

.outcome-list {
  list-style: none;
  padding: 0;
}

.outcome-list li {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  position: relative;
  font-weight: 500;
}

.outcome-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2aaab5;
  font-weight: 700;
  font-size: 16px;
}

.details-list {
  list-style: none;
  padding: 0;
}

.details-list li {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  position: relative;
}

.details-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2aaab5;
  font-weight: 700;
  font-size: 14px;
}

.workshop-card > p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.workshop-pricing {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 24px;
}

.workshop-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #b63932 0%, #c74a41 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(182, 57, 50, 0.3);
}

.workshop-cta:hover {
  background: linear-gradient(135deg, #a02d26 0%, #b63932 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(182, 57, 50, 0.4);
  text-decoration: none;
}

.journey-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.benefit-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.benefit-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1a202c;
}

.benefit-box p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.benefit-icon {
  font-size: 32px;
  color: #147690;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.faq-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1a202c;
}

.faq-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.customisation-section {
  max-width: 1000px;
  margin: 0 auto;
}

.journey-section h2,
.customisation-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.journey-section p,
.customisation-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
}

/* Contact form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 500;
  color: #1a202c;
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #147690;
  box-shadow: 0 0 0 3px rgba(20, 118, 144, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  margin-top: 12px;
  font-size: 16px;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .workshops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .journey-benefits {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .workshop-card {
    padding: 32px;
  }
  
  .journey-section h2,
  .customisation-section h2 {
    font-size: 24px;
  }
  
  .workshop-card h2 {
    font-size: 20px;
  }
  
  /* Contact/About page responsive grids */
  .grid[style*="grid-template-columns: 1fr 1fr"],
  .grid[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .case-study-card {
    padding: 32px;
  }

  .case-study-header {
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .case-study-logo {
    height: 80px;
  }

  .case-study-title {
    font-size: 20px;
  }

  .case-study-block h3 {
    font-size: 13px;
  }

  .case-study-block p {
    font-size: 14px;
  }

  .case-study-quote {
    font-size: 13px;
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 16px;
    gap: 12px;
    z-index: 100;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .results-image-strip {
    grid-template-columns: 1fr;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-img {
    height: 48px;
  }

  .main-nav {
    gap: 20px;
  }
  
  video {
    max-width: 100%;
    height: auto;
  }
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  cursor: pointer;
  padding: 16px 0;
  margin: 0 0 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  user-select: none;
  position: relative;
}

.faq-question:hover {
  color: #b63932;
}

.faq-question::before {
  content: '▼';
  display: inline-block;
  margin-right: 12px;
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #b63932;
  width: 16px;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  color: #4b5563;
  line-height: 1.8;
  padding: 0 0 24px 28px;
}

.faq-answer p {
  margin-bottom: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 24px;
  }
}

/* CLIENT PREVIEW CARDS - LANDING PAGE */
.client-preview-card {
  display: flex;
  flex-direction: column;
}

.client-preview-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #13374b;
}

.client-preview-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 12px;
}

.client-preview-card .outcome {
  font-weight: 500;
  color: #2a3544;
  margin-bottom: 16px;
  padding: 12px;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f8fc 100%);
  border-left: 3px solid #147690;
  border-radius: 4px;
}

.client-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-preview-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.client-preview-sector {
  font-size: 11px;
  font-weight: 700;
  color: #9fb3c8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RESPONSIVE WORKSHOPS */
@media (max-width: 1024px) {
  .workshops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .journey-benefits {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE RULES */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .results-image-strip {
    grid-template-columns: 1fr;
  }
}
