/* ——— EQNAV CASE STUDY PAGE ——— */
.eqnav-page {
  background: var(--white);
  color: var(--light-ink);
}

.eqnav-page .scroll-progress {
  background: linear-gradient(90deg, #4484e5 0%, #6a9fe8 100%);
}

/* Shared body — white → #4484E5 gradient + side circles */
.eq-body {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 12%, #f4f8fd 35%, #e2ecf9 58%, #c5daf4 78%, #4484e5 100%);
  overflow: hidden;
}

.eq-body > section {
  position: relative;
  z-index: 1;
}

.eq-body__circles {
  position: absolute;
  width: clamp(260px, 32vw, 440px);
  height: clamp(260px, 32vw, 440px);
  pointer-events: none;
  z-index: 0;
}

.eq-body__circles i {
  position: absolute;
  border: 1px solid rgba(68, 132, 229, 0.22);
  border-radius: 50%;
  inset: 0;
  font-style: normal;
}

.eq-body__circles i:nth-child(2) { inset: 12%; border-color: rgba(68, 132, 229, 0.18); }
.eq-body__circles i:nth-child(3) { inset: 24%; border-color: rgba(68, 132, 229, 0.14); }
.eq-body__circles i:nth-child(4) { inset: 36%; border-color: rgba(68, 132, 229, 0.1); }

.eq-body__circles--left {
  left: 0;
  transform: translateX(-52%);
}

.eq-body__circles--right {
  right: 0;
  transform: translateX(52%);
}

.eq-body__circles--pos-1 { top: 2%; }
.eq-body__circles--pos-2 { top: 14%; }
.eq-body__circles--pos-3 { top: 32%; }
.eq-body__circles--pos-4 { top: 48%; }
.eq-body__circles--pos-5 { top: 68%; }
.eq-body__circles--pos-6 { top: 84%; }

/* Hero */
.eq-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.eq-hero__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.eq-hero .cnav {
  position: relative;
  z-index: 2;
}

.eq-hero__brand {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem) 6rem;
}

.eq-hero__logo {
  width: min(520px, 78vw);
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
}

/* Overview */
.eq-overview {
  position: relative;
  background: transparent;
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  overflow: hidden;
}

.eq-overview::before,
.eq-overview::after {
  display: none;
}

.eq-overview__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.eq-overview h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.eq-overview__desc {
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--light-muted);
  margin-bottom: 2.25rem;
}

.eq-overview__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.eq-overview__tags span {
  padding: 0.55rem 1.15rem;
  background: #eef0f4;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* The Problem */
.eq-problem {
  position: relative;
  background: transparent;
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  overflow: hidden;
}

.eq-problem::before {
  display: none;
}

.eq-problem__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.eq-problem__head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.eq-problem__head p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--light-muted);
  max-width: 36rem;
}

.eq-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.eq-problem__card {
  padding: 1.75rem 1.85rem;
  border-radius: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.eq-problem__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.eq-problem__card--blue {
  background: linear-gradient(155deg, #6a9fe8 0%, #4484e5 50%, #2f6fd4 100%);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(68, 132, 229, 0.22);
}

.eq-problem__card--white {
  background: var(--white);
  color: var(--light-muted);
  box-shadow: 0 8px 32px rgba(15, 30, 60, 0.06);
}

.eq-problem__card--white h3 {
  color: var(--ink);
}

.eq-problem__card--scores {
  grid-column: 1;
  grid-row: 1;
}

.eq-problem__card--qual {
  grid-column: 2;
  grid-row: 1;
}

.eq-problem__card--community {
  grid-column: 1;
  grid-row: 2;
}

.eq-problem__card--knowledge {
  grid-column: 2;
  grid-row: 2;
}

.eq-problem__photo {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 12px 40px rgba(15, 30, 60, 0.1);
}

.eq-problem__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* The Vision */
.eq-vision {
  position: relative;
  background: transparent;
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  overflow: visible;
}

.eq-vision__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.eq-vision__phone {
  margin: 0;
  justify-self: start;
  max-width: min(360px, 38vw);
  filter: drop-shadow(0 24px 48px rgba(15, 30, 60, 0.12));
}

.eq-vision__phone img {
  width: 100%;
}

.eq-vision__copy {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 1rem 0.5rem;
}

.eq-vision__rings {
  position: absolute;
  right: clamp(-3rem, -4vw, -1rem);
  top: clamp(-4rem, -5vw, -2rem);
  width: min(420px, 46vw);
  height: auto;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.eq-vision__watermark {
  position: absolute;
  top: clamp(0.25rem, 1.5vw, 0.75rem);
  left: 0;
  font-size: clamp(4.25rem, 10.5vw, 7.25rem);
  font-weight: 800;
  color: rgba(68, 132, 229, 0.11);
  letter-spacing: -0.03em;
  line-height: 0.95;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.eq-vision__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.35rem;
}

.eq-vision__title-row h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eq-vision__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.eq-vision__lead {
  position: relative;
  z-index: 1;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.eq-vision__body {
  position: relative;
  z-index: 1;
  font-size: clamp(0.88rem, 1.35vw, 0.96rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--light-muted);
  max-width: 36rem;
}

/* Core Features */
.eq-features {
  position: relative;
  background: transparent;
  padding: 5rem 0 0;
  overflow: visible;
}

.eq-features__rings {
  position: absolute;
  right: clamp(-4rem, -3vw, -1rem);
  top: clamp(6rem, 12vw, 10rem);
  width: min(380px, 38vw);
  height: auto;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.eq-features__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 3.5rem) 0;
  position: relative;
  z-index: 1;
  min-height: clamp(5rem, 12vw, 7rem);
}

.eq-features__watermark {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  font-weight: 800;
  color: rgba(68, 132, 229, 0.1);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.eq-features__head h2 {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.85rem, 4.5vw, 3rem);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.eq-feature {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 7vw, 5rem);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.eq-feature--score {
  max-width: calc(var(--max) + 8rem);
}

.eq-feature--score .eq-feature__stage {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(440px, 52vw, 640px);
}

.eq-feature--score .eq-feature__layer--phone {
  position: absolute;
  right: clamp(-1rem, -2vw, 0rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(82%, 780px);
  z-index: 1;
}

.eq-feature--score .eq-feature__layer--card {
  position: absolute;
  left: clamp(0rem, 2vw, 1rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: min(46%, 420px);
  max-width: 420px;
  pointer-events: none;
}

.eq-feature--score .eq-feature__layer--card .eq-feature__copy-wrap,
.eq-feature--score .eq-feature__layer--card .eq-feature__copy {
  pointer-events: auto;
}

.eq-feature--score .eq-feature__visual {
  margin: 0;
  display: block;
}

.eq-feature--score .eq-feature__visual img {
  width: 100%;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 32px 60px rgba(15, 40, 90, 0.18));
}

.eq-feature--score .eq-feature__copy-wrap {
  position: relative;
  padding-top: 1.35rem;
}

.eq-feature--qual {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* Stacked card layers */
.eq-feature__copy-wrap {
  position: relative;
  padding-top: 1.35rem;
}

.eq-feature__copy-wrap::before,
.eq-feature__copy-wrap::after {
  content: "";
  position: absolute;
  height: 14px;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 -1px 6px rgba(68, 132, 229, 0.05);
}

.eq-feature__copy-wrap::before {
  top: 0;
  left: 14%;
  right: 14%;
  z-index: 0;
}

.eq-feature__copy-wrap::after {
  top: 0.6rem;
  left: 7%;
  right: 7%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.88);
}

.eq-feature__copy-wrap--blue::before,
.eq-feature__copy-wrap--blue::after {
  background: rgba(234, 242, 255, 0.78);
  border-color: rgba(68, 132, 229, 0.1);
}

.eq-feature__copy--stack {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: clamp(1.65rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.35rem);
  border-radius: 1.35rem;
  box-shadow: 0 16px 48px rgba(15, 40, 90, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.eq-feature__copy--blue {
  background: #eaf2ff;
  border-color: rgba(68, 132, 229, 0.12);
  box-shadow: 0 16px 48px rgba(68, 132, 229, 0.12);
}

.eq-feature__copy h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.eq-feature__copy p {
  font-size: clamp(0.86rem, 1.3vw, 0.94rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--light-muted);
}

.eq-feature__visual {
  margin: 0;
  display: flex;
  justify-content: center;
}

.eq-feature__visual--rounded {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.14);
  background: transparent;
}

.eq-feature__visual img {
  width: 100%;
  display: block;
}

.eq-feature__visual--wide img {
  filter: drop-shadow(0 20px 40px rgba(15, 30, 60, 0.1));
}

/* Events / Community / Chatbot showcase */
.eq-features__showcase-wrap {
  background: transparent;
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem) 5.5rem;
  margin-top: 0;
}

.eq-features__showcase {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.eq-features__col-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.eq-features__box {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.35rem;
  padding: 1.65rem 1.75rem;
  box-shadow: 0 12px 40px rgba(68, 132, 229, 0.12);
}

.eq-features__box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.eq-features__box p {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.65;
  color: #3d4659;
}

.eq-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: linear-gradient(135deg, #4484e5 0%, #2f6fd4 100%);
  border-radius: 0.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 16px rgba(68, 132, 229, 0.35);
}

.eq-features__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.eq-features__stage {
  position: relative;
  min-height: clamp(420px, 52vw, 580px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.eq-features__phone {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 620px);
}

.eq-features__phone img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 40, 90, 0.22));
}

.eq-features__box--chatbot {
  position: absolute;
  left: clamp(-1rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-42%);
  z-index: 4;
  width: min(340px, 42vw);
  background: #eaf2ff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(68, 132, 229, 0.14);
  border-radius: 1.75rem;
  box-shadow: 0 16px 48px rgba(68, 132, 229, 0.16);
  padding: 2.25rem 1.75rem 1.75rem;
}

.eq-features__bot-badge {
  position: absolute;
  top: -1.5rem;
  left: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #5b9aff 0%, #2a68d5 100%);
  border-radius: 0.85rem;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(68, 132, 229, 0.42);
}

.eq-features__bot-badge svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 1024px) {
  .eq-features__showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .eq-features__stage {
    min-height: auto;
    justify-content: center;
    padding-top: 2rem;
  }

  .eq-features__box--chatbot {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: -3rem auto 0;
    z-index: 4;
  }

  .eq-features__phone {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .eq-features__showcase-wrap {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .eq-features__box--chatbot {
    margin-top: -2rem;
  }
}

@media (max-width: 1024px) {
  .eq-problem__grid {
    grid-template-columns: 1fr 1fr;
  }

  .eq-problem__photo {
    grid-column: 1 / -1;
    grid-row: auto;
    max-height: 360px;
  }

  .eq-problem__card--scores { grid-column: 1; grid-row: auto; }
  .eq-problem__card--qual { grid-column: 2; grid-row: auto; }
  .eq-problem__card--community { grid-column: 1; grid-row: auto; }
  .eq-problem__card--knowledge { grid-column: 2; grid-row: auto; }

  .eq-vision__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .eq-vision__phone {
    justify-self: center;
    max-width: 300px;
  }

  .eq-vision__rings {
    right: -2.5rem;
    top: -2rem;
    width: min(300px, 72vw);
  }

  .eq-feature--score .eq-feature__stage {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .eq-feature--score .eq-feature__layer--phone {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .eq-feature--score .eq-feature__layer--card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 2rem);
    max-width: 100%;
    margin: -3.5rem auto 0;
    z-index: 5;
  }

  .eq-feature--qual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .eq-feature--reverse .eq-feature__visual {
    order: -1;
  }

  .eq-features__rings {
    width: min(260px, 55vw);
    top: 4rem;
    right: -2rem;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .eq-hero__brand {
    padding-bottom: 4rem;
  }

  .eq-problem__grid {
    grid-template-columns: 1fr;
  }

  .eq-problem__photo img {
    min-height: 280px;
  }

  .eq-vision__watermark {
    font-size: clamp(2.75rem, 14vw, 3.5rem);
  }

  .eq-vision__title-row {
    margin-top: 1.75rem;
  }
}

/* ——— ROLES (Built for every role) ——— */
.eq-roles {
  position: relative;
  background: linear-gradient(135deg, #102089 0%, #2549ab 38%, #2d58bc 62%, #4484e5 100%);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem) 0;
  overflow: hidden;
}

.eq-roles__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(720px, 80vw);
  height: min(720px, 80vw);
  background: radial-gradient(circle, rgba(68, 132, 229, 0.45) 0%, rgba(37, 73, 171, 0.15) 45%, transparent 70%);
  pointer-events: none;
}

.eq-roles__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.eq-roles__head h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.eq-roles__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  min-height: clamp(480px, 52vw, 620px);
}

.eq-roles__col {
  display: flex;
  justify-content: center;
}

.eq-roles__col--rider,
.eq-roles__col--trainer {
  align-self: start;
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.eq-roles__col--junior {
  align-self: end;
  padding-bottom: 0;
}

.eq-roles__unit {
  position: relative;
  width: min(100%, 300px);
}

.eq-roles__phone {
  position: relative;
  z-index: 2;
  margin: 0;
  filter: drop-shadow(0 28px 56px rgba(8, 16, 60, 0.45));
}

.eq-roles__phone img {
  width: 100%;
  display: block;
  border-radius: 1.75rem;
}

.eq-roles__glass {
  z-index: 5;
  padding: 1.25rem 1.4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(8, 16, 60, 0.22);
}

.eq-roles__glass h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.eq-roles__glass p {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* Rider — attached to top-right of first phone */
.eq-roles__glass--rider {
  position: absolute;
  top: 12%;
  right: -87%;
  width: min(115%, 320px);
  transform: translateY(-48%);
}

/* Junior Rider — attached to bottom-left of center phone */
.eq-roles__glass--junior {
  position: absolute;
  bottom: -5%;
  right:  80%;
  width: min(125%, 360px);
}

/* Trainer — directly below third phone */
.eq-roles__glass--trainer {
  position: relative;
  width: 100%;
  margin-top: 0.20rem;
}

.eq-roles__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 46rem;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem) clamp(4rem, 8vw, 5.5rem);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 30%, #f4f8fd 68%, #eef4fc 100%);
  border-radius: 2rem 2rem 0 0;
}

.eq-roles__intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.eq-roles__intro p {
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--light-muted);
}

/* ——— LIFECYCLE / PROCESS ——— */
/* Figma specs: cards 764×854, radius 60, gap 20. Community: pad 20/23, image 357×283 top-left, panel 520px bottom. Branding: image 601px, text pad 42/29. */
.eq-lifecycle {
  background: #eef4fc;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 8vw, 5.5rem);
}

.eq-lifecycle__cards {
  display: grid;
  grid-template-columns: repeat(2, 764px);
  gap: 20px;
  width: 1548px;
  max-width: 100%;
  margin: 20px auto 29px;
  justify-content: center;
  box-sizing: border-box;
}

.eq-lifecycle__card {
  box-sizing: border-box;
  width: 764px;
  max-width: 100%;
  height: 854px;
  border-radius: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.eq-lifecycle__card--community {
  background: #c5daf4;
  padding: 20px 23px;
}

.eq-lifecycle__card--community .eq-lifecycle__card-inner {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.eq-lifecycle__card--branding {
  background: #102089;
  display: flex;
  flex-direction: column;
}

.eq-lifecycle__photo {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 357px;
  height: 283px;
  max-width: calc(100% - 23px);
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.eq-lifecycle__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.eq-lifecycle__brand-photo {
  margin: 0;
  overflow: hidden;
  flex: 0 0 601px;
  height: 601px;
}

.eq-lifecycle__brand-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eq-lifecycle__brand-body {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 0;
  padding: 0 42px 29px;
}

.eq-lifecycle__panel {
  background: var(--white);
  margin: 0;
  border-radius: 40px;
}

.eq-lifecycle__card--community .eq-lifecycle__panel {
  position: absolute;
  top: 428px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 520px;
  max-width: 100%;
  z-index: 2;
  padding: 28px 32px 32px;
  box-shadow: none;
  box-sizing: border-box;
}

.eq-lifecycle__panel--dark {
  background: transparent;
  margin: 0;
  padding: 0;
  color: var(--white);
  width: 100%;
  max-width: 100%;
  text-align: left;
  align-self: flex-end;
}

.eq-lifecycle__panel h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.eq-lifecycle__panel--dark h3 {
  color: var(--white);
}

.eq-lifecycle__panel p {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.72;
  color: #3d4659;
}

.eq-lifecycle__panel--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Bento process grid */
.eq-process--bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "wire ux ui"
    "front dev back"
    "sqa deploy market";
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.eq-process__wireframe {
  grid-area: wire;
  margin: 0;
}

.eq-process__wireframe img {
  width: 100%;
  display: block;
  border-radius: 1.35rem;
}

.eq-process__text--ux {
  grid-area: ux;
}

.eq-process__tile--ui {
  grid-area: ui;
}

.eq-process__tile--navy {
  grid-area: front;
}

.eq-process__dev-photo {
  grid-area: dev;
}

.eq-process__text--backend {
  grid-area: back;
}

.eq-process__text--sqa {
  grid-area: sqa;
}

.eq-process__tile--red {
  grid-area: deploy;
}

.eq-process__text--marketing {
  grid-area: market;
}

.eq-process__tile {
  border-radius: 1.75rem;
  padding: 1.65rem 1.75rem;
}

.eq-process__tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.eq-process__tile p {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.68;
}

.eq-process__tile--navy {
  background: #102089;
  color: var(--white);
}

.eq-process__tile--navy p {
  color: rgba(255, 255, 255, 0.85);
}

.eq-process__tile--red {
  background: #e63b2e;
  color: var(--white);
}

.eq-process__tile--red p {
  color: rgba(255, 255, 255, 0.92);
}

.eq-process__tile--ui {
  background: #c5daf4;
  padding: 0;
  overflow: hidden;
}

.eq-process__ui-photo {
  margin: 0;
  padding: 1rem 1rem 0;
}

.eq-process__ui-photo img {
  width: 100%;
  display: block;
  border-radius: 1.15rem;
}

.eq-process__ui-copy {
  padding: 1.35rem 1.65rem 1.75rem;
}

.eq-process__ui-copy h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.eq-process__ui-copy p {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.68;
  color: #3d4659;
}

.eq-process__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.eq-process__text p {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.68;
  color: #3d4659;
}

.eq-process__text--ux {
  border: 1px solid rgba(68, 132, 229, 0.28);
  border-radius: 1.35rem;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.35);
  align-self: start;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.eq-process__dev-photo {
  margin: 0;
  border-radius: 1.75rem;
  overflow: hidden;
}

.eq-process__dev-photo img {
  width: 100%;
  display: block;
  border-radius: 1.75rem;
}

.eq-client {
  max-width: var(--max);
  margin: clamp(3.5rem, 7vw, 5rem) auto 0;
}

.eq-client h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .eq-roles__stage {
    gap: 0.5rem;
    min-height: clamp(420px, 60vw, 540px);
  }

  .eq-roles__unit {
    width: min(100%, 240px);
  }

  .eq-roles__glass--rider {
    right: -8%;
    width: min(120%, 260px);
    transform: translateY(-42%);
  }

  .eq-roles__glass--junior {
    left: -10%;
    width: min(130%, 280px);
    bottom: 10%;
  }

  .eq-lifecycle__cards {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 764px;
  }

  .eq-lifecycle__card {
    width: 100%;
    height: auto;
    min-height: 640px;
    border-radius: 40px;
  }

  .eq-lifecycle__card--community {
    padding: 16px;
  }

  .eq-lifecycle__card--community .eq-lifecycle__card-inner {
    min-height: 520px;
  }

  .eq-lifecycle__photo {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 357 / 283;
  }

  .eq-lifecycle__card--community .eq-lifecycle__panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 16px;
  }

  .eq-lifecycle__brand-photo {
    flex: none;
    height: auto;
    aspect-ratio: 764 / 601;
  }

  .eq-lifecycle__brand-body {
    padding: 0 24px 24px;
  }

  .eq-process--bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wire"
      "ux"
      "ui"
      "front"
      "dev"
      "back"
      "sqa"
      "deploy"
      "market";
  }

  .eq-process__text--ux {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .eq-roles__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: stretch;
    gap: 2.5rem;
  }

  .eq-roles__col--rider,
  .eq-roles__col--trainer,
  .eq-roles__col--junior {
    align-self: auto;
    padding: 0;
  }

  .eq-roles__unit {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .eq-roles__glass--rider,
  .eq-roles__glass--junior {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }

  .eq-roles__glass--trainer {
    margin-top: 1rem;
  }

  .eq-roles__intro {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
