/* ============================================
   ELANSIO DESIGN SYSTEM
   Clean, Sumptuous, Ultra-Modern
   ============================================ */

/* COLOR TOKENS */
:root {
  /* Core Palette - Luxury warm neutrals */
  --color-background: #faf9f7;
  --color-background-alt: #f7f6f4;
  --color-surface: #ffffff;
  --color-text: #0a0a0a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #6b6b6b;
  
  /* Primary CTA - Dark Green */
  --color-primary: #0d5a3c;
  --color-primary-hover: #0a4a32;
  --color-primary-light: #e8f2ed;
  
  /* Accent Colors */
  --color-accent-red: #c53030;
  --color-accent-blue: #2563eb;
  --color-accent-turquoise: #0d9488;
  
  /* Borders & Shadows */
  --color-border: #e5e2dd;
  --color-border-light: #f0ede8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* PERFORMANCE - Lazy Loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* Content Visibility for Performance */
.below-fold {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Accessibility - Visually Hidden (screen reader only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 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: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

/* Text Links - Clean Underline Style */
.text-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  color: var(--color-primary-hover);
  text-decoration-thickness: 2px;
}

/* Accent Links */
.link-turquoise {
  color: var(--color-accent-turquoise);
}

.link-blue {
  color: var(--color-accent-blue);
}

.link-red {
  color: var(--color-accent-red);
}

/* 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;
  color: var(--color-text);
}

/* Background Variations - Off-white palette */
.bg-light {
  background-color: var(--color-background-alt);
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-primary-light {
  background-color: var(--color-primary-light);
}

/* Accent backgrounds for visual interest */
.bg-accent-turquoise {
  background-color: #e6f7f5;
}

.bg-accent-blue {
  background-color: #e8f1fc;
}

.bg-accent-red {
  background-color: #fef2f2;
}

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

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

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

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* HEADER / NAV - Clean Light Theme */
.site-header {
  background-color: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  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: 64px;
  width: auto;
  display: block;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.main-nav .nav-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.main-nav .nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 12px;
  background-color: transparent;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* HERO SECTION - Clean Light Design */
.hero {
  padding: 80px 0 100px 0;
  background-color: var(--color-surface);
  position: relative;
}

/* PAGE HERO - Clean Light Design */
.page-hero {
  padding: 80px 0 64px 0 !important;
  background-color: var(--color-surface);
  position: relative;
}

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

.page-hero h1 {
  color: var(--color-text);
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--color-text-secondary);
  max-width: 640px;
}

.hero h1 {
  color: var(--color-text);
  margin-bottom: 20px;
}

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

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

.hero-text p {
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

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

/* Typography - Clean, Authoritative */
h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

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

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.lead-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.hero-sub {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

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

.hero-meta {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}

.hero-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.hero-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero-card p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

/* HERO SECTION - Clean, Sumptuous Design */
.hero-bold {
  padding: 100px 0 80px 0;
  background: var(--color-surface);
  position: relative;
}

.hero-bold .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-hook {
  margin-bottom: 40px;
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-turquoise);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-bold h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hero-value-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.hero-value-item:first-child .hero-stat {
  color: var(--color-accent-red);
}

.hero-value-item:last-child .hero-stat {
  color: var(--color-accent-turquoise);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-explanation {
  margin-bottom: 40px;
}

.hero-explanation p {
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 12px auto;
}

.hero-explanation p strong {
  color: var(--color-text);
  font-weight: 600;
}

.hero-cta-section {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Primary Button - Dark Green */
.btn-bold-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-bold-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* Secondary Button - Outlined */
.btn-bold-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-bold-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.hero-trust {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

/* PAGE HERO - Clean Light Design */
.page-hero-bold {
  padding: 80px 0 64px 0;
  background: var(--color-surface);
  position: relative;
  text-align: center;
}

.page-hero-bold .container {
  max-width: 800px;
}

.page-hero-bold .hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-turquoise);
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero-bold h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero-bold p {
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.page-hero-bold .hero-highlight {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 6px 6px 0;
  text-align: left;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-bold .hero-highlight p {
  font-size: 15px;
  margin: 0;
  color: var(--color-text-secondary);
}

.page-hero-bold .hero-highlight strong {
  color: var(--color-text);
}

.page-hero-bold .hero-cta {
  margin-top: 32px;
}

.page-hero-bold .hero-cta .btn-bold-primary {
  margin-right: 16px;
}

/* ABOUT PAGE HERO - Clean Light Design */
.about-hero-bold {
  padding: 80px 0 64px 0;
  background: var(--color-surface);
  position: relative;
}

.about-hero-grid-bold {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero-content-bold {
  text-align: left;
}

.about-hero-content-bold h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-hero-lead-bold {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-hero-highlight-bold {
  padding: 20px 24px;
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 6px 6px 0;
}

.about-hero-highlight-bold p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin: 0;
}

.about-hero-highlight-bold strong {
  color: var(--color-text);
}

.about-video-container-bold {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* AI GUIDE PAGE HERO - Clean Light Design */
.guide-hero-bold {
  padding: 80px 0 64px 0;
  background: var(--color-surface);
  position: relative;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-hero-content {
  text-align: left;
}

.guide-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.guide-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.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: 12px;
  color: var(--color-accent-turquoise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  margin-top: 0;
}

.link-cta {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
}

.link-cta:hover {
  color: var(--color-primary-hover);
}

.outcome {
  font-weight: 500;
  color: var(--color-text);
  margin-top: 16px;
  font-size: 15px;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-outline {
  border: 1px solid var(--color-border);
  background-color: transparent;
  color: var(--color-text-secondary);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
}

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

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.star-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.star-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: var(--color-accent-turquoise);
  font-weight: 600;
}

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

.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.stat:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat:nth-child(2) .stat-number {
  color: var(--color-accent-blue);
}

.stat:nth-child(3) .stat-number {
  color: var(--color-accent-turquoise);
}

.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.stat-note {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.stat-citation {
  display: block;
  font-size: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-light);
}

.stat-citation a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.stat-citation a:hover {
  color: var(--color-primary-hover);
}

/* 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 - Clean Design */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0;
  background: var(--color-surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

.footer-inner p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-strapline {
  font-size: 16px !important;
  color: var(--color-text) !important;
  margin-bottom: 4px !important;
}

.footer-description {
  font-size: 14px !important;
  color: var(--color-text-secondary) !important;
  max-width: 600px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px !important;
  color: var(--color-text-muted) !important;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-meta {
  color: var(--color-text-muted);
  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: var(--color-primary);
  color: #ffffff;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.chat-toggle:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 12px 28px rgba(13, 90, 60, 0.3);
  transform: scale(1.05);
}

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

.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 - JIGSAW PUZZLE DESIGN */
.workshops-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
  padding: 40px 20px;
}

.workshop-card {
  background: #ffffff;
  border: 3px solid;
  padding: 40px 36px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 360px;
  min-height: 580px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

/* Card 1: First piece - has tab extending right */
.workshop-card-1 {
  --workshop-color: #b63932;
  --workshop-color-light: #fef5f3;
  border-color: #b63932;
  background: linear-gradient(135deg, #ffffff 0%, #fef8f7 100%);
  border-radius: 20px 0 0 20px;
  z-index: 3;
  border-right: none;
}

/* Circular tab on right side of card 1 */
.workshop-card-1::before {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0%, #fef8f7 100%);
  border: 3px solid #b63932;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 4px 0 12px rgba(182, 57, 50, 0.15);
}

/* Card 2: Middle piece - receives tab from left, extends tab right */
.workshop-card-2 {
  --workshop-color: #147690;
  --workshop-color-light: #f0f8fc;
  border-color: #147690;
  background: linear-gradient(135deg, #ffffff 0%, #f5fafc 100%);
  border-radius: 0;
  margin-left: 24px;
  z-index: 2;
  border-left: none;
  border-right: none;
}

/* Indent on left side of card 2 (matches card 1's tab) */
.workshop-card-2::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #f7f4ef;
  border: 3px solid #147690;
  border-radius: 50%;
  z-index: 1;
}

/* Circular tab on right side of card 2 */
.workshop-card-2::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fafc 100%);
  border: 3px solid #147690;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 4px 0 12px rgba(20, 118, 144, 0.15);
}

/* Card 3: Last piece - receives tab from left */
.workshop-card-3 {
  --workshop-color: #2aaab5;
  --workshop-color-light: #f0f9fa;
  border-color: #2aaab5;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfc 100%);
  border-radius: 0 20px 20px 0;
  margin-left: 24px;
  z-index: 1;
  border-left: none;
}

/* Indent on left side of card 3 (matches card 2's tab) */
.workshop-card-3::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #f7f4ef;
  border: 3px solid #2aaab5;
  border-radius: 50%;
  z-index: 1;
}

/* Step number badges - positioned using separate elements */
.workshop-step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--workshop-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
}

/* Top accent bars */
.workshop-card-1 .workshop-accent-bar,
.workshop-card-2 .workshop-accent-bar,
.workshop-card-3 .workshop-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 5;
}

.workshop-card-1 .workshop-accent-bar { background: #b63932; border-radius: 17px 0 0 0; }
.workshop-card-2 .workshop-accent-bar { background: #147690; }
.workshop-card-3 .workshop-accent-bar { background: #2aaab5; border-radius: 0 17px 0 0; }

/* Hover effects */
.workshop-card-1:hover {
  box-shadow: 0 20px 48px rgba(182, 57, 50, 0.2);
  transform: translateY(-8px);
  z-index: 10;
}

.workshop-card-2:hover {
  box-shadow: 0 20px 48px rgba(20, 118, 144, 0.2);
  transform: translateY(-8px);
  z-index: 10;
}

.workshop-card-3:hover {
  box-shadow: 0 20px 48px rgba(42, 170, 181, 0.2);
  transform: translateY(-8px);
  z-index: 10;
}

/* Connection arrows between cards */
.jigsaw-connector {
  display: none;
}

.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;
}

.framework-intro {
  font-size: 18px;
  color: #147690;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Stats Grid for AI Guide Hero */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box {
  background: linear-gradient(135deg, #147690 0%, #0d5a6e 100%);
  padding: 20px 16px;
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.stat-source {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin: 8px 0 0 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-box {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 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;
}

/* Case Study Logos - Consistent sizing */
.case-study-logo {
  width: 180px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

/* Case Studies Grid */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Case Study Card */
.case-study-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.case-study-card:hover {
  box-shadow: var(--shadow-md);
}

/* Case Study Meta */
.case-study-meta {
  flex: 1;
  min-width: 0;
}

.case-study-sector {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent-turquoise);
  margin: 0 0 4px 0;
}

.case-study-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

/* Case Study Content */
.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.case-study-block h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-secondary);
  margin: 0 0 8px 0;
}

.case-study-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

/* Case Study Quote */
.case-study-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-secondary);
  padding: 16px 20px;
  background: var(--color-bg-soft);
  border-left: 3px solid var(--color-accent-turquoise);
  border-radius: 0 8px 8px 0;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

/* Case Study Link */
.case-study-link {
  margin: 0;
}

.case-study-link a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-turquoise);
  text-decoration: none;
  transition: color 0.2s ease;
}

.case-study-link a:hover {
  color: var(--color-primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Jigsaw grid stacks on tablet - remove puzzle connectors */
  .workshops-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
  }
  
  .workshop-card {
    max-width: 520px;
    width: 100%;
    margin: 0 !important;
    border-radius: 16px !important;
    padding: 36px !important;
    min-height: auto;
    border: 3px solid var(--workshop-color) !important;
  }
  
  /* Hide jigsaw connectors on tablet/mobile */
  .workshop-card-1::before,
  .workshop-card-2::before,
  .workshop-card-2::after,
  .workshop-card-3::before {
    display: none !important;
  }
  
  /* Restore accent bars on all corners for tablet */
  .workshop-card-1 .workshop-accent-bar,
  .workshop-card-3 .workshop-accent-bar {
    border-radius: 13px 13px 0 0 !important;
  }
  
  .workshop-card-2 .workshop-accent-bar {
    border-radius: 13px 13px 0 0 !important;
  }
  
  .journey-benefits {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .workshops-grid {
    gap: 24px;
  }
  
  .workshop-card {
    padding: 28px !important;
  }
  
  .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;
  }

  /* Bold hero sections tablet */
  .about-hero-grid-bold,
  .guide-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-content-bold,
  .guide-hero-content {
    text-align: center;
  }

  .about-hero-content-bold h1,
  .guide-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-highlight-bold,
  .guide-hero-content .hero-highlight {
    text-align: left;
  }

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

  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .case-study-logo {
    width: 140px;
    height: 56px;
  }

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

  .case-study-content {
    gap: 16px;
    margin-bottom: 20px;
  }

  .case-study-block h3 {
    font-size: 10px;
    margin-bottom: 6px;
  }

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

  .case-study-quote {
    font-size: 13px;
    padding: 14px 16px;
    margin-bottom: 12px;
  }
}

@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: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 20px;
    gap: 16px;
    z-index: 100;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open a {
    color: var(--color-text-secondary);
    padding: 8px 0;
  }

  .main-nav.open a:hover {
    color: var(--color-text);
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  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;
  }

  /* Bold Hero Mobile */
  .hero-bold {
    padding: 60px 0 80px 0;
  }

  .hero-bold h1 {
    font-size: 32px;
  }

  .hero-value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .hero-stat {
    font-size: 28px;
  }

  .hero-explanation p {
    font-size: 16px;
  }

  .hero-cta-section {
    flex-direction: column;
    align-items: center;
  }

  .btn-bold-primary,
  .btn-bold-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Bold Page Hero Mobile */
  .page-hero-bold h1 {
    font-size: 32px;
  }

  .page-hero-bold .hero-highlight {
    text-align: center;
  }

  /* About Hero Mobile */
  .about-hero-grid-bold {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-content-bold {
    text-align: center;
  }

  .about-hero-content-bold h1 {
    font-size: 32px;
  }

  .about-hero-highlight-bold {
    text-align: left;
  }

  /* Guide Hero Mobile */
  .guide-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guide-hero-content {
    text-align: center;
  }

  .guide-hero-content h1 {
    font-size: 32px;
  }

  .guide-hero-content .hero-highlight {
    text-align: left;
  }

  .guide-hero-content div[style*="display: flex"] {
    justify-content: center;
  }
}

/* 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 - duplicated rules removed, see main responsive section above */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Mobile-first, world-class experience
   ============================================ */

/* TABLET BREAKPOINT - 1024px */
@media (max-width: 1024px) {
  .hero-bold h1 {
    font-size: 44px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .hero-value-grid {
    gap: 24px;
  }
  
  .hero-stat {
    font-size: 32px;
  }
}

/* MOBILE NAV BREAKPOINT - 900px */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.active,
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    padding: 12px 0;
    font-size: 16px;
  }
  
  .main-nav .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .grid-4 {
    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;
  }
  
  .hero-value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .hero-value-item {
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  .hero-value-item:last-child {
    border-bottom: none;
  }
}

/* MOBILE BREAKPOINT - 768px */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  .hero-bold h1 {
    font-size: 36px;
    text-align: center;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .card {
    padding: 28px;
  }
  
  .hero-bold {
    padding: 60px 0 48px 0;
    text-align: center;
  }
  
  .hero-hook {
    margin-bottom: 32px;
  }
  
  .hero-explanation {
    margin-bottom: 32px;
  }
  
  .hero-explanation p {
    font-size: 16px;
  }
  
  .hero-cta-section {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-cta-section .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  
  .hero-stat {
    font-size: 28px;
  }
  
  .hero-stat-label {
    font-size: 12px;
  }
  
  .btn-bold-primary,
  .btn-bold-secondary {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  
  .guide-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .guide-hero-content {
    text-align: center;
  }
  
  .guide-hero-bold h1 {
    font-size: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-box {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Footer responsive */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* Utility class for 2-column grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   PREMIUM UX FEATURES
   ============================================ */

/* 1. ANIMATED STATS DASHBOARD */
.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-turquoise) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-card.animated::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value .suffix {
  font-size: 32px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-description {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .stats-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-dashboard {
    grid-template-columns: 1fr;
  }
  
  .stat-value {
    font-size: 40px;
  }
}

/* 2. TESTIMONIAL CAROUSEL */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.testimonial-logo {
  height: 40px;
  width: auto;
  margin-top: 24px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.testimonial-content:hover .testimonial-logo {
  opacity: 1;
  filter: grayscale(0%);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 18px;
  color: var(--color-text-secondary);
}

.carousel-btn.pause {
  font-size: 12px;
  letter-spacing: 2px;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* 3. HERO VIDEO BACKGROUND (Animated Gradient Fallback) */
.hero-video-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #13374b 25%, #147690 50%, #2aaab5 75%, #0a1628 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  z-index: 0;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-video-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-video-content h1 {
  color: white;
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-video-content p {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Floating particles effect */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: float 20s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* 4. DEMYSTIFY TO DEPLOY TIMELINE */
.journey-timeline {
  position: relative;
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-border);
  transform: translateY(-50%);
  border-radius: 2px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-red) 0%, var(--color-accent-turquoise) 50%, #1a6b7c 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 1s ease-out;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.timeline-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 4px solid var(--color-border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.4s ease;
  position: relative;
}

.timeline-step.active .timeline-node {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(13, 90, 60, 0.3);
}

.timeline-step.completed .timeline-node {
  border-color: var(--color-accent-turquoise);
  background: var(--color-accent-turquoise);
  color: white;
}

.timeline-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.timeline-step.active h3 {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .timeline-track {
    display: none;
  }
  
  .timeline-steps {
    flex-direction: column;
    gap: 32px;
  }
  
  .timeline-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  
  .timeline-node {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

/* 5. WORKSHOP COMPARISON MATRIX */
.comparison-matrix {
  overflow-x: auto;
  margin: 48px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
  background: var(--color-background-alt);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  position: sticky;
  top: 0;
}

.comparison-table thead th:first-child {
  border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.comparison-table tbody tr {
  transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: var(--color-surface);
}

.comparison-table .workshop-col {
  text-align: center;
  position: relative;
}

.workshop-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.workshop-col-header .workshop-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.workshop-col-header .color-red { background: var(--color-accent-red); }
.workshop-col-header .color-teal { background: var(--color-accent-turquoise); }
.workshop-col-header .color-blue { background: #1a6b7c; }

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: bold;
}

.feature-partial {
  background: #fff3e0;
  color: #ef6c00;
}

.feature-empty {
  background: var(--color-background-alt);
  color: var(--color-text-muted);
}

.feature-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.comparison-table td:hover .feature-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 8px);
}

/* 6. DATA VISUALIZATIONS */
.data-viz-section {
  padding: 48px 0;
}

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

.data-viz-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.data-viz-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.donut-chart {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}

.donut-chart svg {
  transform: rotate(-90deg);
}

.donut-chart circle {
  fill: none;
  stroke-width: 20;
  stroke-linecap: round;
}

.donut-bg {
  stroke: var(--color-border);
}

.donut-progress {
  stroke: var(--color-primary);
  stroke-dasharray: 0 440;
  transition: stroke-dasharray 1.5s ease-out;
}

.donut-chart.animated .donut-progress {
  stroke-dasharray: var(--progress) 440;
}

.donut-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  width: 120px;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 24px;
  background: var(--color-background-alt);
  border-radius: 12px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 12px;
  width: 0%;
  transition: width 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.bar-fill.animated {
  width: var(--width);
}

.bar-fill.bar-red { background: linear-gradient(90deg, var(--color-accent-red) 0%, #d45555 100%); }
.bar-fill.bar-teal { background: linear-gradient(90deg, var(--color-accent-turquoise) 0%, #20b2aa 100%); }
.bar-fill.bar-blue { background: linear-gradient(90deg, #1a6b7c 0%, #2196f3 100%); }

@media (max-width: 768px) {
  .data-viz-grid {
    grid-template-columns: 1fr;
  }
}

/* 7. RESOURCE SPOTLIGHT STRIP */
.resource-strip {
  background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-surface) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.resource-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.resource-nav.prev { left: 16px; }
.resource-nav.next { right: 16px; }

.resource-nav:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.resource-nav:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.resource-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 64px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.resource-track::-webkit-scrollbar {
  display: none;
}

.resource-track:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.resource-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.resource-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.resource-text p {
  font-size: 12px;
  color: var(--color-text-muted);
}

.resource-item .btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  background: var(--color-primary);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resource-item .btn-sm:hover {
  background: var(--color-primary-hover);
  text-decoration: none;
}

/* Scroll animation trigger */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SMALL MOBILE - 480px */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  h1 {
    font-size: 30px;
  }
  
  .hero-bold h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  
  .card {
    padding: 24px;
  }
  
  .hero-bold {
    padding: 48px 0 40px 0;
  }
  
  .btn-bold-primary,
  .btn-bold-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .header-inner {
    padding: 12px 16px;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .guide-hero-bold {
    padding: 48px 0 40px 0;
  }
  
  .guide-hero-bold h1 {
    font-size: 26px;
  }
  
  .stat-number {
    font-size: 32px;
  }
}
