/* Marketing component styles extracted from Vue legacy + new component styles */

/* ==========================================
   Generic / Layout
   ========================================== */
.marketing-layout {
  width: 100%;
  min-height: 100vh;
}

.smooth-scroll {
  scroll-behavior: smooth;
  padding-top: 4rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2rem 0;
}

/* ==========================================
   Toolbar / Navigation
   ========================================== */
.site-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.toolbar-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.toolbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 3rem;
}

.toolbar-brand {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.toolbar-nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
  gap: 2rem;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
}

.nav-link {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.toolbar-cta {
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%);
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(15, 91, 255, 0.3);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.toolbar-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(15, 91, 255, 0.3);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-switcher:hover {
  color: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1024px) {
  .toolbar-container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
  }

  .toolbar-nav {
    flex: 1 1 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .toolbar-brand {
    display: none;
  }
}

@media (max-width: 600px) {
  .toolbar-container {
    padding: 0.75rem 1rem;
  }

  .toolbar-nav {
    font-size: 0.85rem;
    gap: 0.75rem;
  }
}

/* ==========================================
   Courses Section
   ========================================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.course-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.course-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

.course-description {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  flex: 1;
}

.course-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  color: #fff;
  border-radius: 999px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid rgba(15, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 91, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: #111111;
  border-radius: 999px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

@media screen and (max-width: 767px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    padding: 1.25rem;
  }
}

/* ==========================================
   About Section (new component structure)
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.about-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-item-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0.75rem 0;
}

.about-item-description {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  text-align: center;
}

.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.about-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.about-role {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0.25rem 0 0;
}

@media screen and (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FAQ Section (new component structure)
   ========================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item-open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111111;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.faq-icon-rotated {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-item .faq-answer p {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: #F8F9FA;
  color: #111111;
  padding: 3rem 0 2rem;
  font-family: 'Roboto Mono', monospace;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand h3 {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #111111;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #111111;
}

@media screen and (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }
}
.copyright-text {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  opacity: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.contact-button-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 60px 140px rgba(15, 91, 255, 0.2);
  border: 1px solid rgba(15, 91, 255, 0.3);
}

.contact-button-circle:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.contact-button-circle:hover .button-text-circle {
  transform: rotate(5deg);
}

.button-text-circle {
  font-family: 'Roboto Mono', monospace;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  transition: transform 0.5s ease;
  color: #fff;
}

.form-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #F8F9FA;
  overflow: hidden;
}

.foot-logo-container {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  margin: 0;
}

.footer-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #111111;
}

.proj-section .title {
  color: #111111;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  color: #fff;
  border: 1px solid rgba(15, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section-subtitle {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0;
  color: #111111;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 2.25rem;
}

.courses-section {
  margin-bottom: 4rem;
}

.courses-section,
.courses-section * {
  font-family: 'Roboto Mono', monospace !important;
}

/* About Section */
.about-section {
  padding: 4rem 2.5rem;
  background: #ffffff;
}

.about-section,
.about-section * {
  font-family: 'Roboto Mono', monospace !important;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.25rem;
}

@media screen and (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-card-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0.75rem 0;
}

.about-card-description {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.about-image-container {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-button {
  align-self: flex-start;
}

.about-image {
  width: 100%;
  border-radius: 0.75rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.about-image:hover {
  filter: grayscale(0%);
}

@media screen and (max-width: 1023px) {
  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-image-container {
    position: relative;
    top: 0;
    order: -1;
  }
}

.faq-section,
.faq-section * {
  font-family: 'Roboto Mono', monospace !important;
}

.previous-courses-section,
.previous-courses-section * {
  font-family: 'Roboto Mono', monospace !important;
}

.media-mentions,
.media-mentions * {
  font-family: 'Roboto Mono', monospace !important;
}

.faq-section {
  margin-top: 4rem;
  padding: 0 2rem;
}

.faq-grid {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .faq-section {
    padding: 0 1.25rem;
  }
}

.faq-card .case-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card .section-subtitle {
  font-size: 1.2rem;
}

.faq-answer {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.faq-answer a {
  color: #0f5bff;
  text-decoration: underline;
}

.case-card {
  background: #ffffff;
  border-radius: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.case-header p {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.case-header--course {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.case-header-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-button-card {
  flex: 0 0 auto;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  border-radius: 999px;
  padding: 0.9rem 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  border: 1px solid rgba(15, 91, 255, 0.3);
}

.case-header--course .contact-button-card {
  margin-top: 0.35rem;
}

.contact-button-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 91, 255, 0.3);
}

.contact-button-card-text {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

@media screen and (max-width: 767px) {
  .case-header--course {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-button-card {
    width: 100%;
    justify-content: center;
  }
}

.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.case-stat-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.65rem;
  font-weight: 600;
  color: #111111;
}

.case-stat-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.55);
}

/* Previous Courses Section */
.previous-courses-section {
  margin-top: 4rem;
  padding: 0 2rem;
}

/* Infographic Grid */
.infographic-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/* Infographic Card - Vertical Layout */
.infographic-card {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Header with Logo/Title */
.infographic-header {
  display: flex;
  align-items: center;
}

.company-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.infographic-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.35rem;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

/* Description */
.infographic-description {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* Stats as tag badges */
.infographic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stat-tag {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  background: #111111;
  color: white;
  border-radius: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.type-tag {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.type-tag--b2b {
  background: rgba(17, 17, 17, 0.85);
  color: white;
}

.type-tag--b2c {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  border-radius: 999px;
  padding: 0.9rem 1.85rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  border: 1px solid rgba(15, 91, 255, 0.3);
  margin-top: 0.75rem;
}

.review-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 91, 255, 0.3);
}

.review-button-text {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
  .previous-courses-section {
    padding: 0 1.25rem;
  }

  .infographic-card {
    padding: 1.5rem;
  }

  .company-logo {
    height: 40px;
  }

  .infographic-title {
    font-size: 1.15rem;
  }

  .infographic-description {
    font-size: 0.9rem;
  }

  .stat-tag,
  .type-tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
  }
}

@media screen and (max-width: 991px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .case-card {
    padding: 1.75rem;
    gap: 1rem;
  }

  .case-stats {
    gap: 1.5rem;
  }

  .faq-section {
    padding: 2.5rem 1.5rem;
  }

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

/* Media Mentions Section */
.media-mentions {
  padding: 2.25rem 2rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}

.media-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9rem;
  color: #111111;
  margin-bottom: 1.75rem;
}

.media-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.media-container:last-of-type {
  border-bottom: none;
}

.media-name-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.media-name {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.media-logo {
  width: 84px;
  height: auto;
  filter: none;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.media-collection {
  flex: 1;
}

.media-entry {
  display: flex;
  align-items: center;
}

.media-article a {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.02rem;
  line-height: 1.55rem;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.media-article a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.media-container:hover .media-logo {
  transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .media-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .media-name {
    flex: none;
  }

  .media-logo {
    width: 72px;
  }

  .media-article a {
    font-size: 0.96rem;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .media-mentions {
    padding: 2rem 1.5rem 1.75rem;
  }

  .media-container {
    padding: 0.9rem 0;
  }

  .media-logo {
    width: 60px;
  }

  .media-article a {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}

/* Mobile layout styles */
.mobile-buttons {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-button.mobile {
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  border: 1px solid rgba(15, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  position: static;
  margin: 0;
}

.contact-button.top,
.contact-button.down {
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  border: 1px solid rgba(15, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
}

.hero-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0;
}

.hero-subheading {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: #0f5bff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 91, 255, 0.3);
}

.hero-cta-button .button-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  position: static;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 75svh;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

.sliding-content {
  padding-top: 2rem;
}

.contact-button.down {
  width: 27rem;
  height: 27rem;
  bottom: -7rem;
  right: 4rem;
}

.contact-button.down .button-text {
  font-size: 2rem;
}

.contact-button .button-text,
.mobile-buttons .button-text {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .contact-button.top {
    display: none;
  }

  .contact-button.down {
    display: flex;
    width: 12rem;
    height: 12rem;
    bottom: auto;
    top: 38%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .contact-button.down .button-text {
    font-size: 1rem;
  }

  .mobile-buttons {
    display: flex;
  }

  .mobile-buttons .contact-button.mobile {
    width: 16rem;
    height: 4rem;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
  }

  .mobile-buttons .button-text {
    font-size: 1rem;
    line-height: 1rem;
    position: static;
  }
}

@media screen and (max-width: 479px) {
  .mobile-buttons .contact-button.mobile {
    width: 14rem;
    height: 3.5rem;
  }

  .mobile-buttons .button-text {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 2.5rem;
  background: #ffffff;
}

.reviews-section,
.reviews-section * {
  font-family: 'Roboto Mono', monospace !important;
}

.reviews-note {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 1.5rem 0 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-text {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.75);
  font-style: italic;
  margin: 0 0 1.25rem 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(15, 91, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f5bff;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

.review-position {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media screen and (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .reviews-section {
    padding: 3rem 1.5rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-text {
    font-size: 0.95rem;
  }
}

/* Course Overview Section - 3 Column Layout */
.course-overview-section {
  margin-top: 3rem;
  padding: 4rem 2.5rem;
  background: #F8F9FA;
}

.course-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.overview-column .section-label {
  margin-bottom: 1.5rem;
}

.overview-content {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

.overview-content p {
  margin: 0 0 1rem 0;
}

.overview-content p:last-child {
  margin-bottom: 0;
}

.overview-content strong {
  color: #111111;
  font-weight: 600;
}

.audience-item {
  margin-bottom: 1.25rem;
}

.audience-item:last-child {
  margin-bottom: 0;
}

.audience-item strong {
  display: block;
  color: #111111;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.audience-item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
}

.overview-content .review-position {
  display: block;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.overview-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.overview-content li {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
}

.overview-content li:last-child {
  margin-bottom: 0;
}

/* Course Start Banner */
.course-start-banner {
  margin: 3rem 0;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: #ffffff;
  text-align: center;
  font-family: 'Roboto Mono', monospace !important;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111111;
}

/* Schedule Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.schedule-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--wai-accent-gradient, linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.schedule-title {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.schedule-description {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.schedule-practice {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Responsive - Tablet */
@media screen and (max-width: 1023px) {
  .course-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
  .course-overview-section {
    padding: 3rem 1.5rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .course-start-banner {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .course-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .course-cta-buttons .contact-button-card {
    width: 100%;
    max-width: 280px;
  }
}

/* CTA Buttons Container */
.course-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ==========================================
   Best Practices Page
   ========================================== */
.bp-page {
  padding-bottom: 4rem;
}

.bp-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 3rem;
}

.bp-hero-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 1rem 0;
}

.bp-hero-subtitle {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  max-width: 700px;
}

/* Timeline */
.bp-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.bp-level-group {
  padding-left: 2rem;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.bp-level-group-basic {
  border-left-color: #0f5bff;
}

.bp-level-group-intermediate {
  border-left-color: #111111;
}

.bp-level-group-advanced {
  border-left-color: rgb(16, 185, 129);
}

.bp-level-header {
  margin-bottom: 2.5rem;
}

.bp-level-header .section-label {
  margin-bottom: 0.75rem;
}

.bp-label-basic {
  background: linear-gradient(135deg, #0f5bff 0%, #3B7BFF 100%);
  border-color: rgba(15, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(15, 91, 255, 0.2);
}

.bp-label-intermediate {
  background: #111111;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bp-label-advanced {
  background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.bp-level-intro {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

/* Practice Card */
.bp-practice {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.bp-practice:last-child {
  margin-bottom: 0;
}

.bp-practice-number-col {
  flex-shrink: 0;
  width: 4rem;
  padding-top: 0.15rem;
}

.bp-practice-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  user-select: none;
}

.bp-practice-content {
  flex: 1;
  min-width: 0;
}

.bp-practice-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0.75rem 0;
}

.bp-practice-detail {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 1.25rem 0;
}

.bp-practice-code {
  background: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Best Practices — Mobile */
@media screen and (max-width: 767px) {
  .bp-hero {
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
  }

  .bp-hero-title {
    font-size: 1.75rem;
  }

  .bp-hero-subtitle {
    font-size: 1rem;
  }

  .bp-timeline {
    gap: 3rem;
  }

  .bp-level-group {
    padding-left: 1.25rem;
  }

  .bp-level-header {
    margin-bottom: 2rem;
  }

  .bp-practice {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
  }

  .bp-practice-number-col {
    width: auto;
    padding-top: 0;
  }

  .bp-practice-num {
    font-size: 2rem;
  }

  .bp-practice-title {
    font-size: 1.05rem;
  }

  .bp-practice-code {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
