/**
 * Content Page Styles
 * Styles for feature pages, case studies, and marketing content
 * Extends: core.css, core-colour.css, light.css, common.css
 */

/* ===========================
   Back Navigation
   =========================== */

.back-nav {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-nav:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--eda-orange);
  transform: translateX(4px);
}

.back-nav a {
  color: var(--colour-grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: var(--fontweight-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-nav a:hover {
  color: var(--eda-orange);
}

@media (max-width: 768px) {
  .back-nav {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
  }

  .back-nav a {
    font-size: 0.85rem;
  }
}

/* ===========================
   Page Hero
   =========================== */

.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--colour-grey-vdark) 0%, var(--bg-dark-background) 100%);
  padding: 6rem 0 4rem 0;
  border-bottom: 1px solid var(--colour-grey-dark);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(222, 161, 4, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.page-hero-icon i,
.page-hero-icon svg {
  color: #DEA104 !important;
  width: 1em;
  height: 1em;
}
.page-hero-icon i,
.page-hero-icon svg {
  color: #DEA104 !important;
}

.page-hero-icon svg path {
  fill: #DEA104 !important;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--colour-grey-light);
  font-weight: var(--fontweight-light);
  max-width: 600px;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 35vh;
    padding: 5rem 0 3rem 0;
  }

  .page-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

/* ===========================
   Content Sections
   =========================== */

.content-section {
  padding: 5rem 0;
  background: var(--colour-grey-vdark);
}

.content-section.alt-bg {
  background: var(--bg-dark-background);
  border-top: 1px solid var(--colour-grey-dark);
  border-bottom: 1px solid var(--colour-grey-dark);
}

.content-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.content-section-subtitle {
  font-size: 1.15rem;
  color: var(--colour-grey-light);
  margin-bottom: 3rem;
  max-width: 700px;
}

.content-section-subtitle-center {
  font-size: 1.15rem;
  color: var(--colour-grey-light);
  margin-bottom: 3rem;
  text-align: center;
}

/* ===========================
   Content Introduction
   =========================== */

.content-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-intro p {
  font-size: 1.1rem;
  color: var(--colour-grey-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ===========================
   Image Placeholders
   =========================== */

.content-image-wrapper {
  position: relative;
}

.content-image-placeholder {
  background: var(--bg-dark-background);
  border: 2px dashed var(--colour-grey-dark);
  border-radius: 8px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.content-image-placeholder.large {
  height: 400px;
}

.content-image-placeholder:hover {
  border-color: var(--eda-orange);
  background: rgba(222, 161, 4, 0.05);
}

.content-image-placeholder i {
  font-size: 3rem;
  color: var(--colour-grey-dark);
}

.content-image-placeholder span {
  font-size: 0.9rem;
  color: var(--colour-grey-dark);
  font-weight: var(--fontweight-medium);
}

.image-caption {
  font-size: 0.85rem;
  color: var(--colour-grey-light);
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
}

/* ===========================
   Benefits Grid
   =========================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--colour-grey-vdark);
  padding: 2rem;
  border: 1px solid var(--colour-grey-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--eda-orange);
  transition: width 0.3s ease;
}

.benefit-card:hover::before {
  width: 100%;
}

.benefit-card:hover {
  border-color: var(--eda-orange);
  transform: translateY(-4px);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(222, 161, 4, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i,
.benefit-icon i.fa-solid,
.benefit-icon svg {
  font-size: 1rem;
  color: #DEA104 !important;
}

.benefit-icon svg path {
  fill: #DEA104 !important;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin: 0;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--colour-grey-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card:hover {
    transform: none;
  }
}

/* ===========================
   Feature Deep Dive
   =========================== */

.feature-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fontweight-semibold);
  color: var(--eda-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(222, 161, 4, 0.1);
  border-radius: 2px;
}

.feature-deep-dive h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.feature-deep-dive p {
  font-size: 1.1rem;
  color: var(--colour-grey-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--colour-grey-light);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-checklist li i,
.feature-checklist li svg {
  color: #DEA104 !important;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-checklist li svg path {
  fill: #DEA104 !important;
}

/* ===========================
   Screenshot Gallery
   =========================== */

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.screenshot-item {
  position: relative;
}

.screenshot-placeholder {
  background: var(--colour-grey-vdark);
  border: 2px dashed var(--colour-grey-dark);
  border-radius: 6px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.screenshot-placeholder:hover {
  border-color: var(--eda-orange);
  background: rgba(222, 161, 4, 0.05);
}

.screenshot-placeholder i {
  font-size: 2.5rem;
  color: var(--colour-grey-dark);
}

.screenshot-placeholder span {
  font-size: 0.85rem;
  color: var(--colour-grey-dark);
  font-weight: var(--fontweight-medium);
}

.screenshot-caption {
  font-size: 0.85rem;
  color: var(--colour-grey-light);
  margin-top: 0.75rem;
  text-align: center;
}

/* ===========================
   Integration Grid
   =========================== */

.integration-intro h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.integration-intro p {
  font-size: 1.05rem;
  color: var(--colour-grey-light);
  line-height: 1.8;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.integration-item {
  background: var(--bg-dark-background);
  border: 1px solid var(--colour-grey-dark);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.integration-item:hover {
  border-color: var(--eda-orange);
  transform: translateY(-2px);
}

.integration-item i,
.integration-item svg {
  font-size: 1.75rem;
  color: #DEA104 !important;
}

.integration-item svg path {
  fill: #DEA104 !important;
}

.integration-item span {
  font-size: 0.85rem;
  color: var(--colour-grey-light);
  font-weight: var(--fontweight-medium);
  text-align: center;
}

@media (max-width: 768px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-item:hover {
    transform: none;
  }
}

/* ===========================
   Use Case / Testimonial
   =========================== */

.use-case-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.use-case-quote {
  font-size: 3rem;
  opacity: 0.4;
}

.use-case-quote i,
.use-case-quote svg {
  color: #DEA104 !important;
}

.use-case-quote svg path {
  fill: #DEA104 !important;
}
  margin-bottom: 1.5rem;
}

.use-case-block blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #ffffff !important;
  font-weight: var(--fontweight-light);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-style: italic;
}

.use-case-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.use-case-avatar {
  width: 48px;
  height: 48px;
  background: rgba(222, 161, 4, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-avatar i,
.use-case-avatar svg {
  font-size: 1.25rem;
  color: #DEA104 !important;
}

.use-case-avatar svg path {
  fill: #DEA104 !important;
}

.use-case-details {
  text-align: left;
}

.use-case-details strong {
  display: block;
  color: var(--colour-white);
  font-size: 1rem;
  font-weight: var(--fontweight-semibold);
}

.use-case-details span {
  color: var(--colour-grey-light);
  font-size: 0.9rem;
}

/* ===========================
   Technical Specifications
   =========================== */

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.spec-item {
  background: var(--bg-dark-background);
  border: 1px solid var(--colour-grey-dark);
  border-left: 3px solid var(--eda-orange);
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.spec-item:hover {
  border-color: var(--eda-orange);
}

.spec-label {
  font-size: 0.8rem;
  color: var(--colour-grey-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.spec-value {
  font-size: 1.1rem;
  color: var(--colour-white);
  font-weight: var(--fontweight-semibold);
}

/* ===========================
   Content CTA - NOTE: Styles moved to common.css for reuse
   =========================== */

/* Note: .content-cta, .cta-content, .cta-buttons, .cta-button-secondary,
   .related-features, .related-card, etc. are now defined in common.css
   to avoid duplication across pages */

/* ===========================
   Scroll Animations
   =========================== */

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive Spacing
   =========================== */

@media (max-width: 768px) {
  .content-section {
    padding: 3.5rem 0;
  }

  .content-cta {
    padding: 3.5rem 0;
  }

  .row {
    gap: 2.5rem;
  }
}


  .weather-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #1a1a2e;
    padding: 6rem 0 4rem 0;
    border-bottom: 1px solid var(--colour-grey-dark);
  }

  .weather-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/backgrounds/bg-lightning-bw.jpg') center/cover no-repeat;
    z-index: 0;
  }

  .weather-hero .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.60) 0%, rgba(15, 15, 20, 0.67) 100%);
  }

  .weather-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(222, 161, 4, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 80%, rgba(100, 149, 237, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
  }

  .weather-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--colour-grey-vdark), transparent);
    pointer-events: none;
    z-index: 1;
  }

  .weather-hero .container {
    position: relative;
    z-index: 2;
  }

  .stat-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--colour-grey-dark);
  }

  .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: var(--fontweight-bold);
    color: var(--eda-orange);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--colour-grey-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: var(--fontweight-semibold);
  }

  .warning-badge.amber {
    background: rgba(255, 191, 0, 0.15);
    border: 1px solid rgba(255, 191, 0, 0.4);
    color: #ffbf00;
  }

  .warning-badge.yellow {
    background: rgba(255, 235, 59, 0.15);
    border: 1px solid rgba(255, 235, 59, 0.4);
    color: #ffeb3b;
  }

  .warning-badge.red {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
  }

  .lightning-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--fontweight-medium);
  }

  .lightning-indicator.recent {
    background: rgba(244, 67, 54, 0.2);
    color: #ff6b6b;
  }

  .lightning-indicator.moderate {
    background: rgba(255, 152, 0, 0.2);
    color: #ffab40;
  }

  .lightning-indicator.older {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
  }

  .data-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-dark-background);
    border-radius: 8px;
    border: 1px solid var(--colour-grey-dark);
  }

  .data-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .data-flow-item i {
    font-size: 1.5rem;
    color: var(--eda-orange);
  }

  .data-flow-item span {
    font-size: 0.8rem;
    color: var(--colour-grey-light);
    text-align: center;
  }

  .data-flow-arrow {
    color: var(--colour-grey-dark);
    font-size: 1.25rem;
  }

  .threshold-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
  }

  .threshold-table th,
  .threshold-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--colour-grey-dark);
  }

  .threshold-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--colour-grey-light);
    font-weight: var(--fontweight-semibold);
  }

  .threshold-table td {
    color: var(--colour-white);
  }

  .threshold-table tr:hover td {
    background: rgba(222, 161, 4, 0.05);
  }

  .threshold-speed {
    font-weight: var(--fontweight-bold);
    color: var(--eda-orange);
  }

  .provider-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    opacity: 0.7;
  }

  .provider-logos span {
    font-size: 0.9rem;
    color: var(--colour-grey-light);
    font-weight: var(--fontweight-medium);
  }

  @media (max-width: 768px) {
    .weather-hero {
      min-height: auto;
      padding: 5rem 0 3rem 0;
    }

    .stat-highlight {
      gap: 1rem;
    }

    .stat-item {
      min-width: 100px;
    }

    .stat-number {
      font-size: 1.75rem;
    }

    .stat-label {
      font-size: 0.75rem;
    }

    .stat-item > div:last-child {
      font-size: 0.65rem !important;
    }

    .data-flow {
      flex-direction: column;
      padding: 1.5rem;
    }

    .data-flow-arrow {
      transform: rotate(90deg);
    }
  }


  .scheduling-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #1a1a2e;
    padding: 6rem 0 4rem 0;
    border-bottom: 1px solid var(--colour-grey-dark);
  }

  .scheduling-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/backgrounds/bg-staging-bw.jpg') center/cover no-repeat;
    z-index: 0;
  }

  .scheduling-hero .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.78) 0%, rgba(15, 15, 20, 0.84) 100%);
  }

  .scheduling-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(222, 161, 4, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }

  .scheduling-hero .container {
    position: relative;
    z-index: 2;
  }

  .scheduling-hero .page-hero-content {
    animation: fadeInUp 0.8s ease-out;
  }

  .scheduling-hero .page-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .scheduling-hero .page-hero-icon i {
    color: #DEA104 !important;
  }

  .scheduling-hero .page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--fontweight-bold);
    color: var(--colour-white);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .scheduling-hero .page-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--colour-grey-light);
    font-weight: var(--fontweight-light);
    max-width: 600px;
  }

  @media (max-width: 768px) {
    .scheduling-hero {
      min-height: auto;
      padding: 5rem 0 3rem 0;
    }

    .scheduling-hero .page-hero-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
  }



/**
 * Accreditation Page Styles
 * Accreditation-specific styles - extends content.css
 */

/* ===========================
   Accreditation Hero
   =========================== */

.accreditation-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #1a1a2e;
  padding: 6rem 0 4rem 0;
  border-bottom: 1px solid var(--colour-grey-dark);
}

.accreditation-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/backgrounds/bg-crowd-bw.jpg') center/cover no-repeat;
  z-index: 0;
}

.accreditation-hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.78) 0%, rgba(15, 15, 20, 0.84) 100%);
}

.accreditation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(222, 161, 4, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.accreditation-hero .container {
  position: relative;
  z-index: 2;
}

.accreditation-hero .page-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.accreditation-hero .page-hero-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.accreditation-hero .page-hero-icon i,
.accreditation-hero .page-hero-icon svg {
  color: #DEA104 !important;
}

.accreditation-hero .page-hero-icon svg path {
  fill: #DEA104 !important;
}

.accreditation-hero .page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.accreditation-hero .page-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--colour-grey-light);
  font-weight: var(--fontweight-light);
  max-width: 600px;
}

@media (max-width: 768px) {
  .accreditation-hero {
    min-height: auto;
    padding: 5rem 0 3rem 0;
  }

  .accreditation-hero .page-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}


/* ===========================
   Process Cards
   =========================== */

.process-card {
  background: var(--colour-grey-vdark);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1px solid var(--colour-grey-dark);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.process-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--eda-orange);
  transition: width 0.3s ease;
}

.process-card:hover::before {
  width: 100%;
}

.process-card:hover {
  border-color: var(--eda-orange);
  transform: translateY(-4px);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: var(--eda-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colour-white);
  font-weight: var(--fontweight-bold);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(222, 161, 4, 0.4);
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--colour-grey-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-card:hover {
    transform: none;
  }
}

/* ===========================
   AI Features
   =========================== */

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ai-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ai-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(222, 161, 4, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-icon i,
.ai-feature-icon svg {
  font-size: 1.5rem;
  color: #DEA104 !important;
}

.ai-feature-icon svg path {
  fill: #DEA104 !important;
}

.ai-feature-content h4 {
  font-size: 1.15rem;
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 0.5rem;
}

.ai-feature-content p {
  font-size: 0.95rem;
  color: var(--colour-grey-light);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   Catering Features
   =========================== */

.catering-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.catering-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.catering-icon {
  width: 50px;
  height: 50px;
  background: rgba(222, 161, 4, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catering-icon i,
.catering-icon svg {
  font-size: 1.5rem;
  color: #DEA104 !important;
}

.catering-icon svg path {
  fill: #DEA104 !important;
}

.catering-feature h4 {
  font-size: 1.15rem;
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 0.5rem;
}

.catering-feature p {
  font-size: 0.95rem;
  color: var(--colour-grey-light);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   Asset Grid
   =========================== */

.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.asset-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.asset-item i,
.asset-item svg {
  font-size: 1.5rem;
  color: #DEA104 !important;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.asset-item svg path {
  fill: #DEA104 !important;
}

.asset-item h5 {
  font-size: 0.95rem;
  font-weight: var(--fontweight-semibold);
  color: var(--colour-white);
  margin-bottom: 0.25rem;
}

.asset-item p {
  font-size: 0.85rem;
  color: var(--colour-grey-light);
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   License Notice
   =========================== */

.license-notice {
  background: var(--bg-dark-background);
  border: 1px solid var(--colour-grey-dark);
  border-left: 3px solid var(--eda-orange);
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.license-icon {
  width: 40px;
  height: 40px;
  background: rgba(222, 161, 4, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.license-icon i,
.license-icon svg {
  font-size: 1.25rem;
  color: #DEA104 !important;
}

.license-icon svg path {
  fill: #DEA104 !important;
}

.license-notice h5 {
  font-size: 1rem;
  font-weight: var(--fontweight-semibold);
  color: var(--colour-white);
  margin-bottom: 0.5rem;
}

.license-notice p {
  font-size: 0.9rem;
  color: var(--colour-grey-light);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   Integration Badges
   =========================== */

.integration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-dark-background);
  border: 1px solid var(--colour-grey-dark);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: var(--fontweight-medium);
  color: var(--colour-grey-light);
  transition: all 0.3s ease;
}

.integration-badge:hover {
  border-color: var(--eda-orange);
  color: var(--colour-white);
}

.integration-badge i,
.integration-badge svg {
  color: #DEA104 !important;
  font-size: 1rem;
}

.integration-badge svg path {
  fill: #DEA104 !important;
}

@media (max-width: 768px) {
  .integration-badges {
    justify-content: flex-start;
  }

  .integration-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}