.project-body {
  padding: var(--section-padding);
}

.project-body .body-main h1,
.project-body .body-main h2,
.project-body .body-main h3,
.project-body .body-main h4,
.project-body .body-main h5,
.project-body .body-main h6 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 42px;
  color: var(--color-white);
  margin-bottom: 18px;
}

.project-body .body-main * + h1,
.project-body .body-main * + h2,
.project-body .body-main * + h3,
.project-body .body-main * + h4,
.project-body .body-main * + h5,
.project-body .body-main * + h6 {
  margin-top: 60px;
}

.project-body .body-main blockquote {
  border-left: 3px solid transparent;
  border-image: var(--primary-grad-vertical) 1;
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.project-body .body-main a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: .3s ease-in-out;
}

.project-body .body-main p {
    color: var(--color-text-muted);
}

.project-body .body-main strong {
    color: var(--color-white);
}

.project-body .body-main a:hover {
    opacity: 0.8;
}

.project-body .body-main img {
  width: 100%;
  height: auto;
  margin: 36px 0;
}

/* Sticky sidebar */
.project-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

/* Gradient top accent */
.sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-grad);
}

.sidebar-card-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

/* Project details list */
.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.82rem;
}

.sidebar-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-detail-key {
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.sidebar-detail-val {
  color: var(--color-white);
  font-weight: 500;
  text-align: right;
}

/* Service tags */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags .no-content {
  color: var(--color-text-muted);
}

.sidebar-tag {
  border: 1px solid var(--color-border);
  background: rgba(255, 140, 0, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Sidebar CTA */
.sidebar-cta-text {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- CHALLENGE / SOLUTION SPLIT ------------------------ */
.challenge-solution {
  padding: var(--section-padding);
  background: var(--color-bg-3);
}

.cs-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-grad);
}

.cs-card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-card-eyebrow i {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Bullet list inside cs-card */
.cs-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cs-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-grad);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- PROCESS / HOW WE WORK ----------------------------- */
.process {
  padding: var(--section-padding);
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 44px;
  position: relative;
}

/* Vertical connector line */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 140, 0, 0.3), transparent);
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 0, 0.3);
  background: rgba(255, 140, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Reset */
  -webkit-text-fill-color: initial;
  background: rgba(255, 140, 0, 0.07);
  color: #ff9500;
  border: 1px solid rgba(255, 140, 0, 0.28);
  position: relative;
  z-index: 1;
}

.process-step-body h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step-body p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.78;
}

/* Right column */
.process-image-wrap {
  position: relative;
}

.process-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  filter: brightness(0.85) saturate(0.82);
}

/* Floating accent card */
.process-accent-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px 22px;
  min-width: 180px;
}

.process-accent-card-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}

.process-accent-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 5px;
  letter-spacing: 0.05em;
}
